Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

XCMP #311

Closed
wants to merge 14 commits into from
61 changes: 61 additions & 0 deletions Cargo.lock

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

14 changes: 14 additions & 0 deletions moonbeam-types-bundle/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -210,6 +210,20 @@ export const moonbeamDefinitions = {
nominators: "Vec<Bond>",
total: "Balance",
},
TokenId: {
_enum: ["DOT", "KSM", "ACA", "AUSD"],
},
EvmCall: {
_enum: ["Register", "Mint", "Burn", "TotalIssuance", "BalanceOf"],
},
AccountId32: "[u8; 32]",
ChainId: {
_enum: ["RelayChain", { Para: "u32" }],
},
XCurrencyId: {
chain_id: "ChainId",
currency_id: "Vec<u8>",
},
SystemInherentData: {
validation_data: "PersistedValidationData",
relay_chain_state: "StorageProof",
Expand Down
31 changes: 0 additions & 31 deletions pallets/token-dealer/Cargo.toml

This file was deleted.

171 changes: 0 additions & 171 deletions pallets/token-dealer/src/lib.rs

This file was deleted.

43 changes: 43 additions & 0 deletions pallets/token-factory/Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
[package]
authors = ["PureStake"]
edition = "2018"
name = "token-factory"
version = "0.1.0"
description = "sudo control ERC20 issuance in the EVM"

[dependencies]
ethereum-types = { version = "0.11.0", default-features = false }
fp-evm = { git = "https://github.com/purestake/frontier", default-features = false, branch = "notlesh-moonbeam-v0.7" }
frame-support = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "rococo-v1" }
frame-system = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "rococo-v1" }
hex-literal = { version = "0.3.1" }
pallet-evm = { git = "https://github.com/purestake/frontier", default-features = false, branch = "notlesh-moonbeam-v0.7" }
pallet-sudo = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "rococo-v1" }
pallet-balances = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "rococo-v1" }
pallet-timestamp = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "rococo-v1" }
parity-scale-codec = { version = "2.0.0", default-features = false, features = ["derive"] }
rustc-hex = { version = "2.1.0", default-features = false }
serde = { version = "1.0.101", optional = true }
sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "rococo-v1" }
sp-std = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "rococo-v1" }
sp-core = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "rococo-v1" }
sp-io = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "rococo-v1" }

[features]
default = ["std"]
std = [
"ethereum-types/std",
"parity-scale-codec/std",
"frame-support/std",
"frame-system/std",
"pallet-balances/std",
"pallet-evm/std",
"pallet-sudo/std",
"pallet-timestamp/std",
"rustc-hex/std",
"serde",
"sp-runtime/std",
"sp-std/std",
"sp-core/std",
"sp-io/std",
]
1 change: 1 addition & 0 deletions pallets/token-factory/contract/bytecode.txt

Large diffs are not rendered by default.

Loading