Skip to content

Commit

Permalink
enable bvb tournament (#81)
Browse files Browse the repository at this point in the history
  • Loading branch information
StewartYe authored Jul 29, 2023
1 parent be49d50 commit 034e2ea
Show file tree
Hide file tree
Showing 10 changed files with 2,798 additions and 9 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# v0.9.30-mainnet.200

- enable bvb tournment

# v0.9.30-mainnet.171

- change set reward origin
Expand Down
48 changes: 42 additions & 6 deletions Cargo.lock

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

1 change: 1 addition & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,4 +22,5 @@ members = [
'pallets/bot',
'pallets/chainbridge',
'pallets/chainbridge-handler',
'pallets/abyss-tournament'
]
60 changes: 60 additions & 0 deletions pallets/abyss-tournament/Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,60 @@
[package]
name = "pallet-abyss-tournament"
version = "4.0.2"
authors = ["UINB Tech"]
edition = "2021"
license = "Apache-2.0"
homepage = "https://www.fusotao.org"
repository = "https://github.com/uinb/fusotao"
description = "abyssworld tournament pallet"

[package.metadata.docs.rs]
targets = ["x86_64-unknown-linux-gnu"]

[dependencies]
codec = { default-features = false, features = ['derive'], package = 'parity-scale-codec', version = '3.0.0' }
scale-info = { version = "2.0.1", default-features = false, features = ["derive"] }
frame-system = { default-features = false, git = "https://github.com/paritytech/substrate.git", branch = "polkadot-v0.9.30" }
frame-support = { default-features = false, git = "https://github.com/paritytech/substrate.git", branch = "polkadot-v0.9.30" }
frame-benchmarking = { default-features = false, optional = true, git = "https://github.com/paritytech/substrate.git", branch = "polkadot-v0.9.30"}
sp-std = { default-features = false, git = "https://github.com/paritytech/substrate.git", branch = "polkadot-v0.9.30" }
ascii = { version = "1.0", default-features = false }
log = { version = "0.4.14", default-features = false }
serde = { default-features = false, version = "1.0.126" }
base64 = {version = "0.13.1", default-features = false }
chrono = {version = "0.4.26", default-features = false }
sp-core = { default-features = false, git = "https://github.com/paritytech/substrate.git", branch = "polkadot-v0.9.30" }
sp-io = { default-features = false, git = "https://github.com/paritytech/substrate.git", branch = "polkadot-v0.9.30" }
pallet-timestamp = { default-features = false, git = "https://github.com/paritytech/substrate.git", branch = "polkadot-v0.9.30" }
sp-runtime = { default-features = false, git = "https://github.com/paritytech/substrate.git", branch = "polkadot-v0.9.30" }
pallet-balances = { default-features = false, git = "https://github.com/paritytech/substrate.git", branch = "polkadot-v0.9.30" }
fuso-support = { path = "../fuso-support", default-features = false }
pallet-chainbridge = { path = "../chainbridge", default-features = false }

[dev-dependencies]
sp-keyring = { git = "https://github.com/paritytech/substrate.git", branch = "polkadot-v0.9.30" }
pallet-balances = { git = "https://github.com/paritytech/substrate.git", branch = "polkadot-v0.9.30" }
pallet-fuso-verifier = {path = "../verifier", default-features = false }
pallet-fuso-token = {path = "../token", default-features = false }
pallet-fuso-indicator = {path = "../indicator", default-features = false }
hex = "0.4.3"
[features]
default = ['std']
std = [
'codec/std',
'frame-support/std',
'frame-system/std',
'frame-benchmarking/std',
'sp-std/std',
'sp-core/std',
'sp-io/std',
'sp-runtime/std',
'pallet-fuso-token/std',
'pallet-fuso-verifier/std',
'chrono/std'
]
runtime-benchmarks = [
'frame-benchmarking',
'frame-support/runtime-benchmarks',
'frame-system/runtime-benchmarks',
]
Loading

0 comments on commit 034e2ea

Please sign in to comment.