Skip to content

Instantly share code, notes, and snippets.

@rootulp
Last active August 29, 2024 20:05
Show Gist options
  • Save rootulp/c17eea58d6549b31d42824664cc7e3bb to your computer and use it in GitHub Desktop.
Save rootulp/c17eea58d6549b31d42824664cc7e3bb to your computer and use it in GitHub Desktop.
Celestia network voting period

Voting Period

Network Voting Period (nanoseconds) Voting period (days)
arabica-11 604800000000000 7
mocha-4 86400000000000 1
celestia 604800000000000 7

Reference

$ grpcurl -d '{"subspace": "gov", "key": "votingparams"}' grpc.celestia-arabica-11.com:443 cosmos.params.v1beta1.Query/Params
{
  "param": {
    "subspace": "gov",
    "key": "votingparams",
    "value": "{\"voting_period\":\"604800000000000\"}"
  }
}
$ grpcurl -d '{"subspace": "gov", "key": "votingparams"}' celestia-mocha-grpc.publicnode.com:443 cosmos.params.v1beta1.Query/Params
{
  "param": {
    "subspace": "gov",
    "key": "votingparams",
    "value": "{\"voting_period\":\"86400000000000\"}"
  }
}
$ grpcurl -d '{"subspace": "gov", "key": "votingparams"}' celestia-grpc.publicnode.com:443 cosmos.params.v1beta1.Query/Params
{
  "param": {
    "subspace": "gov",
    "key": "votingparams",
    "value": "{\"voting_period\":\"604800000000000\"}"
  }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment