├── .github ├── instructions │ └── codacy.instructions.md └── workflows │ └── ci.yml ├── .gitignore ├── 0g (zero-gravity) ├── README.md ├── resources │ ├── brand-kit │ │ ├── 0G-Logo-Purple_Hero.png │ │ ├── 0G-Logo-White.png │ │ └── 0G_Black_logo.png │ ├── dAIOS.png │ ├── image.png │ ├── image_vo0g_execute.png │ ├── image_vo0g_menu.png │ ├── image_vo0g_start.png │ ├── storage.png │ ├── validator-node-thumbnail.jpg │ ├── valleyof0G.sh │ └── vo0gnew.png ├── storage-cli.md ├── storage-kv.md ├── storage-node.md └── validator-node.md ├── Anoma ├── README.md └── resources │ ├── gvxanoma.gif │ └── valleyofAnoma.sh ├── Fogo ├── README.md └── resources │ └── image.png ├── Gensyn ├── README.md └── resources │ └── grandvalleyxgensyn.png ├── Initia └── README.md ├── KiteAI ├── .env.example ├── .gitignore ├── CONTRIBUTING.md ├── Dockerfile ├── LICENSE ├── Makefile ├── README.md ├── api │ └── app.py ├── brand-kit │ ├── Kite logo mark_beige.png │ ├── Kite logo mark_black.png │ ├── Kite logo mark_white.png │ ├── Kite_Black logo.png │ ├── Kite_White logo.png │ └── Kite_beige logo.png ├── docker-compose.yml ├── docs │ ├── overview.md │ ├── storage-node.md │ └── validator-node.md ├── requirements.txt ├── resources │ ├── apply_snapshot.sh │ ├── brand-kit │ │ └── README.txt │ ├── install.sh │ ├── update.sh │ └── valleyofKiteAI.sh └── tests │ └── test_api.py ├── Monad ├── README.md └── resources │ └── valleyofMonad.sh ├── NEAR-StakeWars-III ├── README.md └── Tasks │ ├── task-001.md │ ├── task-002.md │ ├── task-003.md │ ├── task-004.md │ └── task-006.md ├── Namada ├── Indexers │ └── README.md ├── README.md ├── resources │ ├── apply_snapshot.sh │ ├── apply_snapshot_namada_indexer.sh │ ├── apply_snapshot_namada_masp_indexer.sh │ ├── csr.sh │ ├── namada_indexer_install.sh │ ├── namada_masp_indexer_install.sh │ ├── namada_update.sh │ ├── namada_validator_node_install_housefire_testnet.sh │ ├── valleyofNamada │ └── valleyofNamada.sh └── validator-node.md ├── Nexus ├── README.md └── resources │ └── .gitkeep ├── Optimum ├── README.md └── resources │ └── image.png ├── PRIVACY_POLICY.md ├── README.md ├── SUMMARY.md ├── Sacas Network ├── README.md └── resources │ ├── cosmovisorpath.png │ ├── sacas_validator_node_install.sh │ └── valleyofSacas.sh ├── Seismic ├── README.md ├── deploy_interact_contract.md └── resources │ ├── image.png │ └── valleyofSeismic.sh ├── Story Protocol ├── README.md ├── resources │ ├── brand-kit │ │ ├── ip-badge-2.svg │ │ ├── ip-badge.svg │ │ ├── ip-token-g.svg │ │ ├── ip-token-s.svg │ │ ├── logo (1).svg │ │ ├── logo-dark.svg │ │ ├── logo.svg │ │ ├── symbol-dark.svg │ │ └── symbol.svg │ ├── image-1.png │ ├── image.png │ ├── valleyofStory.sh │ └── vos_menu.png └── validator-node.md ├── Stride └── new relayer │ └── README.md └── Vana ├── DLP-smart-contracts.md ├── DLP-validator-node.md ├── README.md ├── resources ├── image-1.png ├── image-2.png ├── image-3.png ├── image-4.png ├── image-5.png ├── image-6.png ├── image-7.png ├── image-8.png ├── image-9.png ├── image.png ├── let’s build Vana.jpg └── let’s build vana together.png └── setup.md /.github/instructions/codacy.instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubofvalley/Testnet-Guides/HEAD/.github/instructions/codacy.instructions.md -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubofvalley/Testnet-Guides/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubofvalley/Testnet-Guides/HEAD/.gitignore -------------------------------------------------------------------------------- /0g (zero-gravity)/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubofvalley/Testnet-Guides/HEAD/0g (zero-gravity)/README.md -------------------------------------------------------------------------------- /0g (zero-gravity)/resources/brand-kit/0G-Logo-Purple_Hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubofvalley/Testnet-Guides/HEAD/0g (zero-gravity)/resources/brand-kit/0G-Logo-Purple_Hero.png -------------------------------------------------------------------------------- /0g (zero-gravity)/resources/brand-kit/0G-Logo-White.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubofvalley/Testnet-Guides/HEAD/0g (zero-gravity)/resources/brand-kit/0G-Logo-White.png -------------------------------------------------------------------------------- /0g (zero-gravity)/resources/brand-kit/0G_Black_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubofvalley/Testnet-Guides/HEAD/0g (zero-gravity)/resources/brand-kit/0G_Black_logo.png -------------------------------------------------------------------------------- /0g (zero-gravity)/resources/dAIOS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubofvalley/Testnet-Guides/HEAD/0g (zero-gravity)/resources/dAIOS.png -------------------------------------------------------------------------------- /0g (zero-gravity)/resources/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubofvalley/Testnet-Guides/HEAD/0g (zero-gravity)/resources/image.png -------------------------------------------------------------------------------- /0g (zero-gravity)/resources/image_vo0g_execute.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubofvalley/Testnet-Guides/HEAD/0g (zero-gravity)/resources/image_vo0g_execute.png -------------------------------------------------------------------------------- /0g (zero-gravity)/resources/image_vo0g_menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubofvalley/Testnet-Guides/HEAD/0g (zero-gravity)/resources/image_vo0g_menu.png -------------------------------------------------------------------------------- /0g (zero-gravity)/resources/image_vo0g_start.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubofvalley/Testnet-Guides/HEAD/0g (zero-gravity)/resources/image_vo0g_start.png -------------------------------------------------------------------------------- /0g (zero-gravity)/resources/storage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubofvalley/Testnet-Guides/HEAD/0g (zero-gravity)/resources/storage.png -------------------------------------------------------------------------------- /0g (zero-gravity)/resources/validator-node-thumbnail.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubofvalley/Testnet-Guides/HEAD/0g (zero-gravity)/resources/validator-node-thumbnail.jpg -------------------------------------------------------------------------------- /0g (zero-gravity)/resources/valleyof0G.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubofvalley/Testnet-Guides/HEAD/0g (zero-gravity)/resources/valleyof0G.sh -------------------------------------------------------------------------------- /0g (zero-gravity)/resources/vo0gnew.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubofvalley/Testnet-Guides/HEAD/0g (zero-gravity)/resources/vo0gnew.png -------------------------------------------------------------------------------- /0g (zero-gravity)/storage-cli.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubofvalley/Testnet-Guides/HEAD/0g (zero-gravity)/storage-cli.md -------------------------------------------------------------------------------- /0g (zero-gravity)/storage-kv.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubofvalley/Testnet-Guides/HEAD/0g (zero-gravity)/storage-kv.md -------------------------------------------------------------------------------- /0g (zero-gravity)/storage-node.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubofvalley/Testnet-Guides/HEAD/0g (zero-gravity)/storage-node.md -------------------------------------------------------------------------------- /0g (zero-gravity)/validator-node.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubofvalley/Testnet-Guides/HEAD/0g (zero-gravity)/validator-node.md -------------------------------------------------------------------------------- /Anoma/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubofvalley/Testnet-Guides/HEAD/Anoma/README.md -------------------------------------------------------------------------------- /Anoma/resources/gvxanoma.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubofvalley/Testnet-Guides/HEAD/Anoma/resources/gvxanoma.gif -------------------------------------------------------------------------------- /Anoma/resources/valleyofAnoma.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Fogo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubofvalley/Testnet-Guides/HEAD/Fogo/README.md -------------------------------------------------------------------------------- /Fogo/resources/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubofvalley/Testnet-Guides/HEAD/Fogo/resources/image.png -------------------------------------------------------------------------------- /Gensyn/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubofvalley/Testnet-Guides/HEAD/Gensyn/README.md -------------------------------------------------------------------------------- /Gensyn/resources/grandvalleyxgensyn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubofvalley/Testnet-Guides/HEAD/Gensyn/resources/grandvalleyxgensyn.png -------------------------------------------------------------------------------- /Initia/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubofvalley/Testnet-Guides/HEAD/Initia/README.md -------------------------------------------------------------------------------- /KiteAI/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubofvalley/Testnet-Guides/HEAD/KiteAI/.env.example -------------------------------------------------------------------------------- /KiteAI/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubofvalley/Testnet-Guides/HEAD/KiteAI/.gitignore -------------------------------------------------------------------------------- /KiteAI/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubofvalley/Testnet-Guides/HEAD/KiteAI/CONTRIBUTING.md -------------------------------------------------------------------------------- /KiteAI/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubofvalley/Testnet-Guides/HEAD/KiteAI/Dockerfile -------------------------------------------------------------------------------- /KiteAI/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubofvalley/Testnet-Guides/HEAD/KiteAI/LICENSE -------------------------------------------------------------------------------- /KiteAI/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubofvalley/Testnet-Guides/HEAD/KiteAI/Makefile -------------------------------------------------------------------------------- /KiteAI/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubofvalley/Testnet-Guides/HEAD/KiteAI/README.md -------------------------------------------------------------------------------- /KiteAI/api/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubofvalley/Testnet-Guides/HEAD/KiteAI/api/app.py -------------------------------------------------------------------------------- /KiteAI/brand-kit/Kite logo mark_beige.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubofvalley/Testnet-Guides/HEAD/KiteAI/brand-kit/Kite logo mark_beige.png -------------------------------------------------------------------------------- /KiteAI/brand-kit/Kite logo mark_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubofvalley/Testnet-Guides/HEAD/KiteAI/brand-kit/Kite logo mark_black.png -------------------------------------------------------------------------------- /KiteAI/brand-kit/Kite logo mark_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubofvalley/Testnet-Guides/HEAD/KiteAI/brand-kit/Kite logo mark_white.png -------------------------------------------------------------------------------- /KiteAI/brand-kit/Kite_Black logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubofvalley/Testnet-Guides/HEAD/KiteAI/brand-kit/Kite_Black logo.png -------------------------------------------------------------------------------- /KiteAI/brand-kit/Kite_White logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubofvalley/Testnet-Guides/HEAD/KiteAI/brand-kit/Kite_White logo.png -------------------------------------------------------------------------------- /KiteAI/brand-kit/Kite_beige logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubofvalley/Testnet-Guides/HEAD/KiteAI/brand-kit/Kite_beige logo.png -------------------------------------------------------------------------------- /KiteAI/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubofvalley/Testnet-Guides/HEAD/KiteAI/docker-compose.yml -------------------------------------------------------------------------------- /KiteAI/docs/overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubofvalley/Testnet-Guides/HEAD/KiteAI/docs/overview.md -------------------------------------------------------------------------------- /KiteAI/docs/storage-node.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubofvalley/Testnet-Guides/HEAD/KiteAI/docs/storage-node.md -------------------------------------------------------------------------------- /KiteAI/docs/validator-node.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubofvalley/Testnet-Guides/HEAD/KiteAI/docs/validator-node.md -------------------------------------------------------------------------------- /KiteAI/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubofvalley/Testnet-Guides/HEAD/KiteAI/requirements.txt -------------------------------------------------------------------------------- /KiteAI/resources/apply_snapshot.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubofvalley/Testnet-Guides/HEAD/KiteAI/resources/apply_snapshot.sh -------------------------------------------------------------------------------- /KiteAI/resources/brand-kit/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubofvalley/Testnet-Guides/HEAD/KiteAI/resources/brand-kit/README.txt -------------------------------------------------------------------------------- /KiteAI/resources/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubofvalley/Testnet-Guides/HEAD/KiteAI/resources/install.sh -------------------------------------------------------------------------------- /KiteAI/resources/update.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubofvalley/Testnet-Guides/HEAD/KiteAI/resources/update.sh -------------------------------------------------------------------------------- /KiteAI/resources/valleyofKiteAI.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubofvalley/Testnet-Guides/HEAD/KiteAI/resources/valleyofKiteAI.sh -------------------------------------------------------------------------------- /KiteAI/tests/test_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubofvalley/Testnet-Guides/HEAD/KiteAI/tests/test_api.py -------------------------------------------------------------------------------- /Monad/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubofvalley/Testnet-Guides/HEAD/Monad/README.md -------------------------------------------------------------------------------- /Monad/resources/valleyofMonad.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /NEAR-StakeWars-III/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubofvalley/Testnet-Guides/HEAD/NEAR-StakeWars-III/README.md -------------------------------------------------------------------------------- /NEAR-StakeWars-III/Tasks/task-001.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubofvalley/Testnet-Guides/HEAD/NEAR-StakeWars-III/Tasks/task-001.md -------------------------------------------------------------------------------- /NEAR-StakeWars-III/Tasks/task-002.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubofvalley/Testnet-Guides/HEAD/NEAR-StakeWars-III/Tasks/task-002.md -------------------------------------------------------------------------------- /NEAR-StakeWars-III/Tasks/task-003.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubofvalley/Testnet-Guides/HEAD/NEAR-StakeWars-III/Tasks/task-003.md -------------------------------------------------------------------------------- /NEAR-StakeWars-III/Tasks/task-004.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubofvalley/Testnet-Guides/HEAD/NEAR-StakeWars-III/Tasks/task-004.md -------------------------------------------------------------------------------- /NEAR-StakeWars-III/Tasks/task-006.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubofvalley/Testnet-Guides/HEAD/NEAR-StakeWars-III/Tasks/task-006.md -------------------------------------------------------------------------------- /Namada/Indexers/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubofvalley/Testnet-Guides/HEAD/Namada/Indexers/README.md -------------------------------------------------------------------------------- /Namada/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubofvalley/Testnet-Guides/HEAD/Namada/README.md -------------------------------------------------------------------------------- /Namada/resources/apply_snapshot.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubofvalley/Testnet-Guides/HEAD/Namada/resources/apply_snapshot.sh -------------------------------------------------------------------------------- /Namada/resources/apply_snapshot_namada_indexer.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubofvalley/Testnet-Guides/HEAD/Namada/resources/apply_snapshot_namada_indexer.sh -------------------------------------------------------------------------------- /Namada/resources/apply_snapshot_namada_masp_indexer.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubofvalley/Testnet-Guides/HEAD/Namada/resources/apply_snapshot_namada_masp_indexer.sh -------------------------------------------------------------------------------- /Namada/resources/csr.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubofvalley/Testnet-Guides/HEAD/Namada/resources/csr.sh -------------------------------------------------------------------------------- /Namada/resources/namada_indexer_install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubofvalley/Testnet-Guides/HEAD/Namada/resources/namada_indexer_install.sh -------------------------------------------------------------------------------- /Namada/resources/namada_masp_indexer_install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubofvalley/Testnet-Guides/HEAD/Namada/resources/namada_masp_indexer_install.sh -------------------------------------------------------------------------------- /Namada/resources/namada_update.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubofvalley/Testnet-Guides/HEAD/Namada/resources/namada_update.sh -------------------------------------------------------------------------------- /Namada/resources/namada_validator_node_install_housefire_testnet.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubofvalley/Testnet-Guides/HEAD/Namada/resources/namada_validator_node_install_housefire_testnet.sh -------------------------------------------------------------------------------- /Namada/resources/valleyofNamada: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubofvalley/Testnet-Guides/HEAD/Namada/resources/valleyofNamada -------------------------------------------------------------------------------- /Namada/resources/valleyofNamada.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubofvalley/Testnet-Guides/HEAD/Namada/resources/valleyofNamada.sh -------------------------------------------------------------------------------- /Namada/validator-node.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubofvalley/Testnet-Guides/HEAD/Namada/validator-node.md -------------------------------------------------------------------------------- /Nexus/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubofvalley/Testnet-Guides/HEAD/Nexus/README.md -------------------------------------------------------------------------------- /Nexus/resources/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubofvalley/Testnet-Guides/HEAD/Nexus/resources/.gitkeep -------------------------------------------------------------------------------- /Optimum/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubofvalley/Testnet-Guides/HEAD/Optimum/README.md -------------------------------------------------------------------------------- /Optimum/resources/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubofvalley/Testnet-Guides/HEAD/Optimum/resources/image.png -------------------------------------------------------------------------------- /PRIVACY_POLICY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubofvalley/Testnet-Guides/HEAD/PRIVACY_POLICY.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubofvalley/Testnet-Guides/HEAD/README.md -------------------------------------------------------------------------------- /SUMMARY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubofvalley/Testnet-Guides/HEAD/SUMMARY.md -------------------------------------------------------------------------------- /Sacas Network/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubofvalley/Testnet-Guides/HEAD/Sacas Network/README.md -------------------------------------------------------------------------------- /Sacas Network/resources/cosmovisorpath.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubofvalley/Testnet-Guides/HEAD/Sacas Network/resources/cosmovisorpath.png -------------------------------------------------------------------------------- /Sacas Network/resources/sacas_validator_node_install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubofvalley/Testnet-Guides/HEAD/Sacas Network/resources/sacas_validator_node_install.sh -------------------------------------------------------------------------------- /Sacas Network/resources/valleyofSacas.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubofvalley/Testnet-Guides/HEAD/Sacas Network/resources/valleyofSacas.sh -------------------------------------------------------------------------------- /Seismic/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubofvalley/Testnet-Guides/HEAD/Seismic/README.md -------------------------------------------------------------------------------- /Seismic/deploy_interact_contract.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubofvalley/Testnet-Guides/HEAD/Seismic/deploy_interact_contract.md -------------------------------------------------------------------------------- /Seismic/resources/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubofvalley/Testnet-Guides/HEAD/Seismic/resources/image.png -------------------------------------------------------------------------------- /Seismic/resources/valleyofSeismic.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Story Protocol/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubofvalley/Testnet-Guides/HEAD/Story Protocol/README.md -------------------------------------------------------------------------------- /Story Protocol/resources/brand-kit/ip-badge-2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubofvalley/Testnet-Guides/HEAD/Story Protocol/resources/brand-kit/ip-badge-2.svg -------------------------------------------------------------------------------- /Story Protocol/resources/brand-kit/ip-badge.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubofvalley/Testnet-Guides/HEAD/Story Protocol/resources/brand-kit/ip-badge.svg -------------------------------------------------------------------------------- /Story Protocol/resources/brand-kit/ip-token-g.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubofvalley/Testnet-Guides/HEAD/Story Protocol/resources/brand-kit/ip-token-g.svg -------------------------------------------------------------------------------- /Story Protocol/resources/brand-kit/ip-token-s.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubofvalley/Testnet-Guides/HEAD/Story Protocol/resources/brand-kit/ip-token-s.svg -------------------------------------------------------------------------------- /Story Protocol/resources/brand-kit/logo (1).svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubofvalley/Testnet-Guides/HEAD/Story Protocol/resources/brand-kit/logo (1).svg -------------------------------------------------------------------------------- /Story Protocol/resources/brand-kit/logo-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubofvalley/Testnet-Guides/HEAD/Story Protocol/resources/brand-kit/logo-dark.svg -------------------------------------------------------------------------------- /Story Protocol/resources/brand-kit/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubofvalley/Testnet-Guides/HEAD/Story Protocol/resources/brand-kit/logo.svg -------------------------------------------------------------------------------- /Story Protocol/resources/brand-kit/symbol-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubofvalley/Testnet-Guides/HEAD/Story Protocol/resources/brand-kit/symbol-dark.svg -------------------------------------------------------------------------------- /Story Protocol/resources/brand-kit/symbol.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubofvalley/Testnet-Guides/HEAD/Story Protocol/resources/brand-kit/symbol.svg -------------------------------------------------------------------------------- /Story Protocol/resources/image-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubofvalley/Testnet-Guides/HEAD/Story Protocol/resources/image-1.png -------------------------------------------------------------------------------- /Story Protocol/resources/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubofvalley/Testnet-Guides/HEAD/Story Protocol/resources/image.png -------------------------------------------------------------------------------- /Story Protocol/resources/valleyofStory.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubofvalley/Testnet-Guides/HEAD/Story Protocol/resources/valleyofStory.sh -------------------------------------------------------------------------------- /Story Protocol/resources/vos_menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubofvalley/Testnet-Guides/HEAD/Story Protocol/resources/vos_menu.png -------------------------------------------------------------------------------- /Story Protocol/validator-node.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubofvalley/Testnet-Guides/HEAD/Story Protocol/validator-node.md -------------------------------------------------------------------------------- /Stride/new relayer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubofvalley/Testnet-Guides/HEAD/Stride/new relayer/README.md -------------------------------------------------------------------------------- /Vana/DLP-smart-contracts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubofvalley/Testnet-Guides/HEAD/Vana/DLP-smart-contracts.md -------------------------------------------------------------------------------- /Vana/DLP-validator-node.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubofvalley/Testnet-Guides/HEAD/Vana/DLP-validator-node.md -------------------------------------------------------------------------------- /Vana/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubofvalley/Testnet-Guides/HEAD/Vana/README.md -------------------------------------------------------------------------------- /Vana/resources/image-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubofvalley/Testnet-Guides/HEAD/Vana/resources/image-1.png -------------------------------------------------------------------------------- /Vana/resources/image-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubofvalley/Testnet-Guides/HEAD/Vana/resources/image-2.png -------------------------------------------------------------------------------- /Vana/resources/image-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubofvalley/Testnet-Guides/HEAD/Vana/resources/image-3.png -------------------------------------------------------------------------------- /Vana/resources/image-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubofvalley/Testnet-Guides/HEAD/Vana/resources/image-4.png -------------------------------------------------------------------------------- /Vana/resources/image-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubofvalley/Testnet-Guides/HEAD/Vana/resources/image-5.png -------------------------------------------------------------------------------- /Vana/resources/image-6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubofvalley/Testnet-Guides/HEAD/Vana/resources/image-6.png -------------------------------------------------------------------------------- /Vana/resources/image-7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubofvalley/Testnet-Guides/HEAD/Vana/resources/image-7.png -------------------------------------------------------------------------------- /Vana/resources/image-8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubofvalley/Testnet-Guides/HEAD/Vana/resources/image-8.png -------------------------------------------------------------------------------- /Vana/resources/image-9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubofvalley/Testnet-Guides/HEAD/Vana/resources/image-9.png -------------------------------------------------------------------------------- /Vana/resources/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubofvalley/Testnet-Guides/HEAD/Vana/resources/image.png -------------------------------------------------------------------------------- /Vana/resources/let’s build Vana.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubofvalley/Testnet-Guides/HEAD/Vana/resources/let’s build Vana.jpg -------------------------------------------------------------------------------- /Vana/resources/let’s build vana together.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubofvalley/Testnet-Guides/HEAD/Vana/resources/let’s build vana together.png -------------------------------------------------------------------------------- /Vana/setup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubofvalley/Testnet-Guides/HEAD/Vana/setup.md --------------------------------------------------------------------------------