-
Notifications
You must be signed in to change notification settings - Fork 235
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[WIP] feat: Secondary miner issurance, split DAO as a separate contract
- Loading branch information
Showing
42 changed files
with
759 additions
and
540 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,28 @@ | ||
# Generated by: ckb cli hashes -b | ||
[ckb_dev] | ||
genesis = "0x7d789ed1c7641670dfb411ff0d220b77b7e95a864d8b7284088660b353122345" | ||
cellbase = "0x606242ae42a472e8d8bc542cc64f8ae0430d948e3efff4e44121f8ae67709671" | ||
genesis = "0xd65a017201803f37d87130a94f9e19abd23369f77ee76a369b4e5040c9a8f50d" | ||
cellbase = "0x54c5775eae546c599c9d9fba797710fc6745feae39742ec7f6b8e939844693be" | ||
|
||
[[ckb_dev.system_cells]] | ||
path = "Bundled(specs/cells/secp256k1_blake160_sighash_all)" | ||
index = 1 | ||
code_hash = "0x94334bdda40b69bae067d84937aa6bbccf8acd0df6626d4b9ac70d4612a11933" | ||
code_hash = "0x12ddb0d38e1ccd9f773d5f0f2fd063602205815e7bd80b19661e56874f9cb6a0" | ||
|
||
[[ckb_dev.system_cells]] | ||
path = "Bundled(specs/cells/dao)" | ||
index = 2 | ||
code_hash = "0x0fe8ddd199ba79bddfe59af415b656844b8642a1fb0e6ae839e08445973e037b" | ||
|
||
[ckb_testnet] | ||
genesis = "0x742dcb9baa4d31a5440c00849da0ca0b429e0df4061b1d8ad11847160ba7d6c5" | ||
cellbase = "0xfae4d4b63827e1cad8f4279f0b8032f4869725c223e287a8fd8164a80e5f5e86" | ||
genesis = "0x35b42bbe6ec7dfc45fbb6bfd003e9f3b810093bd380787cdb2cfc7f4b6487fd4" | ||
cellbase = "0xcc914ee3eef6648ba6050f3fd32aba6bbdb0c197ce82ddbed015141bba899a9d" | ||
|
||
[[ckb_testnet.system_cells]] | ||
path = "Bundled(specs/cells/secp256k1_blake160_sighash_all)" | ||
index = 1 | ||
code_hash = "0x94334bdda40b69bae067d84937aa6bbccf8acd0df6626d4b9ac70d4612a11933" | ||
code_hash = "0x12ddb0d38e1ccd9f773d5f0f2fd063602205815e7bd80b19661e56874f9cb6a0" | ||
|
||
[[ckb_testnet.system_cells]] | ||
path = "Bundled(specs/cells/dao)" | ||
index = 2 | ||
code_hash = "0x0fe8ddd199ba79bddfe59af415b656844b8642a1fb0e6ae839e08445973e037b" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -47,6 +47,7 @@ table Header { | |
uncles_hash: H256; | ||
uncles_count: uint32; | ||
epoch: uint64; | ||
dao: Bytes; | ||
} | ||
|
||
table Block { | ||
|
Oops, something went wrong.