Skip to content

Commit

Permalink
Expose token call functions (#319)
Browse files Browse the repository at this point in the history
* Add Call

* Version bump

* Up runtime version
  • Loading branch information
drewstone committed Jun 29, 2021
1 parent a02e761 commit ce7500d
Show file tree
Hide file tree
Showing 9 changed files with 28 additions and 28 deletions.
14 changes: 7 additions & 7 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 5 additions & 5 deletions node/cli/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "edgeware-cli"
version = "3.3.2"
version = "3.3.3"
authors = ["Commonwealth Labs <[email protected]>"]
description = "Edgeware implementation using a substrate node."
build = "build.rs"
Expand Down Expand Up @@ -95,10 +95,10 @@ pallet-dynamic-fee = { git = "https://github.com/webb-tools/frontier", branch =
pallet-evm = { git = "https://github.com/webb-tools/frontier", branch = "erup-4" }

# node-specific dependencies
edgeware-runtime = { version = "3.3.2", path = "../runtime", default-features = false }
edgeware-rpc = { version = "3.3.2", path = "../rpc" }
edgeware-primitives = { version = "3.3.2", path = "../primitives", default-features = false }
edgeware-executor = { version = "3.3.2", path = "../executor", default-features = false }
edgeware-runtime = { version = "3.3.3", path = "../runtime", default-features = false }
edgeware-rpc = { version = "3.3.3", path = "../rpc" }
edgeware-primitives = { version = "3.3.3", path = "../primitives", default-features = false }
edgeware-executor = { version = "3.3.3", path = "../executor", default-features = false }
edgeware-rpc-txpool = { path = "../../client/rpc/txpool", default-features = false }
edgeware-rpc-primitives-txpool = { path = "../txpool", default-features = false }
edgeware-rpc-debug = { path = "../../client/rpc/debug", default-features = false }
Expand Down
8 changes: 4 additions & 4 deletions node/executor/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "edgeware-executor"
version = "3.3.2"
version = "3.3.3"
authors = ["Commonwealth Labs <[email protected]>"]
description = "Edgeware implementation using a substrate node."
edition = "2018"
Expand All @@ -19,9 +19,9 @@ sp-core = { version = "3.0" }
sp-trie = { version = "3.0" }
frame-benchmarking = { version = "3.0" }

edgeware-primitives = { version = "3.3.2", path = "../primitives" }
edgeware-runtime = { version = "3.3.2", path = "../runtime" }
edgeware-runtime-interface = { version = "3.3.2", path = "../runtime-interface" }
edgeware-primitives = { version = "3.3.3", path = "../primitives" }
edgeware-runtime = { version = "3.3.3", path = "../runtime" }
edgeware-runtime-interface = { version = "3.3.3", path = "../runtime-interface" }

[dev-dependencies]
sp-runtime = { version = "3.0" }
Expand Down
2 changes: 1 addition & 1 deletion node/primitives/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "edgeware-primitives"
version = "3.3.2"
version = "3.3.3"
authors = ["Commonwealth Labs <[email protected]>"]
edition = "2018"
license = "GPL-3.0-or-later WITH Classpath-exception-2.0"
Expand Down
2 changes: 1 addition & 1 deletion node/rpc-client/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "edgeware-rpc-client"
version = "3.3.2"
version = "3.3.3"
authors = ["Commonwealth Labs <[email protected]>"]
edition = "2018"
license = "GPL-3.0-or-later WITH Classpath-exception-2.0"
Expand Down
2 changes: 1 addition & 1 deletion node/rpc/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "edgeware-rpc"
version = "3.3.2"
version = "3.3.3"
authors = ["Commonwealth Labs <[email protected]>"]
edition = "2018"
license = "GPL-3.0-or-later WITH Classpath-exception-2.0"
Expand Down
2 changes: 1 addition & 1 deletion node/runtime-interface/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "edgeware-runtime-interface"
version = "3.3.2"
version = "3.3.3"
authors = ["Commonwealth Labs <[email protected]>"]
description = "Edgeware runtime interface helpers and functions"
edition = "2018"
Expand Down
4 changes: 2 additions & 2 deletions node/runtime/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "edgeware-runtime"
version = "3.3.2"
version = "3.3.3"
authors = ["Commonwealth Labs <[email protected]>"]
edition = "2018"
build = "build.rs"
Expand Down Expand Up @@ -46,7 +46,7 @@ sp-offchain = { version = "3.0", default-features = false }
sp-npos-elections = { version = "3.0", default-features = false }

# edgeware primitives
edgeware-primitives = { version = "3.3.2", path = "../primitives", default-features = false }
edgeware-primitives = { version = "3.3.3", path = "../primitives", default-features = false }
edgeware-evm-tracer = { path = "../evm_tracer", default-features = false }
edgeware-rpc-primitives-debug = { path = "../debug", default-features = false }
edgeware-rpc-primitives-txpool = { path = "../txpool", default-features = false }
Expand Down
12 changes: 6 additions & 6 deletions node/runtime/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -136,8 +136,8 @@ pub const VERSION: RuntimeVersion = RuntimeVersion {
// and set impl_version to equal spec_version. If only runtime
// implementation changes and behavior does not, then leave spec_version as
// is and increment impl_version.
spec_version: 47,
impl_version: 47,
spec_version: 48,
impl_version: 48,
apis: RUNTIME_API_VERSIONS,
transaction_version: 2,
};
Expand All @@ -151,8 +151,8 @@ pub const VERSION: RuntimeVersion = RuntimeVersion {
// and set impl_version to equal spec_version. If only runtime
// implementation changes and behavior does not, then leave spec_version as
// is and increment impl_version.
spec_version: 10047,
impl_version: 10047,
spec_version: 10048,
impl_version: 10048,
apis: RUNTIME_API_VERSIONS,
transaction_version: 2,
};
Expand Down Expand Up @@ -1248,8 +1248,8 @@ construct_runtime!(
Tips: pallet_tips::{Pallet, Call, Storage, Event<T>} = 38,
ElectionProviderMultiPhase: pallet_election_provider_multi_phase::{Pallet, Call, Storage, Event<T>, ValidateUnsigned} = 39,
DynamicFee: pallet_dynamic_fee::{Pallet, Call, Storage, Event<T>, Inherent} = 40,
Tokens: webb_tokens::{Pallet, Storage, Event<T>} = 41,
Currencies: webb_currencies::{Pallet, Storage, Event<T>} = 42,
Tokens: webb_tokens::{Pallet, Call, Storage, Event<T>} = 41,
Currencies: webb_currencies::{Pallet, Call, Storage, Event<T>} = 42,
NonFungibleTokenModule: orml_nft::{Pallet, Storage, Config<T>} = 43,
NFT: nft::{Pallet, Call, Event<T>} = 44,
}
Expand Down

0 comments on commit ce7500d

Please sign in to comment.