我是靠谱客的博主 昏睡猎豹,最近开发中收集的这篇文章主要介绍NEAR官方文档翻译(四)基础(Basics)- EpochEpoch,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

文章目录

  • Epoch

Epoch

An epoch is a unit of time when validators of the network remain constant.
epoch 是网络验证器保持不变的时间单位。

  • testnet和mainnet的epoch 持续时间约为12小时或43200秒。
  • 您可以通过查询genesis_config RPC端点并搜索epoch_length来查看此设置。(https://docs.near.org/docs/develop/front-end/rpc#genesis-config)
  • Nodes garbage collect blocks after 5 epochs unless they are archival nodes.

HTTPie Query:

http post https://rpc.mainnet.near.org jsonrpc=2.0 id=dontcare method=EXPERIMENTAL_genesis_config

Example Response:

{
    "id": "dontcare",
    "jsonrpc": "2.0",
    "result": {
        "avg_hidden_validator_seats_per_shard": [
            0
        ],
        "block_producer_kickout_threshold": 90,
        "chain_id": "mainnet",
        "chunk_producer_kickout_threshold": 90,
        "dynamic_resharding": false,
        "epoch_length": 43200, //  <---------- EPOCH duration in seconds
        "fishermen_threshold": "340282366920938463463374607431768211455",
        "gas_limit": 1000000000000000,
        "gas_price_adjustment_rate": [
            1,
            100
        ],
        "genesis_height": 9820210,
        "genesis_time": "2020-07-21T16:55:51.591948Z",
        "max_gas_price": "10000000000000000000000",
        "max_inflation_rate": [
            0,
            1
        ],
        // ---- snip ----
}

最后

以上就是昏睡猎豹为你收集整理的NEAR官方文档翻译(四)基础(Basics)- EpochEpoch的全部内容,希望文章能够帮你解决NEAR官方文档翻译(四)基础(Basics)- EpochEpoch所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(44)

评论列表共有 0 条评论

立即
投稿
返回
顶部