Skip to content

Commit

Permalink
chore(genesis): allocate balance to ipgraph precompiled contracts (#266)
Browse files Browse the repository at this point in the history
Allocate 1 wei balance to the precompiled contracts:
0x0100: p256Verify
0x0101: ipgraph

issue: none
  • Loading branch information
kingster-will authored Oct 21, 2024
1 parent f79d6f4 commit 1a568a0
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion contracts/script/GenerateAlloc.s.sol
Original file line number Diff line number Diff line change
Expand Up @@ -341,8 +341,10 @@ contract GenerateAlloc is Script {
vm.deal(0x0000000000000000000000000000000000000007, 1);
vm.deal(0x0000000000000000000000000000000000000008, 1);
vm.deal(0x0000000000000000000000000000000000000009, 1);
// p256 verification precompile
vm.deal(0x0000000000000000000000000000000000000100, 1);
// Story's IPGraph precompile
vm.deal(0x000000000000000000000000000000000000001a, 1);
vm.deal(0x0000000000000000000000000000000000000101, 1);
// Allocation
if (block.chainid == MAINNET_CHAIN_ID) {
// TBD
Expand Down

0 comments on commit 1a568a0

Please sign in to comment.