mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-23 01:28:00 +00:00
c8462defab
* add proper tests for custom values * remove try operators * use sustrate compat for import of hash * add license and hex * add script to artifacts.sh * custom values with ids not in metadata can be accessed in static interface * fmt and clippy * access bytes of custom values directly, even if type id wrong * final fixes * removing substrate-compat flag from ui tests * Update subxt/src/custom_values/custom_values_client.rs Co-authored-by: James Wilson <james@jsdw.me> * remove types access in type generator * 2 extra lines --------- Co-authored-by: James Wilson <james@jsdw.me>
24 lines
1.3 KiB
Bash
Executable File
24 lines
1.3 KiB
Bash
Executable File
# # Generates the 3 metadata files in `/artifacts` and the polkadot.rs file for integration tests
|
|
#
|
|
# This script is to be run from the root of the repository: `scripts/artifacts.sh`
|
|
#
|
|
# It expects a local polkadot node to be running a JSON-RPC HTTP server at 127.0.0.1:9933
|
|
# A local polkadot node can be run via:
|
|
# ```
|
|
# git clone https://github.com/paritytech/polkadot.git
|
|
# cd polkadot
|
|
# cargo build --release
|
|
# ./target/release/polkadot --dev --tmp
|
|
# ```
|
|
|
|
# get the full metadata
|
|
cargo run --bin subxt metadata --version 15 > artifacts/polkadot_metadata_full.scale
|
|
# use it to generate polkadot.rs
|
|
cargo run --bin subxt codegen --file artifacts/polkadot_metadata_full.scale | rustfmt > testing/integration-tests/src/full_client/codegen/polkadot.rs
|
|
# generate a metadata file that only contains a few pallets that we need for our examples.
|
|
cargo run --bin subxt metadata --file artifacts/polkadot_metadata_full.scale --pallets "Balances,Staking,System,Multisig,Timestamp,ParaInherent" > artifacts/polkadot_metadata_small.scale
|
|
# generate a metadata file that contains no pallets
|
|
cargo run --bin subxt metadata --file artifacts/polkadot_metadata_full.scale --pallets "" > artifacts/polkadot_metadata_tiny.scale
|
|
# generate a metadata file that only contains some custom metadata
|
|
cargo run --bin generate-custom-metadata > artifacts/metadata_with_custom_values.scale
|