Skip to content
This repository has been archived by the owner on Aug 25, 2022. It is now read-only.
/ networks-agentland Public archive

Information for connecting to the Agentland testnet

License

Notifications You must be signed in to change notification settings

fetchai/networks-agentland

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Fetch.ai Agentland network

This repo contains information on how to connect to the fetch.ai Agentland test network.

Agent-land network API/endpoints and info

Block explorer

The block explorer can be accessed by clicking here

Installing wasmd

To install the wasmd and wasmcli executables, execute the following commands:

cd ~
git clone https://github.com/fetchai/fetchd
cd fetchd && git checkout tags/v0.2.4
make install

Generating an account

Having installed wasmd, you can configure wasmcli to connect to the agent-land network by doing the following:

wasmcli config chain-id agent-land
wasmcli config trust-node false
wasmcli config node https://rpc-agent-land.fetch.ai:443

You can generate an account by executing the following line of code:

wasmcli keys add <Key name>

Getting funds from the token faucet

Press the Get Funds button in the block explorer. Target wallet address has to be specified.

Steps for running an agent-land network node

  • Initialize wasmd by running:

    wasmd init <Moniker-name> --chain-id agent-land
  • Execute the following command to get the genesis file:

    curl https://rpc-agent-land.fetch.ai/genesis? | jq .result.genesis > ~/.wasmd/config/genesis.json

  • Change allow_duplicate_ip = false to allow_duplicate_ip = true in ~/.wasmd/config/config.toml

    • on macOS X:
      sed -i  '' 's/allow_duplicate_ip = false/allow_duplicate_ip = true/' ~/.wasmd/config/config.toml
    • on Linux:
      sed -i  's/allow_duplicate_ip = false/allow_duplicate_ip = true/' ~/.wasmd/config/config.toml
  • Start wasmd by connecting to the seed node:

    wasmd start --p2p.seeds=fac8c9cc4f94b30276437534d12a28dc6c0af420@connect-agent-land.fetch.ai:26656

Releases

No releases published

Packages

No packages published