├── .env.local.example ├── .env.mainnet.example ├── .env.testnet.example ├── .gitignore ├── 1_connecting_to_node └── connect.js ├── 2_creating_account └── create_account.js ├── 3_query_node └── query.js ├── 4_transactions ├── README.md ├── transfer.js ├── transfer_batch.js └── transfer_batch_same_tx.js ├── 5_contracts ├── README.md ├── contract.wasm ├── main.js └── main_broadcast_multi.js ├── 6_wallets ├── README.md ├── keplr │ ├── README.md │ ├── index.html │ ├── package-lock.json │ ├── package.json │ ├── src │ │ └── main.js │ └── webpack.config.js ├── reactjs_keplr │ ├── App.js │ ├── LICENSE │ ├── Makefile │ └── README.md └── reactjs_keplr_counter │ ├── App.js │ └── README.md ├── 7_snip20_token ├── contract │ ├── contract.wasm │ └── hash.txt └── main.js ├── 8_websocket ├── .env.example ├── README.md ├── index.html ├── package-lock.json ├── package.json ├── src │ └── main.js └── webpack.config.js ├── 9_snip24_token ├── contract │ ├── contract.wasm │ └── hash.txt └── main.js ├── README.md └── package.json /.env.local.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scrtlabs/SecretJS-Templates/HEAD/.env.local.example -------------------------------------------------------------------------------- /.env.mainnet.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scrtlabs/SecretJS-Templates/HEAD/.env.mainnet.example -------------------------------------------------------------------------------- /.env.testnet.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scrtlabs/SecretJS-Templates/HEAD/.env.testnet.example -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .env 3 | -------------------------------------------------------------------------------- /1_connecting_to_node/connect.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scrtlabs/SecretJS-Templates/HEAD/1_connecting_to_node/connect.js -------------------------------------------------------------------------------- /2_creating_account/create_account.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scrtlabs/SecretJS-Templates/HEAD/2_creating_account/create_account.js -------------------------------------------------------------------------------- /3_query_node/query.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scrtlabs/SecretJS-Templates/HEAD/3_query_node/query.js -------------------------------------------------------------------------------- /4_transactions/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scrtlabs/SecretJS-Templates/HEAD/4_transactions/README.md -------------------------------------------------------------------------------- /4_transactions/transfer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scrtlabs/SecretJS-Templates/HEAD/4_transactions/transfer.js -------------------------------------------------------------------------------- /4_transactions/transfer_batch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scrtlabs/SecretJS-Templates/HEAD/4_transactions/transfer_batch.js -------------------------------------------------------------------------------- /4_transactions/transfer_batch_same_tx.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scrtlabs/SecretJS-Templates/HEAD/4_transactions/transfer_batch_same_tx.js -------------------------------------------------------------------------------- /5_contracts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scrtlabs/SecretJS-Templates/HEAD/5_contracts/README.md -------------------------------------------------------------------------------- /5_contracts/contract.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scrtlabs/SecretJS-Templates/HEAD/5_contracts/contract.wasm -------------------------------------------------------------------------------- /5_contracts/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scrtlabs/SecretJS-Templates/HEAD/5_contracts/main.js -------------------------------------------------------------------------------- /5_contracts/main_broadcast_multi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scrtlabs/SecretJS-Templates/HEAD/5_contracts/main_broadcast_multi.js -------------------------------------------------------------------------------- /6_wallets/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scrtlabs/SecretJS-Templates/HEAD/6_wallets/README.md -------------------------------------------------------------------------------- /6_wallets/keplr/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scrtlabs/SecretJS-Templates/HEAD/6_wallets/keplr/README.md -------------------------------------------------------------------------------- /6_wallets/keplr/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scrtlabs/SecretJS-Templates/HEAD/6_wallets/keplr/index.html -------------------------------------------------------------------------------- /6_wallets/keplr/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scrtlabs/SecretJS-Templates/HEAD/6_wallets/keplr/package-lock.json -------------------------------------------------------------------------------- /6_wallets/keplr/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scrtlabs/SecretJS-Templates/HEAD/6_wallets/keplr/package.json -------------------------------------------------------------------------------- /6_wallets/keplr/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scrtlabs/SecretJS-Templates/HEAD/6_wallets/keplr/src/main.js -------------------------------------------------------------------------------- /6_wallets/keplr/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scrtlabs/SecretJS-Templates/HEAD/6_wallets/keplr/webpack.config.js -------------------------------------------------------------------------------- /6_wallets/reactjs_keplr/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scrtlabs/SecretJS-Templates/HEAD/6_wallets/reactjs_keplr/App.js -------------------------------------------------------------------------------- /6_wallets/reactjs_keplr/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scrtlabs/SecretJS-Templates/HEAD/6_wallets/reactjs_keplr/LICENSE -------------------------------------------------------------------------------- /6_wallets/reactjs_keplr/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scrtlabs/SecretJS-Templates/HEAD/6_wallets/reactjs_keplr/Makefile -------------------------------------------------------------------------------- /6_wallets/reactjs_keplr/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scrtlabs/SecretJS-Templates/HEAD/6_wallets/reactjs_keplr/README.md -------------------------------------------------------------------------------- /6_wallets/reactjs_keplr_counter/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scrtlabs/SecretJS-Templates/HEAD/6_wallets/reactjs_keplr_counter/App.js -------------------------------------------------------------------------------- /6_wallets/reactjs_keplr_counter/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scrtlabs/SecretJS-Templates/HEAD/6_wallets/reactjs_keplr_counter/README.md -------------------------------------------------------------------------------- /7_snip20_token/contract/contract.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scrtlabs/SecretJS-Templates/HEAD/7_snip20_token/contract/contract.wasm -------------------------------------------------------------------------------- /7_snip20_token/contract/hash.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scrtlabs/SecretJS-Templates/HEAD/7_snip20_token/contract/hash.txt -------------------------------------------------------------------------------- /7_snip20_token/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scrtlabs/SecretJS-Templates/HEAD/7_snip20_token/main.js -------------------------------------------------------------------------------- /8_websocket/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scrtlabs/SecretJS-Templates/HEAD/8_websocket/.env.example -------------------------------------------------------------------------------- /8_websocket/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scrtlabs/SecretJS-Templates/HEAD/8_websocket/README.md -------------------------------------------------------------------------------- /8_websocket/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scrtlabs/SecretJS-Templates/HEAD/8_websocket/index.html -------------------------------------------------------------------------------- /8_websocket/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scrtlabs/SecretJS-Templates/HEAD/8_websocket/package-lock.json -------------------------------------------------------------------------------- /8_websocket/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scrtlabs/SecretJS-Templates/HEAD/8_websocket/package.json -------------------------------------------------------------------------------- /8_websocket/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scrtlabs/SecretJS-Templates/HEAD/8_websocket/src/main.js -------------------------------------------------------------------------------- /8_websocket/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scrtlabs/SecretJS-Templates/HEAD/8_websocket/webpack.config.js -------------------------------------------------------------------------------- /9_snip24_token/contract/contract.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scrtlabs/SecretJS-Templates/HEAD/9_snip24_token/contract/contract.wasm -------------------------------------------------------------------------------- /9_snip24_token/contract/hash.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scrtlabs/SecretJS-Templates/HEAD/9_snip24_token/contract/hash.txt -------------------------------------------------------------------------------- /9_snip24_token/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scrtlabs/SecretJS-Templates/HEAD/9_snip24_token/main.js -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scrtlabs/SecretJS-Templates/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scrtlabs/SecretJS-Templates/HEAD/package.json --------------------------------------------------------------------------------