mainnet、alphanet、zeronetの違いは何ですか?
2 回答
- 投票
-
- 2019-01-30
2つのテストネットワークは異なる速度で移動します. Zeronetはalphanetよりもはるかに高速です.これにより、ベーキングなどのさまざまなシナリオをテストする速度に違いが生じます.
- zeronetでは、各サイクルは128ブロックであり、各ブロックの目標時間は20秒です.したがって、各サイクルは約42.66分で完了するはずですが、パン屋がブロックを見逃すとさらに時間がかかる場合があります.
- alphanetでは、各サイクルは2048ブロックであり、各ブロックの目標時間は30秒です.したがって、各サイクルは約17.06時間で完了するはずです.
ベイク権は特定のサイクル中に取得されたスナップショットによって決定され、現在のサイクル+ 5サイクル(ゼロネットの場合)または現在のサイクル+ 7サイクル(アルファネットの場合)で使用されるため、これは必要な時間を意味しますベーキングを待つのは、ゼロネットよりもアルファネットの方がはるかに長くなります.
- alphanetでは、蛇口からテズを取得してすぐに自分に委任すると、約5日でベーキング権が付与されます(標準のブロック時間は4.97).
- zeronetでは、委任後、約3.55時間でベーキング権が付与されます.
したがって、ベーキングを非常に迅速にテストしたい場合は、zeronetでテストすることをお勧めしますが、長期間のベーキングをテストしたい場合は、alphanetでテストできます.
両方のネットワークの蛇口は同じです: https://faucet.tzalpha.net/ --tez蛇口から得たものは両方のネットワークで機能します.
プロトコルの修正(投票)は、サイクルタイムが長いほどテストが容易になるため、最初にalphanetでテストされます.
The two test networks move at different speeds. Zeronet is much faster than alphanet. This makes a difference in how quickly you can test different scenarios like baking.
- In zeronet, each cycle is 128 blocks, and each block has a target time of 20 seconds. So, each cycle should complete in roughly 42.66 minutes, although they may take longer if bakers miss blocks.
- In alphanet, each cycle is 2048 blocks, and each block has a target time of 30 seconds. So, each cycle should complete in roughly 17.06 hours.
Since baking rights are determined by a snapshot taken during a given cycle, and are used in current cycle + 5 cycles (for zeronet) or current cycle + 7 cycles (for alphanet), this means that the amount of time you need to wait to bake is much longer in alphanet than zeronet.
- In alphanet, if you get some tez from the faucet and delegate to yourself immediately, you will have baking rights in about 5 days (4.97 given standard block times).
- In zeronet, after delegation, you will have baking rights in about 3.55 hours.
So, if you want to test baking very quickly, I would recommend testing in zeronet, but if you want to test longer term baking, you can test in alphanet.
The faucet for both networks is the same: https://faucet.tzalpha.net/ - tez that you get from the faucet will work on both networks.
Protocol amendments (voting) will be tested on alphanet first, as the longer cycle time makes it easier to test.
-
- 2019-01-30
- Alphanetは、チェーン上の のtezosユーザーと開発者向けのテストネットワークです.
メインネットの正確なコードを実行します.より速く実行するために、いくつかの定数が異なるだけです.現在:
time_between_block/2
、blocks_per_cycle/2
、blocks_per_voting_period/4
、...これはハードワイヤーしないでくださいコード内の定数は変更される可能性があります! :-)- Zeronetは、チェーンとそのエコシステムの のtezos開発者向けのテストネットワークです.
リポジトリ
masterブランチに可能な限り近い最先端のコードを実行します/tezos "rel="noreferrer "> https://gitlab.com/tezos/tezos . - Alphanet is the test network for tezos users and developers on the chain.
It runs the exact code of mainnet. It only differs by a few constants to run faster. Currently:
time_between_block/2
,blocks_per_cycle/2
,blocks_per_voting_period/4
, ... This is also meant to enforce Do not hardwire constants in your code, they may change! :-)- Zeronet is the test network for tezos developers of the chain and its ecosystem.
It runs a cutting edge code as close as possible to what is the
master
branch of the repository https://gitlab.com/tezos/tezos .
特に、alphanetはテストネットワークとしてのzeronetとどのように異なりますか?