├── .dockerignore ├── .github └── workflows │ └── build.yaml ├── .gitignore ├── LICENSE ├── README.md ├── ci ├── .dockerignore ├── Containerfile └── fetch-and-decompress.sh ├── devnet ├── vitosha-3 │ └── currencies.json ├── vitosha-7 │ ├── protocols │ │ ├── neutron-astroport-usdc_axelar.json │ │ ├── osmosis-osmosis-osmo.json │ │ └── osmosis-osmosis-usdc_axelar.json │ └── topology.json └── vitosha-8 │ ├── protocols │ ├── neutron-astroport-usdc_axelar.json │ ├── osmosis-osmosis-osmo.json │ └── osmosis-osmosis-usdc_axelar.json │ └── topology.json ├── genesis-validators.md ├── images ├── brand-resources │ ├── nolus_logo_element.svg │ ├── nolus_logo_horizontal.svg │ └── nolus_logo_horizontal_invert.svg ├── nolus.png └── nolus.svg ├── mainnet └── pirin-1 │ ├── addrbook.json │ ├── currencies.json │ ├── dao │ └── NOLUS-DAO-GOVERNANCE-TERMS_v1.0.pdf │ ├── genesis.json │ ├── gentxs │ ├── 01node.json │ ├── PPNV.json │ ├── Stakecito-gentx.json │ ├── gentx-Allnodes.json │ ├── gentx-ArchitectNodes.json │ ├── gentx-AutonomyCapital.json │ ├── gentx-B-Harvest.json │ ├── gentx-BwareLabs.json │ ├── gentx-CryptoChemistry.json │ ├── gentx-DOUBLETOP.json │ ├── gentx-Dora-Factory-PGS.json │ ├── gentx-Enigma.json │ ├── gentx-NacionCrypto-Parceros.json │ ├── gentx-Notional.json │ ├── gentx-P-OPS Team.json │ ├── gentx-Qubelabs.json │ ├── gentx-Stakewolle.json │ ├── gentx-ValidatorRun.json │ ├── gentx-citadelone.json │ ├── gentx-crosnest.json │ ├── gentx-cryptocrew-validators.json │ ├── gentx-everstake.json │ ├── gentx-forbole.json │ ├── gentx-frens.json │ ├── gentx-gt-capital.json │ ├── gentx-imperator.json │ ├── gentx-kingnodes.json │ ├── gentx-kjnodes.json │ ├── gentx-lavenderfive.json │ ├── gentx-nodex.json │ ├── gentx-stakingcabin.json │ ├── gentx-strangelove.json │ ├── gentx-swiss-staking.json │ ├── gentx-w3coins.json │ └── nodesguru.json │ ├── peers.txt │ ├── protocols │ ├── neutron-astroport-usdc_axelar.json │ ├── neutron-astroport-usdc_noble.json │ ├── osmosis-osmosis-akt.json │ ├── osmosis-osmosis-all_btc.json │ ├── osmosis-osmosis-all_sol.json │ ├── osmosis-osmosis-atom.json │ ├── osmosis-osmosis-inj.json │ ├── osmosis-osmosis-osmo.json │ ├── osmosis-osmosis-st_atom.json │ ├── osmosis-osmosis-usdc_axelar.json │ └── osmosis-osmosis-usdc_noble.json │ └── topology.json ├── peers-mainnet.md ├── testnet ├── nolus-rila │ ├── README.md │ ├── build-image.sh │ ├── currencies.json │ ├── docker-node.sh │ ├── genesis.json │ ├── nolus_node.Dockerfile │ ├── persistent_peers.txt │ └── version.md ├── rila-1 │ ├── currencies.json │ ├── genesis.json │ └── peers.txt ├── rila-2 │ ├── currencies.json │ ├── genesis.json │ └── peers.txt └── rila-3 │ ├── currencies.json │ ├── genesis.json │ ├── peers.txt │ ├── protocols │ ├── neutron-astroport-usdc_axelar.json │ ├── osmosis-osmosis-osmo.json │ └── osmosis-osmosis-usdc_axelar.json │ └── topology.json └── topology.md /.dockerignore: -------------------------------------------------------------------------------- 1 | * 2 | .* 3 | -------------------------------------------------------------------------------- /.github/workflows/build.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nolus-protocol/nolus-networks/HEAD/.github/workflows/build.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nolus-protocol/nolus-networks/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nolus-protocol/nolus-networks/HEAD/README.md -------------------------------------------------------------------------------- /ci/.dockerignore: -------------------------------------------------------------------------------- 1 | * 2 | .* 3 | !*.sh 4 | -------------------------------------------------------------------------------- /ci/Containerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nolus-protocol/nolus-networks/HEAD/ci/Containerfile -------------------------------------------------------------------------------- /ci/fetch-and-decompress.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nolus-protocol/nolus-networks/HEAD/ci/fetch-and-decompress.sh -------------------------------------------------------------------------------- /devnet/vitosha-3/currencies.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nolus-protocol/nolus-networks/HEAD/devnet/vitosha-3/currencies.json -------------------------------------------------------------------------------- /devnet/vitosha-7/protocols/neutron-astroport-usdc_axelar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nolus-protocol/nolus-networks/HEAD/devnet/vitosha-7/protocols/neutron-astroport-usdc_axelar.json -------------------------------------------------------------------------------- /devnet/vitosha-7/protocols/osmosis-osmosis-osmo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nolus-protocol/nolus-networks/HEAD/devnet/vitosha-7/protocols/osmosis-osmosis-osmo.json -------------------------------------------------------------------------------- /devnet/vitosha-7/protocols/osmosis-osmosis-usdc_axelar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nolus-protocol/nolus-networks/HEAD/devnet/vitosha-7/protocols/osmosis-osmosis-usdc_axelar.json -------------------------------------------------------------------------------- /devnet/vitosha-7/topology.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nolus-protocol/nolus-networks/HEAD/devnet/vitosha-7/topology.json -------------------------------------------------------------------------------- /devnet/vitosha-8/protocols/neutron-astroport-usdc_axelar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nolus-protocol/nolus-networks/HEAD/devnet/vitosha-8/protocols/neutron-astroport-usdc_axelar.json -------------------------------------------------------------------------------- /devnet/vitosha-8/protocols/osmosis-osmosis-osmo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nolus-protocol/nolus-networks/HEAD/devnet/vitosha-8/protocols/osmosis-osmosis-osmo.json -------------------------------------------------------------------------------- /devnet/vitosha-8/protocols/osmosis-osmosis-usdc_axelar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nolus-protocol/nolus-networks/HEAD/devnet/vitosha-8/protocols/osmosis-osmosis-usdc_axelar.json -------------------------------------------------------------------------------- /devnet/vitosha-8/topology.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nolus-protocol/nolus-networks/HEAD/devnet/vitosha-8/topology.json -------------------------------------------------------------------------------- /genesis-validators.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nolus-protocol/nolus-networks/HEAD/genesis-validators.md -------------------------------------------------------------------------------- /images/brand-resources/nolus_logo_element.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nolus-protocol/nolus-networks/HEAD/images/brand-resources/nolus_logo_element.svg -------------------------------------------------------------------------------- /images/brand-resources/nolus_logo_horizontal.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nolus-protocol/nolus-networks/HEAD/images/brand-resources/nolus_logo_horizontal.svg -------------------------------------------------------------------------------- /images/brand-resources/nolus_logo_horizontal_invert.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nolus-protocol/nolus-networks/HEAD/images/brand-resources/nolus_logo_horizontal_invert.svg -------------------------------------------------------------------------------- /images/nolus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nolus-protocol/nolus-networks/HEAD/images/nolus.png -------------------------------------------------------------------------------- /images/nolus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nolus-protocol/nolus-networks/HEAD/images/nolus.svg -------------------------------------------------------------------------------- /mainnet/pirin-1/addrbook.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nolus-protocol/nolus-networks/HEAD/mainnet/pirin-1/addrbook.json -------------------------------------------------------------------------------- /mainnet/pirin-1/currencies.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nolus-protocol/nolus-networks/HEAD/mainnet/pirin-1/currencies.json -------------------------------------------------------------------------------- /mainnet/pirin-1/dao/NOLUS-DAO-GOVERNANCE-TERMS_v1.0.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nolus-protocol/nolus-networks/HEAD/mainnet/pirin-1/dao/NOLUS-DAO-GOVERNANCE-TERMS_v1.0.pdf -------------------------------------------------------------------------------- /mainnet/pirin-1/genesis.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nolus-protocol/nolus-networks/HEAD/mainnet/pirin-1/genesis.json -------------------------------------------------------------------------------- /mainnet/pirin-1/gentxs/01node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nolus-protocol/nolus-networks/HEAD/mainnet/pirin-1/gentxs/01node.json -------------------------------------------------------------------------------- /mainnet/pirin-1/gentxs/PPNV.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nolus-protocol/nolus-networks/HEAD/mainnet/pirin-1/gentxs/PPNV.json -------------------------------------------------------------------------------- /mainnet/pirin-1/gentxs/Stakecito-gentx.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nolus-protocol/nolus-networks/HEAD/mainnet/pirin-1/gentxs/Stakecito-gentx.json -------------------------------------------------------------------------------- /mainnet/pirin-1/gentxs/gentx-Allnodes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nolus-protocol/nolus-networks/HEAD/mainnet/pirin-1/gentxs/gentx-Allnodes.json -------------------------------------------------------------------------------- /mainnet/pirin-1/gentxs/gentx-ArchitectNodes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nolus-protocol/nolus-networks/HEAD/mainnet/pirin-1/gentxs/gentx-ArchitectNodes.json -------------------------------------------------------------------------------- /mainnet/pirin-1/gentxs/gentx-AutonomyCapital.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nolus-protocol/nolus-networks/HEAD/mainnet/pirin-1/gentxs/gentx-AutonomyCapital.json -------------------------------------------------------------------------------- /mainnet/pirin-1/gentxs/gentx-B-Harvest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nolus-protocol/nolus-networks/HEAD/mainnet/pirin-1/gentxs/gentx-B-Harvest.json -------------------------------------------------------------------------------- /mainnet/pirin-1/gentxs/gentx-BwareLabs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nolus-protocol/nolus-networks/HEAD/mainnet/pirin-1/gentxs/gentx-BwareLabs.json -------------------------------------------------------------------------------- /mainnet/pirin-1/gentxs/gentx-CryptoChemistry.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nolus-protocol/nolus-networks/HEAD/mainnet/pirin-1/gentxs/gentx-CryptoChemistry.json -------------------------------------------------------------------------------- /mainnet/pirin-1/gentxs/gentx-DOUBLETOP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nolus-protocol/nolus-networks/HEAD/mainnet/pirin-1/gentxs/gentx-DOUBLETOP.json -------------------------------------------------------------------------------- /mainnet/pirin-1/gentxs/gentx-Dora-Factory-PGS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nolus-protocol/nolus-networks/HEAD/mainnet/pirin-1/gentxs/gentx-Dora-Factory-PGS.json -------------------------------------------------------------------------------- /mainnet/pirin-1/gentxs/gentx-Enigma.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nolus-protocol/nolus-networks/HEAD/mainnet/pirin-1/gentxs/gentx-Enigma.json -------------------------------------------------------------------------------- /mainnet/pirin-1/gentxs/gentx-NacionCrypto-Parceros.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nolus-protocol/nolus-networks/HEAD/mainnet/pirin-1/gentxs/gentx-NacionCrypto-Parceros.json -------------------------------------------------------------------------------- /mainnet/pirin-1/gentxs/gentx-Notional.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nolus-protocol/nolus-networks/HEAD/mainnet/pirin-1/gentxs/gentx-Notional.json -------------------------------------------------------------------------------- /mainnet/pirin-1/gentxs/gentx-P-OPS Team.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nolus-protocol/nolus-networks/HEAD/mainnet/pirin-1/gentxs/gentx-P-OPS Team.json -------------------------------------------------------------------------------- /mainnet/pirin-1/gentxs/gentx-Qubelabs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nolus-protocol/nolus-networks/HEAD/mainnet/pirin-1/gentxs/gentx-Qubelabs.json -------------------------------------------------------------------------------- /mainnet/pirin-1/gentxs/gentx-Stakewolle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nolus-protocol/nolus-networks/HEAD/mainnet/pirin-1/gentxs/gentx-Stakewolle.json -------------------------------------------------------------------------------- /mainnet/pirin-1/gentxs/gentx-ValidatorRun.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nolus-protocol/nolus-networks/HEAD/mainnet/pirin-1/gentxs/gentx-ValidatorRun.json -------------------------------------------------------------------------------- /mainnet/pirin-1/gentxs/gentx-citadelone.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nolus-protocol/nolus-networks/HEAD/mainnet/pirin-1/gentxs/gentx-citadelone.json -------------------------------------------------------------------------------- /mainnet/pirin-1/gentxs/gentx-crosnest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nolus-protocol/nolus-networks/HEAD/mainnet/pirin-1/gentxs/gentx-crosnest.json -------------------------------------------------------------------------------- /mainnet/pirin-1/gentxs/gentx-cryptocrew-validators.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nolus-protocol/nolus-networks/HEAD/mainnet/pirin-1/gentxs/gentx-cryptocrew-validators.json -------------------------------------------------------------------------------- /mainnet/pirin-1/gentxs/gentx-everstake.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nolus-protocol/nolus-networks/HEAD/mainnet/pirin-1/gentxs/gentx-everstake.json -------------------------------------------------------------------------------- /mainnet/pirin-1/gentxs/gentx-forbole.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nolus-protocol/nolus-networks/HEAD/mainnet/pirin-1/gentxs/gentx-forbole.json -------------------------------------------------------------------------------- /mainnet/pirin-1/gentxs/gentx-frens.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nolus-protocol/nolus-networks/HEAD/mainnet/pirin-1/gentxs/gentx-frens.json -------------------------------------------------------------------------------- /mainnet/pirin-1/gentxs/gentx-gt-capital.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nolus-protocol/nolus-networks/HEAD/mainnet/pirin-1/gentxs/gentx-gt-capital.json -------------------------------------------------------------------------------- /mainnet/pirin-1/gentxs/gentx-imperator.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nolus-protocol/nolus-networks/HEAD/mainnet/pirin-1/gentxs/gentx-imperator.json -------------------------------------------------------------------------------- /mainnet/pirin-1/gentxs/gentx-kingnodes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nolus-protocol/nolus-networks/HEAD/mainnet/pirin-1/gentxs/gentx-kingnodes.json -------------------------------------------------------------------------------- /mainnet/pirin-1/gentxs/gentx-kjnodes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nolus-protocol/nolus-networks/HEAD/mainnet/pirin-1/gentxs/gentx-kjnodes.json -------------------------------------------------------------------------------- /mainnet/pirin-1/gentxs/gentx-lavenderfive.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nolus-protocol/nolus-networks/HEAD/mainnet/pirin-1/gentxs/gentx-lavenderfive.json -------------------------------------------------------------------------------- /mainnet/pirin-1/gentxs/gentx-nodex.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nolus-protocol/nolus-networks/HEAD/mainnet/pirin-1/gentxs/gentx-nodex.json -------------------------------------------------------------------------------- /mainnet/pirin-1/gentxs/gentx-stakingcabin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nolus-protocol/nolus-networks/HEAD/mainnet/pirin-1/gentxs/gentx-stakingcabin.json -------------------------------------------------------------------------------- /mainnet/pirin-1/gentxs/gentx-strangelove.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nolus-protocol/nolus-networks/HEAD/mainnet/pirin-1/gentxs/gentx-strangelove.json -------------------------------------------------------------------------------- /mainnet/pirin-1/gentxs/gentx-swiss-staking.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nolus-protocol/nolus-networks/HEAD/mainnet/pirin-1/gentxs/gentx-swiss-staking.json -------------------------------------------------------------------------------- /mainnet/pirin-1/gentxs/gentx-w3coins.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nolus-protocol/nolus-networks/HEAD/mainnet/pirin-1/gentxs/gentx-w3coins.json -------------------------------------------------------------------------------- /mainnet/pirin-1/gentxs/nodesguru.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nolus-protocol/nolus-networks/HEAD/mainnet/pirin-1/gentxs/nodesguru.json -------------------------------------------------------------------------------- /mainnet/pirin-1/peers.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nolus-protocol/nolus-networks/HEAD/mainnet/pirin-1/peers.txt -------------------------------------------------------------------------------- /mainnet/pirin-1/protocols/neutron-astroport-usdc_axelar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nolus-protocol/nolus-networks/HEAD/mainnet/pirin-1/protocols/neutron-astroport-usdc_axelar.json -------------------------------------------------------------------------------- /mainnet/pirin-1/protocols/neutron-astroport-usdc_noble.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nolus-protocol/nolus-networks/HEAD/mainnet/pirin-1/protocols/neutron-astroport-usdc_noble.json -------------------------------------------------------------------------------- /mainnet/pirin-1/protocols/osmosis-osmosis-akt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nolus-protocol/nolus-networks/HEAD/mainnet/pirin-1/protocols/osmosis-osmosis-akt.json -------------------------------------------------------------------------------- /mainnet/pirin-1/protocols/osmosis-osmosis-all_btc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nolus-protocol/nolus-networks/HEAD/mainnet/pirin-1/protocols/osmosis-osmosis-all_btc.json -------------------------------------------------------------------------------- /mainnet/pirin-1/protocols/osmosis-osmosis-all_sol.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nolus-protocol/nolus-networks/HEAD/mainnet/pirin-1/protocols/osmosis-osmosis-all_sol.json -------------------------------------------------------------------------------- /mainnet/pirin-1/protocols/osmosis-osmosis-atom.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nolus-protocol/nolus-networks/HEAD/mainnet/pirin-1/protocols/osmosis-osmosis-atom.json -------------------------------------------------------------------------------- /mainnet/pirin-1/protocols/osmosis-osmosis-inj.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nolus-protocol/nolus-networks/HEAD/mainnet/pirin-1/protocols/osmosis-osmosis-inj.json -------------------------------------------------------------------------------- /mainnet/pirin-1/protocols/osmosis-osmosis-osmo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nolus-protocol/nolus-networks/HEAD/mainnet/pirin-1/protocols/osmosis-osmosis-osmo.json -------------------------------------------------------------------------------- /mainnet/pirin-1/protocols/osmosis-osmosis-st_atom.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nolus-protocol/nolus-networks/HEAD/mainnet/pirin-1/protocols/osmosis-osmosis-st_atom.json -------------------------------------------------------------------------------- /mainnet/pirin-1/protocols/osmosis-osmosis-usdc_axelar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nolus-protocol/nolus-networks/HEAD/mainnet/pirin-1/protocols/osmosis-osmosis-usdc_axelar.json -------------------------------------------------------------------------------- /mainnet/pirin-1/protocols/osmosis-osmosis-usdc_noble.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nolus-protocol/nolus-networks/HEAD/mainnet/pirin-1/protocols/osmosis-osmosis-usdc_noble.json -------------------------------------------------------------------------------- /mainnet/pirin-1/topology.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nolus-protocol/nolus-networks/HEAD/mainnet/pirin-1/topology.json -------------------------------------------------------------------------------- /peers-mainnet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nolus-protocol/nolus-networks/HEAD/peers-mainnet.md -------------------------------------------------------------------------------- /testnet/nolus-rila/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nolus-protocol/nolus-networks/HEAD/testnet/nolus-rila/README.md -------------------------------------------------------------------------------- /testnet/nolus-rila/build-image.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nolus-protocol/nolus-networks/HEAD/testnet/nolus-rila/build-image.sh -------------------------------------------------------------------------------- /testnet/nolus-rila/currencies.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nolus-protocol/nolus-networks/HEAD/testnet/nolus-rila/currencies.json -------------------------------------------------------------------------------- /testnet/nolus-rila/docker-node.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nolus-protocol/nolus-networks/HEAD/testnet/nolus-rila/docker-node.sh -------------------------------------------------------------------------------- /testnet/nolus-rila/genesis.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nolus-protocol/nolus-networks/HEAD/testnet/nolus-rila/genesis.json -------------------------------------------------------------------------------- /testnet/nolus-rila/nolus_node.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nolus-protocol/nolus-networks/HEAD/testnet/nolus-rila/nolus_node.Dockerfile -------------------------------------------------------------------------------- /testnet/nolus-rila/persistent_peers.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nolus-protocol/nolus-networks/HEAD/testnet/nolus-rila/persistent_peers.txt -------------------------------------------------------------------------------- /testnet/nolus-rila/version.md: -------------------------------------------------------------------------------- 1 | v0.1.39 -------------------------------------------------------------------------------- /testnet/rila-1/currencies.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nolus-protocol/nolus-networks/HEAD/testnet/rila-1/currencies.json -------------------------------------------------------------------------------- /testnet/rila-1/genesis.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nolus-protocol/nolus-networks/HEAD/testnet/rila-1/genesis.json -------------------------------------------------------------------------------- /testnet/rila-1/peers.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nolus-protocol/nolus-networks/HEAD/testnet/rila-1/peers.txt -------------------------------------------------------------------------------- /testnet/rila-2/currencies.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nolus-protocol/nolus-networks/HEAD/testnet/rila-2/currencies.json -------------------------------------------------------------------------------- /testnet/rila-2/genesis.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nolus-protocol/nolus-networks/HEAD/testnet/rila-2/genesis.json -------------------------------------------------------------------------------- /testnet/rila-2/peers.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nolus-protocol/nolus-networks/HEAD/testnet/rila-2/peers.txt -------------------------------------------------------------------------------- /testnet/rila-3/currencies.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nolus-protocol/nolus-networks/HEAD/testnet/rila-3/currencies.json -------------------------------------------------------------------------------- /testnet/rila-3/genesis.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nolus-protocol/nolus-networks/HEAD/testnet/rila-3/genesis.json -------------------------------------------------------------------------------- /testnet/rila-3/peers.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nolus-protocol/nolus-networks/HEAD/testnet/rila-3/peers.txt -------------------------------------------------------------------------------- /testnet/rila-3/protocols/neutron-astroport-usdc_axelar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nolus-protocol/nolus-networks/HEAD/testnet/rila-3/protocols/neutron-astroport-usdc_axelar.json -------------------------------------------------------------------------------- /testnet/rila-3/protocols/osmosis-osmosis-osmo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nolus-protocol/nolus-networks/HEAD/testnet/rila-3/protocols/osmosis-osmosis-osmo.json -------------------------------------------------------------------------------- /testnet/rila-3/protocols/osmosis-osmosis-usdc_axelar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nolus-protocol/nolus-networks/HEAD/testnet/rila-3/protocols/osmosis-osmosis-usdc_axelar.json -------------------------------------------------------------------------------- /testnet/rila-3/topology.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nolus-protocol/nolus-networks/HEAD/testnet/rila-3/topology.json -------------------------------------------------------------------------------- /topology.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nolus-protocol/nolus-networks/HEAD/topology.md --------------------------------------------------------------------------------