Deployment and Interaction
Deploy contract
Deploy using XIOND
RES=$(xiond tx wasm store artifacts/cw_nameservice.wasm --from mywallet $TXFLAG -y --output json)echo $RESCODE_ID=$(echo $RES | jq -r '.logs[0].events[] | select(.type=="store_code") | .attributes[] | select(.key=="code_id") | .value')echo $CODE_IDxiond query wasm list-contract-by-code $CODE_ID $NODE --output jsonInstantiating the contract
Instantiate using xiond
Contract Interaction
Interact using xiond
Last updated
Was this helpful?