e2e-tests/solana: use a nonce account for transfer-token example

This commit is contained in:
Ryan Heywood 2025-01-01 03:00:20 -05:00
parent da5126b664
commit dd7736f5c8
Signed by: ryan
GPG Key ID: 8E401478A3FBEF72
1 changed files with 4 additions and 1 deletions

View File

@ -4,6 +4,9 @@ read -r from_address
printf "%s" "Public key of the recipient 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: "
read -r token_name
@ -21,4 +24,4 @@ cat <<EOF > /data/input.json
}
EOF
icepick workflow sol broadcast --cluster devnet
icepick workflow sol broadcast --cluster devnet --nonce-address "$nonce_address"