e2e-tests/solana: use a nonce account for transfer-token example
This commit is contained in:
parent
da5126b664
commit
dd7736f5c8
|
@ -4,6 +4,9 @@ read -r from_address
|
||||||
printf "%s" "Public key of the recipient address: "
|
printf "%s" "Public key of the recipient address: "
|
||||||
read -r to_address
|
read -r to_address
|
||||||
|
|
||||||
|
printf "%s" "Publick ey of the nonce account: "
|
||||||
|
read -r nonce_address
|
||||||
|
|
||||||
printf "%s" "Name of the token to transfer: "
|
printf "%s" "Name of the token to transfer: "
|
||||||
read -r token_name
|
read -r token_name
|
||||||
|
|
||||||
|
@ -21,4 +24,4 @@ cat <<EOF > /data/input.json
|
||||||
}
|
}
|
||||||
EOF
|
EOF
|
||||||
|
|
||||||
icepick workflow sol broadcast --cluster devnet
|
icepick workflow sol broadcast --cluster devnet --nonce-address "$nonce_address"
|
||||||
|
|
Loading…
Reference in New Issue