├── .eslintrc.json ├── .gitignore ├── .prettierrc ├── LICENSE ├── README.md ├── ares-1 ├── README.md ├── contracts │ ├── cw3_fixed_multisig.wasm │ ├── mars_delegator.wasm │ └── mars_vesting.wasm ├── data │ ├── accounts.json │ ├── airdrop.json │ └── vesting.json ├── genesis.json └── gentx │ ├── gentx-0669f1d76ae4f91eaf11a0327c71a0ce909df2cd.json │ └── gentx-3084613c19f2a9fc7d46528702fb38a6c7eb5f7f.json ├── ares-2 ├── README.md └── genesis.json ├── mars-1 ├── README.md ├── contracts │ ├── README.md │ ├── cw3_fixed_multisig.wasm │ ├── mars_delegator.wasm │ └── mars_vesting.wasm ├── data │ ├── accounts.json │ ├── airdrop.json │ └── vesting.json ├── genesis.json ├── gentxs │ ├── README.md │ ├── gentx-712c0d93e26f11151956c0084671fde1132f0ce4.json │ ├── gentx-7fa2f4bdbacaf4569621dc76b3e4df4c13b8710e.json │ ├── gentx-89ab32409032feb39f8acf004446b3e750e10aec.json │ ├── gentx-Imperator.json │ ├── gentx-Notional.json │ ├── gentx-SimplyStaking.json │ ├── gentx-blockpane.json │ ├── gentx-chill.json │ ├── gentx-chorusone.json │ ├── gentx-cosmology.json │ ├── gentx-ecostake.json │ ├── gentx-injective.json │ ├── gentx-needlecast.json │ ├── gentx-p2p-org.json │ ├── gentx-polkachu.json │ └── smartstake-gentx.json ├── peers.txt └── seeds.txt ├── package.json ├── scripts ├── add_accounts.ts ├── add_balances.ts ├── add_wasm_msgs.ts ├── bech32.ts ├── constants.ts └── types.ts └── tsconfig.json /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mars-protocol/networks/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mars-protocol/networks/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- 1 | { 2 | "printWidth": 100 3 | } 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mars-protocol/networks/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mars-protocol/networks/HEAD/README.md -------------------------------------------------------------------------------- /ares-1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mars-protocol/networks/HEAD/ares-1/README.md -------------------------------------------------------------------------------- /ares-1/contracts/cw3_fixed_multisig.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mars-protocol/networks/HEAD/ares-1/contracts/cw3_fixed_multisig.wasm -------------------------------------------------------------------------------- /ares-1/contracts/mars_delegator.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mars-protocol/networks/HEAD/ares-1/contracts/mars_delegator.wasm -------------------------------------------------------------------------------- /ares-1/contracts/mars_vesting.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mars-protocol/networks/HEAD/ares-1/contracts/mars_vesting.wasm -------------------------------------------------------------------------------- /ares-1/data/accounts.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mars-protocol/networks/HEAD/ares-1/data/accounts.json -------------------------------------------------------------------------------- /ares-1/data/airdrop.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mars-protocol/networks/HEAD/ares-1/data/airdrop.json -------------------------------------------------------------------------------- /ares-1/data/vesting.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mars-protocol/networks/HEAD/ares-1/data/vesting.json -------------------------------------------------------------------------------- /ares-1/genesis.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mars-protocol/networks/HEAD/ares-1/genesis.json -------------------------------------------------------------------------------- /ares-1/gentx/gentx-0669f1d76ae4f91eaf11a0327c71a0ce909df2cd.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mars-protocol/networks/HEAD/ares-1/gentx/gentx-0669f1d76ae4f91eaf11a0327c71a0ce909df2cd.json -------------------------------------------------------------------------------- /ares-1/gentx/gentx-3084613c19f2a9fc7d46528702fb38a6c7eb5f7f.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mars-protocol/networks/HEAD/ares-1/gentx/gentx-3084613c19f2a9fc7d46528702fb38a6c7eb5f7f.json -------------------------------------------------------------------------------- /ares-2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mars-protocol/networks/HEAD/ares-2/README.md -------------------------------------------------------------------------------- /ares-2/genesis.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mars-protocol/networks/HEAD/ares-2/genesis.json -------------------------------------------------------------------------------- /mars-1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mars-protocol/networks/HEAD/mars-1/README.md -------------------------------------------------------------------------------- /mars-1/contracts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mars-protocol/networks/HEAD/mars-1/contracts/README.md -------------------------------------------------------------------------------- /mars-1/contracts/cw3_fixed_multisig.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mars-protocol/networks/HEAD/mars-1/contracts/cw3_fixed_multisig.wasm -------------------------------------------------------------------------------- /mars-1/contracts/mars_delegator.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mars-protocol/networks/HEAD/mars-1/contracts/mars_delegator.wasm -------------------------------------------------------------------------------- /mars-1/contracts/mars_vesting.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mars-protocol/networks/HEAD/mars-1/contracts/mars_vesting.wasm -------------------------------------------------------------------------------- /mars-1/data/accounts.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mars-protocol/networks/HEAD/mars-1/data/accounts.json -------------------------------------------------------------------------------- /mars-1/data/airdrop.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mars-protocol/networks/HEAD/mars-1/data/airdrop.json -------------------------------------------------------------------------------- /mars-1/data/vesting.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mars-protocol/networks/HEAD/mars-1/data/vesting.json -------------------------------------------------------------------------------- /mars-1/genesis.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mars-protocol/networks/HEAD/mars-1/genesis.json -------------------------------------------------------------------------------- /mars-1/gentxs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mars-protocol/networks/HEAD/mars-1/gentxs/README.md -------------------------------------------------------------------------------- /mars-1/gentxs/gentx-712c0d93e26f11151956c0084671fde1132f0ce4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mars-protocol/networks/HEAD/mars-1/gentxs/gentx-712c0d93e26f11151956c0084671fde1132f0ce4.json -------------------------------------------------------------------------------- /mars-1/gentxs/gentx-7fa2f4bdbacaf4569621dc76b3e4df4c13b8710e.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mars-protocol/networks/HEAD/mars-1/gentxs/gentx-7fa2f4bdbacaf4569621dc76b3e4df4c13b8710e.json -------------------------------------------------------------------------------- /mars-1/gentxs/gentx-89ab32409032feb39f8acf004446b3e750e10aec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mars-protocol/networks/HEAD/mars-1/gentxs/gentx-89ab32409032feb39f8acf004446b3e750e10aec.json -------------------------------------------------------------------------------- /mars-1/gentxs/gentx-Imperator.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mars-protocol/networks/HEAD/mars-1/gentxs/gentx-Imperator.json -------------------------------------------------------------------------------- /mars-1/gentxs/gentx-Notional.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mars-protocol/networks/HEAD/mars-1/gentxs/gentx-Notional.json -------------------------------------------------------------------------------- /mars-1/gentxs/gentx-SimplyStaking.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mars-protocol/networks/HEAD/mars-1/gentxs/gentx-SimplyStaking.json -------------------------------------------------------------------------------- /mars-1/gentxs/gentx-blockpane.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mars-protocol/networks/HEAD/mars-1/gentxs/gentx-blockpane.json -------------------------------------------------------------------------------- /mars-1/gentxs/gentx-chill.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mars-protocol/networks/HEAD/mars-1/gentxs/gentx-chill.json -------------------------------------------------------------------------------- /mars-1/gentxs/gentx-chorusone.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mars-protocol/networks/HEAD/mars-1/gentxs/gentx-chorusone.json -------------------------------------------------------------------------------- /mars-1/gentxs/gentx-cosmology.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mars-protocol/networks/HEAD/mars-1/gentxs/gentx-cosmology.json -------------------------------------------------------------------------------- /mars-1/gentxs/gentx-ecostake.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mars-protocol/networks/HEAD/mars-1/gentxs/gentx-ecostake.json -------------------------------------------------------------------------------- /mars-1/gentxs/gentx-injective.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mars-protocol/networks/HEAD/mars-1/gentxs/gentx-injective.json -------------------------------------------------------------------------------- /mars-1/gentxs/gentx-needlecast.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mars-protocol/networks/HEAD/mars-1/gentxs/gentx-needlecast.json -------------------------------------------------------------------------------- /mars-1/gentxs/gentx-p2p-org.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mars-protocol/networks/HEAD/mars-1/gentxs/gentx-p2p-org.json -------------------------------------------------------------------------------- /mars-1/gentxs/gentx-polkachu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mars-protocol/networks/HEAD/mars-1/gentxs/gentx-polkachu.json -------------------------------------------------------------------------------- /mars-1/gentxs/smartstake-gentx.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mars-protocol/networks/HEAD/mars-1/gentxs/smartstake-gentx.json -------------------------------------------------------------------------------- /mars-1/peers.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mars-protocol/networks/HEAD/mars-1/peers.txt -------------------------------------------------------------------------------- /mars-1/seeds.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mars-protocol/networks/HEAD/mars-1/seeds.txt -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mars-protocol/networks/HEAD/package.json -------------------------------------------------------------------------------- /scripts/add_accounts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mars-protocol/networks/HEAD/scripts/add_accounts.ts -------------------------------------------------------------------------------- /scripts/add_balances.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mars-protocol/networks/HEAD/scripts/add_balances.ts -------------------------------------------------------------------------------- /scripts/add_wasm_msgs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mars-protocol/networks/HEAD/scripts/add_wasm_msgs.ts -------------------------------------------------------------------------------- /scripts/bech32.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mars-protocol/networks/HEAD/scripts/bech32.ts -------------------------------------------------------------------------------- /scripts/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mars-protocol/networks/HEAD/scripts/constants.ts -------------------------------------------------------------------------------- /scripts/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mars-protocol/networks/HEAD/scripts/types.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mars-protocol/networks/HEAD/tsconfig.json --------------------------------------------------------------------------------