Testnet deployment tutorial
Deploy a Cosmwasm smart contract to the public testnet
1. Public Full-node Information
2. Create Gameluk Account + Key
export ACCOUNT_NAME="<YOUR_ACCOUNT_NAME_HERE>"
gameid keys add $ACCOUNT_NAME- name: $ACCOUNT_NAME
type: local
address: game1ep9jyk9kydjz0fhadm7rzy6pc9ga7tdt4d26xn
pubkey: '{"@type":"/cosmos.crypto.secp256k1.PubKey","key":"Ai3obIQZXAmdgDSw7p1awFIPGK9b7cu/SfJM6nbc+hV/"}'
mnemonic: ""
**Important** write this mnemonic phrase in a safe place.
It is the only way to recover your account if you ever forget your password.
some mnemonic words some mnemonic words some mnemonic words some mnemonic words some mnemonic words
Store the shown account address into local env variable and add it as the genesis account to the chain:3. Fund your account
4. Upload & Instantiate Wasm Contract
Last updated