메인 넷, 알파넷, 제로 넷의 차이점은 무엇입니까?
2 대답
- 투표
-
- 2019-01-30
두 테스트 네트워크는 서로 다른 속도로 이동합니다. Zeronet은 알파넷보다 훨씬 빠릅니다. 따라서 베이킹과 같은 다양한 시나리오를 얼마나 빨리 테스트 할 수 있는지에 차이가 있습니다.
- 제로 넷에서 각주기는 128 개 블록이고 각 블록의 목표 시간은 20 초입니다. 따라서 베이커가 블록을 놓치면 더 오래 걸릴 수 있지만 각 사이클은 약 42.66 분 내에 완료됩니다.
- 알파넷에서 각주기는 2048 개의 블록이고 각 블록의 목표 시간은 30 초입니다. 따라서 각주기는 약 17.06 시간 내에 완료됩니다.
베이킹 권한은 주어진주기 동안 찍은 스냅 샷에 의해 결정되고 현재주기 + 5주기 (zeronet의 경우) 또는 현재주기 + 7주기 (알파넷의 경우)에서 사용되기 때문에 필요한 시간이 베이킹 대기 시간은 제로 넷보다 알파넷에서 훨씬 더 깁니다.
- 알파넷에서 수도꼭지에서 약간의tez를 얻고 즉시 자신에게 위임하면 약 5 일 이내에 베이킹 권한을 갖게됩니다 (표준 블록 시간이 주어진 경우 4.97).
- 제로 넷에서는 위임 후 약 3.55 시간 내에 베이킹 권한을 갖게됩니다.
따라서 베이킹을 매우 빠르게 테스트하려면 제로 넷에서 테스트하는 것이 좋지만 장기간 베이킹을 테스트하려면 알파넷에서 테스트 할 수 있습니다.
두 네트워크의 수도꼭지는 동일합니다. https://faucet.tzalpha.net/-tez 수도꼭지에서 얻은 정보는 두 네트워크 모두에서 작동합니다.
프로토콜 수정 (투표)은주기 시간이 길수록 테스트가 더 쉬워 지므로 알파넷에서 먼저 테스트됩니다.
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은 테 조스 사용자와 체인 에있는 개발자를위한 테스트 네트워크입니다.
메인 넷의 정확한 코드를 실행합니다.더 빨리 실행하려면 몇 가지 상수 만 다릅니다.현재 :
time_between_block/2
,blocks_per_cycle/2
,blocks_per_voting_period/4
,... 이것은 또한 하드 와이어 안 함을 시행하기위한 것입니다.코드의 상수는 변경 될 수 있습니다! :-)- Zeronet은 체인과 생태계의 테 조스 개발자를위한 테스트 네트워크입니다.
- 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 .
특히 알파넷은 테스트 네트워크로서 제로 넷과 어떻게 다릅니 까?