├── .dockerignore ├── .editorconfig ├── .github ├── ISSUE_TEMPLATE │ ├── ask-a-question.md │ ├── report-a-bug.md │ └── suggest-a-feature.md └── workflows │ └── rust.yml ├── .gitignore ├── .maintain └── w3g-weight-template.hbs ├── Cargo.lock ├── Cargo.toml ├── HEADER-GPL3 ├── LICENSE ├── README.md ├── chain-extensions ├── Cargo.toml ├── README.md └── src │ ├── lib.rs │ ├── token_fungible.rs │ ├── token_multi.rs │ └── token_non_fungible.rs ├── client └── README.md ├── docker-compose.yml ├── docker └── README.md ├── media └── README.md ├── node ├── Cargo.toml ├── README.md ├── build.rs └── src │ ├── chain_spec.rs │ ├── cli.rs │ ├── command.rs │ ├── command_helper.rs │ ├── main.rs │ ├── rpc.rs │ └── service.rs ├── pallets ├── README.md ├── call-switchgear │ ├── Cargo.toml │ └── src │ │ ├── benchmarking.rs │ │ ├── lib.rs │ │ ├── mock.rs │ │ ├── tests.rs │ │ └── weights.rs ├── ethereum-chain-id │ ├── Cargo.toml │ └── src │ │ └── lib.rs ├── exchange │ ├── Cargo.toml │ ├── README.md │ ├── rpc │ │ ├── Cargo.toml │ │ ├── runtime-api │ │ │ ├── Cargo.toml │ │ │ └── src │ │ │ │ └── lib.rs │ │ └── src │ │ │ └── lib.rs │ └── src │ │ ├── benchmarking.rs │ │ ├── lib.rs │ │ ├── mock.rs │ │ ├── tests.rs │ │ └── weights.rs ├── farming │ ├── Cargo.toml │ └── src │ │ ├── benchmarking.rs │ │ ├── lib.rs │ │ ├── mock.rs │ │ ├── tests.rs │ │ └── weights.rs ├── launchpad │ ├── Cargo.toml │ └── src │ │ ├── benchmarking.rs │ │ ├── lib.rs │ │ ├── mock.rs │ │ ├── tests.rs │ │ └── weights.rs ├── marketplace │ ├── Cargo.toml │ └── src │ │ ├── benchmarking.rs │ │ ├── lib.rs │ │ ├── mock.rs │ │ ├── tests.rs │ │ └── weights.rs ├── player-id │ ├── Cargo.toml │ └── src │ │ ├── benchmarking.rs │ │ ├── lib.rs │ │ ├── mock.rs │ │ ├── tests.rs │ │ └── weights.rs ├── proxy-pay │ ├── Cargo.toml │ ├── README.md │ └── src │ │ ├── benchmarking.rs │ │ ├── lib.rs │ │ ├── mock.rs │ │ ├── tests.rs │ │ └── weights.rs ├── support │ ├── Cargo.toml │ └── src │ │ └── lib.rs ├── token-fungible │ ├── Cargo.toml │ ├── README.md │ └── src │ │ ├── benchmarking.rs │ │ ├── lib.rs │ │ ├── mock.rs │ │ ├── tests.rs │ │ └── weights.rs ├── token-multi │ ├── Cargo.toml │ ├── README.md │ └── src │ │ ├── benchmarking.rs │ │ ├── lib.rs │ │ ├── mock.rs │ │ ├── tests.rs │ │ └── weights.rs ├── token-non-fungible │ ├── Cargo.toml │ ├── README.md │ └── src │ │ ├── benchmarking.rs │ │ ├── lib.rs │ │ ├── mock.rs │ │ ├── tests.rs │ │ └── weights.rs └── wrap-currency │ ├── Cargo.toml │ └── src │ ├── benchmarking.rs │ ├── lib.rs │ ├── mock.rs │ ├── tests.rs │ └── weights.rs ├── precompiles ├── Cargo.toml ├── README.md ├── src │ ├── Exchange.sol │ ├── Farming.sol │ ├── Launchpad.sol │ ├── Marketplace.sol │ ├── TokenFungible.sol │ ├── exchange.rs │ ├── farming.rs │ ├── launchpad.rs │ ├── lib.rs │ ├── marketplace.rs │ ├── token_fungible.rs │ ├── token_multi.rs │ └── token_non_fungible.rs └── utils │ ├── Cargo.toml │ ├── macro │ ├── Cargo.toml │ ├── src │ │ └── lib.rs │ └── tests │ │ └── tests.rs │ └── src │ ├── costs.rs │ ├── data │ └── mod.rs │ ├── handle.rs │ ├── lib.rs │ ├── logs.rs │ ├── modifier.rs │ ├── precompile_set.rs │ ├── substrate.rs │ ├── testing.rs │ └── tests.rs ├── primitives ├── Cargo.toml ├── README.md └── src │ └── lib.rs ├── runtime ├── README.md └── web3games │ ├── Cargo.toml │ ├── build.rs │ └── src │ ├── constants.rs │ └── lib.rs ├── rust-toolchain ├── rustfmt.toml ├── sc.json ├── sc_init.json ├── scripts ├── README.md ├── docker_run.sh ├── generate-weights.sh └── init.sh └── specs ├── README.md ├── devnet └── devnet.json └── testnet └── testnet.json /.dockerignore: -------------------------------------------------------------------------------- 1 | **/target/ 2 | Dockerfile 3 | .idea/ 4 | .vscode/ 5 | .github/ 6 | -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3gamesofficial/web3games-blockchain/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/ask-a-question.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3gamesofficial/web3games-blockchain/HEAD/.github/ISSUE_TEMPLATE/ask-a-question.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/report-a-bug.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3gamesofficial/web3games-blockchain/HEAD/.github/ISSUE_TEMPLATE/report-a-bug.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/suggest-a-feature.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3gamesofficial/web3games-blockchain/HEAD/.github/ISSUE_TEMPLATE/suggest-a-feature.md -------------------------------------------------------------------------------- /.github/workflows/rust.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3gamesofficial/web3games-blockchain/HEAD/.github/workflows/rust.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3gamesofficial/web3games-blockchain/HEAD/.gitignore -------------------------------------------------------------------------------- /.maintain/w3g-weight-template.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3gamesofficial/web3games-blockchain/HEAD/.maintain/w3g-weight-template.hbs -------------------------------------------------------------------------------- /Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3gamesofficial/web3games-blockchain/HEAD/Cargo.lock -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3gamesofficial/web3games-blockchain/HEAD/Cargo.toml -------------------------------------------------------------------------------- /HEADER-GPL3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3gamesofficial/web3games-blockchain/HEAD/HEADER-GPL3 -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3gamesofficial/web3games-blockchain/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3gamesofficial/web3games-blockchain/HEAD/README.md -------------------------------------------------------------------------------- /chain-extensions/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3gamesofficial/web3games-blockchain/HEAD/chain-extensions/Cargo.toml -------------------------------------------------------------------------------- /chain-extensions/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3gamesofficial/web3games-blockchain/HEAD/chain-extensions/README.md -------------------------------------------------------------------------------- /chain-extensions/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3gamesofficial/web3games-blockchain/HEAD/chain-extensions/src/lib.rs -------------------------------------------------------------------------------- /chain-extensions/src/token_fungible.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3gamesofficial/web3games-blockchain/HEAD/chain-extensions/src/token_fungible.rs -------------------------------------------------------------------------------- /chain-extensions/src/token_multi.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3gamesofficial/web3games-blockchain/HEAD/chain-extensions/src/token_multi.rs -------------------------------------------------------------------------------- /chain-extensions/src/token_non_fungible.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3gamesofficial/web3games-blockchain/HEAD/chain-extensions/src/token_non_fungible.rs -------------------------------------------------------------------------------- /client/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3gamesofficial/web3games-blockchain/HEAD/client/README.md -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3gamesofficial/web3games-blockchain/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /docker/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3gamesofficial/web3games-blockchain/HEAD/docker/README.md -------------------------------------------------------------------------------- /media/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3gamesofficial/web3games-blockchain/HEAD/media/README.md -------------------------------------------------------------------------------- /node/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3gamesofficial/web3games-blockchain/HEAD/node/Cargo.toml -------------------------------------------------------------------------------- /node/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3gamesofficial/web3games-blockchain/HEAD/node/README.md -------------------------------------------------------------------------------- /node/build.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3gamesofficial/web3games-blockchain/HEAD/node/build.rs -------------------------------------------------------------------------------- /node/src/chain_spec.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3gamesofficial/web3games-blockchain/HEAD/node/src/chain_spec.rs -------------------------------------------------------------------------------- /node/src/cli.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3gamesofficial/web3games-blockchain/HEAD/node/src/cli.rs -------------------------------------------------------------------------------- /node/src/command.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3gamesofficial/web3games-blockchain/HEAD/node/src/command.rs -------------------------------------------------------------------------------- /node/src/command_helper.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3gamesofficial/web3games-blockchain/HEAD/node/src/command_helper.rs -------------------------------------------------------------------------------- /node/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3gamesofficial/web3games-blockchain/HEAD/node/src/main.rs -------------------------------------------------------------------------------- /node/src/rpc.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3gamesofficial/web3games-blockchain/HEAD/node/src/rpc.rs -------------------------------------------------------------------------------- /node/src/service.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3gamesofficial/web3games-blockchain/HEAD/node/src/service.rs -------------------------------------------------------------------------------- /pallets/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3gamesofficial/web3games-blockchain/HEAD/pallets/README.md -------------------------------------------------------------------------------- /pallets/call-switchgear/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3gamesofficial/web3games-blockchain/HEAD/pallets/call-switchgear/Cargo.toml -------------------------------------------------------------------------------- /pallets/call-switchgear/src/benchmarking.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3gamesofficial/web3games-blockchain/HEAD/pallets/call-switchgear/src/benchmarking.rs -------------------------------------------------------------------------------- /pallets/call-switchgear/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3gamesofficial/web3games-blockchain/HEAD/pallets/call-switchgear/src/lib.rs -------------------------------------------------------------------------------- /pallets/call-switchgear/src/mock.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3gamesofficial/web3games-blockchain/HEAD/pallets/call-switchgear/src/mock.rs -------------------------------------------------------------------------------- /pallets/call-switchgear/src/tests.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3gamesofficial/web3games-blockchain/HEAD/pallets/call-switchgear/src/tests.rs -------------------------------------------------------------------------------- /pallets/call-switchgear/src/weights.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3gamesofficial/web3games-blockchain/HEAD/pallets/call-switchgear/src/weights.rs -------------------------------------------------------------------------------- /pallets/ethereum-chain-id/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3gamesofficial/web3games-blockchain/HEAD/pallets/ethereum-chain-id/Cargo.toml -------------------------------------------------------------------------------- /pallets/ethereum-chain-id/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3gamesofficial/web3games-blockchain/HEAD/pallets/ethereum-chain-id/src/lib.rs -------------------------------------------------------------------------------- /pallets/exchange/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3gamesofficial/web3games-blockchain/HEAD/pallets/exchange/Cargo.toml -------------------------------------------------------------------------------- /pallets/exchange/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3gamesofficial/web3games-blockchain/HEAD/pallets/exchange/README.md -------------------------------------------------------------------------------- /pallets/exchange/rpc/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3gamesofficial/web3games-blockchain/HEAD/pallets/exchange/rpc/Cargo.toml -------------------------------------------------------------------------------- /pallets/exchange/rpc/runtime-api/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3gamesofficial/web3games-blockchain/HEAD/pallets/exchange/rpc/runtime-api/Cargo.toml -------------------------------------------------------------------------------- /pallets/exchange/rpc/runtime-api/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3gamesofficial/web3games-blockchain/HEAD/pallets/exchange/rpc/runtime-api/src/lib.rs -------------------------------------------------------------------------------- /pallets/exchange/rpc/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3gamesofficial/web3games-blockchain/HEAD/pallets/exchange/rpc/src/lib.rs -------------------------------------------------------------------------------- /pallets/exchange/src/benchmarking.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3gamesofficial/web3games-blockchain/HEAD/pallets/exchange/src/benchmarking.rs -------------------------------------------------------------------------------- /pallets/exchange/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3gamesofficial/web3games-blockchain/HEAD/pallets/exchange/src/lib.rs -------------------------------------------------------------------------------- /pallets/exchange/src/mock.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3gamesofficial/web3games-blockchain/HEAD/pallets/exchange/src/mock.rs -------------------------------------------------------------------------------- /pallets/exchange/src/tests.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3gamesofficial/web3games-blockchain/HEAD/pallets/exchange/src/tests.rs -------------------------------------------------------------------------------- /pallets/exchange/src/weights.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3gamesofficial/web3games-blockchain/HEAD/pallets/exchange/src/weights.rs -------------------------------------------------------------------------------- /pallets/farming/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3gamesofficial/web3games-blockchain/HEAD/pallets/farming/Cargo.toml -------------------------------------------------------------------------------- /pallets/farming/src/benchmarking.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3gamesofficial/web3games-blockchain/HEAD/pallets/farming/src/benchmarking.rs -------------------------------------------------------------------------------- /pallets/farming/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3gamesofficial/web3games-blockchain/HEAD/pallets/farming/src/lib.rs -------------------------------------------------------------------------------- /pallets/farming/src/mock.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3gamesofficial/web3games-blockchain/HEAD/pallets/farming/src/mock.rs -------------------------------------------------------------------------------- /pallets/farming/src/tests.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3gamesofficial/web3games-blockchain/HEAD/pallets/farming/src/tests.rs -------------------------------------------------------------------------------- /pallets/farming/src/weights.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3gamesofficial/web3games-blockchain/HEAD/pallets/farming/src/weights.rs -------------------------------------------------------------------------------- /pallets/launchpad/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3gamesofficial/web3games-blockchain/HEAD/pallets/launchpad/Cargo.toml -------------------------------------------------------------------------------- /pallets/launchpad/src/benchmarking.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3gamesofficial/web3games-blockchain/HEAD/pallets/launchpad/src/benchmarking.rs -------------------------------------------------------------------------------- /pallets/launchpad/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3gamesofficial/web3games-blockchain/HEAD/pallets/launchpad/src/lib.rs -------------------------------------------------------------------------------- /pallets/launchpad/src/mock.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3gamesofficial/web3games-blockchain/HEAD/pallets/launchpad/src/mock.rs -------------------------------------------------------------------------------- /pallets/launchpad/src/tests.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3gamesofficial/web3games-blockchain/HEAD/pallets/launchpad/src/tests.rs -------------------------------------------------------------------------------- /pallets/launchpad/src/weights.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3gamesofficial/web3games-blockchain/HEAD/pallets/launchpad/src/weights.rs -------------------------------------------------------------------------------- /pallets/marketplace/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3gamesofficial/web3games-blockchain/HEAD/pallets/marketplace/Cargo.toml -------------------------------------------------------------------------------- /pallets/marketplace/src/benchmarking.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3gamesofficial/web3games-blockchain/HEAD/pallets/marketplace/src/benchmarking.rs -------------------------------------------------------------------------------- /pallets/marketplace/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3gamesofficial/web3games-blockchain/HEAD/pallets/marketplace/src/lib.rs -------------------------------------------------------------------------------- /pallets/marketplace/src/mock.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3gamesofficial/web3games-blockchain/HEAD/pallets/marketplace/src/mock.rs -------------------------------------------------------------------------------- /pallets/marketplace/src/tests.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3gamesofficial/web3games-blockchain/HEAD/pallets/marketplace/src/tests.rs -------------------------------------------------------------------------------- /pallets/marketplace/src/weights.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3gamesofficial/web3games-blockchain/HEAD/pallets/marketplace/src/weights.rs -------------------------------------------------------------------------------- /pallets/player-id/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3gamesofficial/web3games-blockchain/HEAD/pallets/player-id/Cargo.toml -------------------------------------------------------------------------------- /pallets/player-id/src/benchmarking.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3gamesofficial/web3games-blockchain/HEAD/pallets/player-id/src/benchmarking.rs -------------------------------------------------------------------------------- /pallets/player-id/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3gamesofficial/web3games-blockchain/HEAD/pallets/player-id/src/lib.rs -------------------------------------------------------------------------------- /pallets/player-id/src/mock.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3gamesofficial/web3games-blockchain/HEAD/pallets/player-id/src/mock.rs -------------------------------------------------------------------------------- /pallets/player-id/src/tests.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3gamesofficial/web3games-blockchain/HEAD/pallets/player-id/src/tests.rs -------------------------------------------------------------------------------- /pallets/player-id/src/weights.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3gamesofficial/web3games-blockchain/HEAD/pallets/player-id/src/weights.rs -------------------------------------------------------------------------------- /pallets/proxy-pay/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3gamesofficial/web3games-blockchain/HEAD/pallets/proxy-pay/Cargo.toml -------------------------------------------------------------------------------- /pallets/proxy-pay/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3gamesofficial/web3games-blockchain/HEAD/pallets/proxy-pay/README.md -------------------------------------------------------------------------------- /pallets/proxy-pay/src/benchmarking.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3gamesofficial/web3games-blockchain/HEAD/pallets/proxy-pay/src/benchmarking.rs -------------------------------------------------------------------------------- /pallets/proxy-pay/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3gamesofficial/web3games-blockchain/HEAD/pallets/proxy-pay/src/lib.rs -------------------------------------------------------------------------------- /pallets/proxy-pay/src/mock.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3gamesofficial/web3games-blockchain/HEAD/pallets/proxy-pay/src/mock.rs -------------------------------------------------------------------------------- /pallets/proxy-pay/src/tests.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3gamesofficial/web3games-blockchain/HEAD/pallets/proxy-pay/src/tests.rs -------------------------------------------------------------------------------- /pallets/proxy-pay/src/weights.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3gamesofficial/web3games-blockchain/HEAD/pallets/proxy-pay/src/weights.rs -------------------------------------------------------------------------------- /pallets/support/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3gamesofficial/web3games-blockchain/HEAD/pallets/support/Cargo.toml -------------------------------------------------------------------------------- /pallets/support/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3gamesofficial/web3games-blockchain/HEAD/pallets/support/src/lib.rs -------------------------------------------------------------------------------- /pallets/token-fungible/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3gamesofficial/web3games-blockchain/HEAD/pallets/token-fungible/Cargo.toml -------------------------------------------------------------------------------- /pallets/token-fungible/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3gamesofficial/web3games-blockchain/HEAD/pallets/token-fungible/README.md -------------------------------------------------------------------------------- /pallets/token-fungible/src/benchmarking.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3gamesofficial/web3games-blockchain/HEAD/pallets/token-fungible/src/benchmarking.rs -------------------------------------------------------------------------------- /pallets/token-fungible/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3gamesofficial/web3games-blockchain/HEAD/pallets/token-fungible/src/lib.rs -------------------------------------------------------------------------------- /pallets/token-fungible/src/mock.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3gamesofficial/web3games-blockchain/HEAD/pallets/token-fungible/src/mock.rs -------------------------------------------------------------------------------- /pallets/token-fungible/src/tests.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3gamesofficial/web3games-blockchain/HEAD/pallets/token-fungible/src/tests.rs -------------------------------------------------------------------------------- /pallets/token-fungible/src/weights.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3gamesofficial/web3games-blockchain/HEAD/pallets/token-fungible/src/weights.rs -------------------------------------------------------------------------------- /pallets/token-multi/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3gamesofficial/web3games-blockchain/HEAD/pallets/token-multi/Cargo.toml -------------------------------------------------------------------------------- /pallets/token-multi/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3gamesofficial/web3games-blockchain/HEAD/pallets/token-multi/README.md -------------------------------------------------------------------------------- /pallets/token-multi/src/benchmarking.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3gamesofficial/web3games-blockchain/HEAD/pallets/token-multi/src/benchmarking.rs -------------------------------------------------------------------------------- /pallets/token-multi/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3gamesofficial/web3games-blockchain/HEAD/pallets/token-multi/src/lib.rs -------------------------------------------------------------------------------- /pallets/token-multi/src/mock.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3gamesofficial/web3games-blockchain/HEAD/pallets/token-multi/src/mock.rs -------------------------------------------------------------------------------- /pallets/token-multi/src/tests.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3gamesofficial/web3games-blockchain/HEAD/pallets/token-multi/src/tests.rs -------------------------------------------------------------------------------- /pallets/token-multi/src/weights.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3gamesofficial/web3games-blockchain/HEAD/pallets/token-multi/src/weights.rs -------------------------------------------------------------------------------- /pallets/token-non-fungible/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3gamesofficial/web3games-blockchain/HEAD/pallets/token-non-fungible/Cargo.toml -------------------------------------------------------------------------------- /pallets/token-non-fungible/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3gamesofficial/web3games-blockchain/HEAD/pallets/token-non-fungible/README.md -------------------------------------------------------------------------------- /pallets/token-non-fungible/src/benchmarking.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3gamesofficial/web3games-blockchain/HEAD/pallets/token-non-fungible/src/benchmarking.rs -------------------------------------------------------------------------------- /pallets/token-non-fungible/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3gamesofficial/web3games-blockchain/HEAD/pallets/token-non-fungible/src/lib.rs -------------------------------------------------------------------------------- /pallets/token-non-fungible/src/mock.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3gamesofficial/web3games-blockchain/HEAD/pallets/token-non-fungible/src/mock.rs -------------------------------------------------------------------------------- /pallets/token-non-fungible/src/tests.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3gamesofficial/web3games-blockchain/HEAD/pallets/token-non-fungible/src/tests.rs -------------------------------------------------------------------------------- /pallets/token-non-fungible/src/weights.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3gamesofficial/web3games-blockchain/HEAD/pallets/token-non-fungible/src/weights.rs -------------------------------------------------------------------------------- /pallets/wrap-currency/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3gamesofficial/web3games-blockchain/HEAD/pallets/wrap-currency/Cargo.toml -------------------------------------------------------------------------------- /pallets/wrap-currency/src/benchmarking.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3gamesofficial/web3games-blockchain/HEAD/pallets/wrap-currency/src/benchmarking.rs -------------------------------------------------------------------------------- /pallets/wrap-currency/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3gamesofficial/web3games-blockchain/HEAD/pallets/wrap-currency/src/lib.rs -------------------------------------------------------------------------------- /pallets/wrap-currency/src/mock.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3gamesofficial/web3games-blockchain/HEAD/pallets/wrap-currency/src/mock.rs -------------------------------------------------------------------------------- /pallets/wrap-currency/src/tests.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3gamesofficial/web3games-blockchain/HEAD/pallets/wrap-currency/src/tests.rs -------------------------------------------------------------------------------- /pallets/wrap-currency/src/weights.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3gamesofficial/web3games-blockchain/HEAD/pallets/wrap-currency/src/weights.rs -------------------------------------------------------------------------------- /precompiles/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3gamesofficial/web3games-blockchain/HEAD/precompiles/Cargo.toml -------------------------------------------------------------------------------- /precompiles/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3gamesofficial/web3games-blockchain/HEAD/precompiles/README.md -------------------------------------------------------------------------------- /precompiles/src/Exchange.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3gamesofficial/web3games-blockchain/HEAD/precompiles/src/Exchange.sol -------------------------------------------------------------------------------- /precompiles/src/Farming.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3gamesofficial/web3games-blockchain/HEAD/precompiles/src/Farming.sol -------------------------------------------------------------------------------- /precompiles/src/Launchpad.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3gamesofficial/web3games-blockchain/HEAD/precompiles/src/Launchpad.sol -------------------------------------------------------------------------------- /precompiles/src/Marketplace.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3gamesofficial/web3games-blockchain/HEAD/precompiles/src/Marketplace.sol -------------------------------------------------------------------------------- /precompiles/src/TokenFungible.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3gamesofficial/web3games-blockchain/HEAD/precompiles/src/TokenFungible.sol -------------------------------------------------------------------------------- /precompiles/src/exchange.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3gamesofficial/web3games-blockchain/HEAD/precompiles/src/exchange.rs -------------------------------------------------------------------------------- /precompiles/src/farming.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3gamesofficial/web3games-blockchain/HEAD/precompiles/src/farming.rs -------------------------------------------------------------------------------- /precompiles/src/launchpad.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3gamesofficial/web3games-blockchain/HEAD/precompiles/src/launchpad.rs -------------------------------------------------------------------------------- /precompiles/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3gamesofficial/web3games-blockchain/HEAD/precompiles/src/lib.rs -------------------------------------------------------------------------------- /precompiles/src/marketplace.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3gamesofficial/web3games-blockchain/HEAD/precompiles/src/marketplace.rs -------------------------------------------------------------------------------- /precompiles/src/token_fungible.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3gamesofficial/web3games-blockchain/HEAD/precompiles/src/token_fungible.rs -------------------------------------------------------------------------------- /precompiles/src/token_multi.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3gamesofficial/web3games-blockchain/HEAD/precompiles/src/token_multi.rs -------------------------------------------------------------------------------- /precompiles/src/token_non_fungible.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3gamesofficial/web3games-blockchain/HEAD/precompiles/src/token_non_fungible.rs -------------------------------------------------------------------------------- /precompiles/utils/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3gamesofficial/web3games-blockchain/HEAD/precompiles/utils/Cargo.toml -------------------------------------------------------------------------------- /precompiles/utils/macro/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3gamesofficial/web3games-blockchain/HEAD/precompiles/utils/macro/Cargo.toml -------------------------------------------------------------------------------- /precompiles/utils/macro/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3gamesofficial/web3games-blockchain/HEAD/precompiles/utils/macro/src/lib.rs -------------------------------------------------------------------------------- /precompiles/utils/macro/tests/tests.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3gamesofficial/web3games-blockchain/HEAD/precompiles/utils/macro/tests/tests.rs -------------------------------------------------------------------------------- /precompiles/utils/src/costs.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3gamesofficial/web3games-blockchain/HEAD/precompiles/utils/src/costs.rs -------------------------------------------------------------------------------- /precompiles/utils/src/data/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3gamesofficial/web3games-blockchain/HEAD/precompiles/utils/src/data/mod.rs -------------------------------------------------------------------------------- /precompiles/utils/src/handle.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3gamesofficial/web3games-blockchain/HEAD/precompiles/utils/src/handle.rs -------------------------------------------------------------------------------- /precompiles/utils/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3gamesofficial/web3games-blockchain/HEAD/precompiles/utils/src/lib.rs -------------------------------------------------------------------------------- /precompiles/utils/src/logs.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3gamesofficial/web3games-blockchain/HEAD/precompiles/utils/src/logs.rs -------------------------------------------------------------------------------- /precompiles/utils/src/modifier.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3gamesofficial/web3games-blockchain/HEAD/precompiles/utils/src/modifier.rs -------------------------------------------------------------------------------- /precompiles/utils/src/precompile_set.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3gamesofficial/web3games-blockchain/HEAD/precompiles/utils/src/precompile_set.rs -------------------------------------------------------------------------------- /precompiles/utils/src/substrate.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3gamesofficial/web3games-blockchain/HEAD/precompiles/utils/src/substrate.rs -------------------------------------------------------------------------------- /precompiles/utils/src/testing.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3gamesofficial/web3games-blockchain/HEAD/precompiles/utils/src/testing.rs -------------------------------------------------------------------------------- /precompiles/utils/src/tests.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3gamesofficial/web3games-blockchain/HEAD/precompiles/utils/src/tests.rs -------------------------------------------------------------------------------- /primitives/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3gamesofficial/web3games-blockchain/HEAD/primitives/Cargo.toml -------------------------------------------------------------------------------- /primitives/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3gamesofficial/web3games-blockchain/HEAD/primitives/README.md -------------------------------------------------------------------------------- /primitives/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3gamesofficial/web3games-blockchain/HEAD/primitives/src/lib.rs -------------------------------------------------------------------------------- /runtime/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3gamesofficial/web3games-blockchain/HEAD/runtime/README.md -------------------------------------------------------------------------------- /runtime/web3games/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3gamesofficial/web3games-blockchain/HEAD/runtime/web3games/Cargo.toml -------------------------------------------------------------------------------- /runtime/web3games/build.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3gamesofficial/web3games-blockchain/HEAD/runtime/web3games/build.rs -------------------------------------------------------------------------------- /runtime/web3games/src/constants.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3gamesofficial/web3games-blockchain/HEAD/runtime/web3games/src/constants.rs -------------------------------------------------------------------------------- /runtime/web3games/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3gamesofficial/web3games-blockchain/HEAD/runtime/web3games/src/lib.rs -------------------------------------------------------------------------------- /rust-toolchain: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3gamesofficial/web3games-blockchain/HEAD/rust-toolchain -------------------------------------------------------------------------------- /rustfmt.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3gamesofficial/web3games-blockchain/HEAD/rustfmt.toml -------------------------------------------------------------------------------- /sc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3gamesofficial/web3games-blockchain/HEAD/sc.json -------------------------------------------------------------------------------- /sc_init.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3gamesofficial/web3games-blockchain/HEAD/sc_init.json -------------------------------------------------------------------------------- /scripts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3gamesofficial/web3games-blockchain/HEAD/scripts/README.md -------------------------------------------------------------------------------- /scripts/docker_run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3gamesofficial/web3games-blockchain/HEAD/scripts/docker_run.sh -------------------------------------------------------------------------------- /scripts/generate-weights.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3gamesofficial/web3games-blockchain/HEAD/scripts/generate-weights.sh -------------------------------------------------------------------------------- /scripts/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3gamesofficial/web3games-blockchain/HEAD/scripts/init.sh -------------------------------------------------------------------------------- /specs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3gamesofficial/web3games-blockchain/HEAD/specs/README.md -------------------------------------------------------------------------------- /specs/devnet/devnet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3gamesofficial/web3games-blockchain/HEAD/specs/devnet/devnet.json -------------------------------------------------------------------------------- /specs/testnet/testnet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3gamesofficial/web3games-blockchain/HEAD/specs/testnet/testnet.json --------------------------------------------------------------------------------