A Rust gRPC-based scripting library.
These env variables might contain sensitive information (like a mnemonic phrase). I am not responsible for your security practices.
A new chain/network scaffold will be automatically generated when you try to run a script with unknown
.env
values.
| Entry | Description |
| ----------- | ----------- |
| CHAIN | Name of the chain you're targeting (juno, terra, osmosis, ...) |
| NETWORK | The kind of network you are targeting (local, testnet, mainnet) |
| DEPLOYMENT | Name of the targeted deployment group |
| RUSTLOG | Debug level for logging |
| WASMDIR | Directory path that holds optimized .wasm
builds |
| STORE | File that stores network info and state |
| LOCALMNEMONIC | Mnemonic used when NETWORK="local"
|
| TESTMNEMONIC | Mnemonic used when NETWORK="testnet"
|
| MAINMNEMONIC | Mnemonic used when NETWORK="mainnet"
|
| LOCALMULTISIG | Multisig addr used when NETWORK="local"
|
| TESTMULTISIG | Multisig addr used when NETWORK="testnet"
|
| MAINMULTISIG | Multisig addr used when NETWORK="mainnet"
|
$ mkdir my_scripts
$ cd my_scripts
$ cargo init --bin
example.env
file to your scripting workspace and rename it to .env
. Update the values as required and make sure .env
is included in your .gitignore
file! default_store.json
and add whatever chain you want.
[dependencies]
cosm-script = {git = "", tag = "v1.0.0"}
Your layout should then look something like this
my_scripts/
├─ src/
│ ├─ bin/
│ │ ├─ first_stript.rs
│ │ ├─ // My actual scripts
│ ├─ main.rs
├─ default_store.json
├─ .env
├─ Cargo.toml
You can then add a custom library, similar to cw-plus-script, that holds your custom contract interface definitions.
See the cw-20 example