File tree 3 files changed +4
-5
lines changed
3 files changed +4
-5
lines changed Original file line number Diff line number Diff line change @@ -82,14 +82,14 @@ node cosmwasm/submit-proposal.js \
82
82
83
83
``` sh
84
84
# Add all trusted chains to Solana ITS
85
- solana/solana-axelar-cli send its set-trusted-chain --chain-name all
85
+ solana/solana-axelar-cli send its set-trusted-chain all
86
86
```
87
87
88
88
Alternatively, add specific chains:
89
89
90
90
``` sh
91
91
# Add a specific trusted chain
92
- solana/solana-axelar-cli send its set-trusted-chain --chain-name < CHAIN_NAME>
92
+ solana/solana-axelar-cli send its set-trusted-chain < CHAIN_NAME>
93
93
```
94
94
95
95
6 . Set Solana as trusted chain on EVM ITS and other chain ITS implementations:
Original file line number Diff line number Diff line change @@ -266,10 +266,10 @@ solana/solana-axelar-cli send its init --operator <OPERATOR_PUBKEY>
266
266
267
267
``` sh
268
268
# Add a trusted chain
269
- solana/solana-axelar-cli send its set-trusted-chain --chain-name < CHAIN_NAME>
269
+ solana/solana-axelar-cli send its set-trusted-chain < CHAIN_NAME>
270
270
271
271
# Remove a trusted chain
272
- solana/solana-axelar-cli send its remove-trusted-chain --chain-name < CHAIN_NAME>
272
+ solana/solana-axelar-cli send its remove-trusted-chain < CHAIN_NAME>
273
273
```
274
274
275
275
#### Deploy Interchain Token
Original file line number Diff line number Diff line change @@ -293,7 +293,6 @@ pub(crate) struct SetPauseStatusArgs {
293
293
#[ derive( Parser , Debug ) ]
294
294
pub ( crate ) struct TrustedChainArgs {
295
295
/// The name of the chain to set as trusted
296
- #[ clap( short, long) ]
297
296
chain_name : String ,
298
297
}
299
298
You can’t perform that action at this time.
0 commit comments