Skip to content

Commit

Permalink
remove cached .vscode settings from repo (#165)
Browse files Browse the repository at this point in the history
  • Loading branch information
eshaben authored Nov 13, 2024
1 parent bd98fb8 commit 8f71b1a
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 20 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -6,16 +6,20 @@ edition = "2021"
[dependencies]
frame-support = { version = "37.0.0", default-features = false }
frame-system = { version = "37.0.0", default-features = false }
codec = { version = "3.6.12", default-features = false, package = "parity-scale-codec", features = ["derive"] }
scale-info = { version = "2.11.1", default-features = false, features = ["derive"] }
codec = { version = "3.6.12", default-features = false, package = "parity-scale-codec", features = [
"derive",
] }
scale-info = { version = "2.11.1", default-features = false, features = [
"derive",
] }
sp-runtime = { version = "39.0.0", default-features = false }

[features]
default = ["std"]
std = [
"frame-support/std",
"frame-system/std",
"codec/std",
"scale-info/std",
"sp-runtime/std",
]
"frame-support/std",
"frame-system/std",
"codec/std",
"scale-info/std",
"sp-runtime/std",
]
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,7 @@ const recipient = 'INSERT_RECIPIENT_ADDRESS';
const amount = 'INSERT_VALUE'; // Amount in the smallest unit (e.g., Planck for DOT)

// Sign and send a transfer
const txHash = await api.tx
.balances
const txHash = await api.tx.balances
.transfer(recipient, amount)
.signAndSend(alice);

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -46,4 +46,4 @@
]
},
"ty": 141
}
}
9 changes: 0 additions & 9 deletions .vscode/settings.json

This file was deleted.

0 comments on commit 8f71b1a

Please sign in to comment.