{"id":23080104,"url":"https://github.com/idep-network/sanfordv2","last_synced_at":"2026-03-20T00:30:30.739Z","repository":{"id":124073142,"uuid":"456711106","full_name":"IDEP-network/SanfordV2","owner":"IDEP-network","description":"Incentivized-testnet Sanford V2.0","archived":false,"fork":false,"pushed_at":"2022-03-01T17:39:14.000Z","size":27012,"stargazers_count":1,"open_issues_count":0,"forks_count":2,"subscribers_count":4,"default_branch":"master","last_synced_at":"2025-02-09T02:34:19.362Z","etag":null,"topics":["sanford","testnet"],"latest_commit_sha":null,"homepage":"","language":null,"has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/IDEP-network.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2022-02-07T23:19:32.000Z","updated_at":"2022-04-28T15:19:53.000Z","dependencies_parsed_at":null,"dependency_job_id":"d5b329ea-1a43-4cdb-a88f-bcf7f8f66b4c","html_url":"https://github.com/IDEP-network/SanfordV2","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/IDEP-network%2FSanfordV2","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/IDEP-network%2FSanfordV2/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/IDEP-network%2FSanfordV2/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/IDEP-network%2FSanfordV2/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/IDEP-network","download_url":"https://codeload.github.com/IDEP-network/SanfordV2/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":247013190,"owners_count":20869227,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["sanford","testnet"],"created_at":"2024-12-16T13:04:44.336Z","updated_at":"2026-01-18T06:52:07.942Z","avatar_url":"https://github.com/IDEP-network.png","language":null,"funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003ch1\u003e\u003cp align=\"center\"\u003e\u003cimg alt=\"Banner\" src=\"SanfordV2.png\" /\u003e\u003c/p\u003e\u003c/h1\u003e\n\n\u003ch1 align=\"center\"\u003eIncentivized Network Sanford V2.0\u003c/h1\u003e\n\n## Requirements #\n* Latest Version of Ubuntu\n* 4 CPU Processor\n* 8-16 GB Ram\n* 1 TB Storage\n\n### Incentivized-testnet Sanford is utilizing Cosmos version 0.44.5\n\n## Setup\n\n**Prerequisites:** Make sure to have [Golang \u003e=1.17](https://golang.org/).\n\n- Download the IDEP client binary iond\n```\ngit clone https://github.com/IDEP-network/SanfordV2.git\n```\n\n- Move/Copy the binary to /usr/local/bin/\n```\nsudo cp SanfordV2/iond /usr/local/bin/\n```\n\n- Add permissions to the binary\n```\nsudo chmod a+x /usr/local/bin/iond\n```\n\n## Install Wasmvm dependency\n```\ngo get -u github.com/CosmWasm/wasmvm@v1.0.0-beta4\ncd $HOME/go/pkg/mod/github.com/\\!cosm\\!wasm/wasmvm@v1.0.0-beta4/api\nchmod +x libwasmvm.so\n```\n\n### Add LD_LIBRARY_PATH\n```\necho \"export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:$HOME/go/pkg/mod/github.com/\\!cosm\\!wasm/wasmvm@v1.0.0-beta4/api\" \u003e\u003e $HOME/.bash_profile\nsource $HOME/.bash_profile\n```\n\n- Check the binary commands with\n```\niond -h\n```\n\n## Full-Node Initialization\n```\niond init \u003cmoniker\u003e --chain-id SanfordNetworkV2\niond keys add \u003caccountname\u003e\n```\n- Save the mnemonic in a safe place and dont share it with anyone\n\n- Add seeds and persistent_peers to config.toml\n\n- Next make your way to the nodes config directory, remove the genesis.json and replace it with the one provided in this repo\n```\ncd ~/.ion/config/\n\nrm genesis.json\nwget https://raw.githubusercontent.com/IDEP-network/SanfordV2/master/genesis.json\n```\n\n## Start Node\n\n```\niond start\n```\n\n### Validator-Setup\n\n- To get your Public Address\n```\niond keys list\n```\n- Create a Validator\n\nBefore you can create your Validator, your node has to be synced up to the latest block of the chain. You can check this by:\n\n```\niond status\n```\nIf `catching_up` is `false` you are good to execute:\n\n```\niond tx staking create-validator \\\n    --amount 10000000000idep \\\n    --commission-max-change-rate 0.01 \\\n    --commission-max-rate 0.2 \\\n    --commission-rate 0.1 \\\n    --from \u003cYourWalletAddress\u003e \\\n    --min-self-delegation 1 \\\n    --moniker \u003cYourMoniker\u003e \\\n    --pubkey $(iond tendermint show-validator) \\\n    --chain-id SanfordV2\n```\n\n### Seeds\n```\n32312653a1397f0912035d5a382e0e8664989a8f@137.184.192.7:26656\n```\n\n### FAQ\n#### Example of a command to create a Validator\n```\niond tx staking create-validator --amount 15000000000000idep --from idep1d2nqcwf9zz9fx7xlesyt0gc3utfxe2mk6nfwey --pubkey idepvalconspub1zcjduepqztw5yzm5wj0yc600aaemxlmda5488jv9hycxfnta3w7vz9jgpawqc9qnhs --commission-rate 0.01 --commission-max-rate 0.05 --commission-max-change-rate 0.005 --min-self-delegation 1 --chain-id SanfordV2\n```\n\n#### To know more about the commands and other parameters\n```\niond tx staking create-validator --help\n```\n#### Tendermint API Documentation\nhttps://v1.cosmos.network/rpc/v0.41.4\n\n**Note:** IDEP Token has 8 decimal places. If you wish to run a validator with 100,000 tokens you must set the ammount to --ammount 10000000000000\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fidep-network%2Fsanfordv2","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fidep-network%2Fsanfordv2","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fidep-network%2Fsanfordv2/lists"}