-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #352 from grindytech/dev
Testnet (#351)
- Loading branch information
Showing
28 changed files
with
2,109 additions
and
995 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,18 @@ | ||
[[bin]] | ||
name = "gafi" | ||
path = "src/main.rs" | ||
|
||
[package] | ||
name = "gafi" | ||
description = "Implementation of a `https://gafi.network` node in Rust based on the Substrate framework." | ||
license = "Apache-2.0" | ||
rust-version = "1.64.0" | ||
readme = "README.md" | ||
authors.workspace = true | ||
edition.workspace = true | ||
version.workspace = true | ||
|
||
|
||
[workspace.package] | ||
authors = ["Grindy Technologies <[email protected]>"] | ||
edition = "2021" | ||
|
@@ -6,18 +21,27 @@ homepage = "https://grindy.io/" | |
license = "Apache-2.0" | ||
version = "4.0.0-dev" | ||
|
||
[dependencies] | ||
color-eyre = { version = "0.6.1", default-features = false } | ||
|
||
gafi-cli = { path = "node/cli" } | ||
|
||
[workspace] | ||
members = [ | ||
# pallets | ||
'pallets/pallet-faucet', | ||
'pallets/pallet-cache', | ||
'game/pallet-game', | ||
'game/offchain-worker-randomness', | ||
'game/oracle-randomness', | ||
'gafi-node/runtime', | ||
'gafi-node/node', | ||
'pallets/template', | ||
'support', | ||
# runtimes | ||
'runtime/devnet', | ||
'runtime/testnet', | ||
|
||
'node/cli', | ||
'node/service', | ||
] | ||
|
||
[profile.release] | ||
panic = 'unwind' | ||
resolver = "2" | ||
|
@@ -45,7 +69,6 @@ serde = { version = "1.0.163", default-features = false, features = [ | |
"alloc", | ||
] } | ||
|
||
|
||
# Substrate Client | ||
sc-basic-authorship = { version = "0.10.0-dev", git = "https://github.com/paritytech/substrate", branch = "polkadot-v1.0.0" } | ||
sc-block-builder = { version = "0.10.0-dev", git = "https://github.com/paritytech/substrate", branch = "polkadot-v1.0.0" } | ||
|
@@ -156,3 +179,11 @@ cumulus-primitives-parachain-inherent = { git = "https://github.com/paritytech/c | |
cumulus-relay-chain-inprocess-interface = { git = "https://github.com/paritytech/cumulus", branch = "polkadot-v1.0.0" } | ||
cumulus-relay-chain-interface = { git = "https://github.com/paritytech/cumulus", branch = "polkadot-v1.0.0" } | ||
cumulus-relay-chain-rpc-interface = { git = "https://github.com/paritytech/cumulus", branch = "polkadot-v1.0.0" } | ||
|
||
|
||
[features] | ||
default = [] | ||
devnet-native = ["gafi-cli/devnet-native"] | ||
testnet-native = ["gafi-cli/testnet-native"] | ||
runtime-benchmarks= [ "gafi-cli/runtime-benchmarks" ] | ||
try-runtime = [ "gafi-cli/try-runtime" ] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.