generated from foundry-rs/forge-template
-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* copy addresses * add holesky version of tests, currently failing * latest deployment * addresses * wip * restore script to work for local anvil deployment * working deploy_holesky_puffer_protocol.sh and new ABIs/addresses --------- Co-authored-by: JasonVranek <[email protected]>
- Loading branch information
Showing
24 changed files
with
11,841 additions
and
82 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,282 @@ | ||
[ | ||
{ | ||
"type": "constructor", | ||
"inputs": [ | ||
{ | ||
"name": "guardianModule", | ||
"type": "address", | ||
"internalType": "contract IGuardianModule" | ||
}, | ||
{ | ||
"name": "accessManager", | ||
"type": "address", | ||
"internalType": "address" | ||
} | ||
], | ||
"stateMutability": "nonpayable" | ||
}, | ||
{ | ||
"type": "function", | ||
"name": "GUARDIAN_MODULE", | ||
"inputs": [], | ||
"outputs": [ | ||
{ | ||
"name": "", | ||
"type": "address", | ||
"internalType": "contract IGuardianModule" | ||
} | ||
], | ||
"stateMutability": "view" | ||
}, | ||
{ | ||
"type": "function", | ||
"name": "authority", | ||
"inputs": [], | ||
"outputs": [ | ||
{ | ||
"name": "", | ||
"type": "address", | ||
"internalType": "address" | ||
} | ||
], | ||
"stateMutability": "view" | ||
}, | ||
{ | ||
"type": "function", | ||
"name": "getLockedEthAmount", | ||
"inputs": [], | ||
"outputs": [ | ||
{ | ||
"name": "", | ||
"type": "uint256", | ||
"internalType": "uint256" | ||
} | ||
], | ||
"stateMutability": "view" | ||
}, | ||
{ | ||
"type": "function", | ||
"name": "getValidatorTicketPrice", | ||
"inputs": [], | ||
"outputs": [ | ||
{ | ||
"name": "", | ||
"type": "uint256", | ||
"internalType": "uint256" | ||
} | ||
], | ||
"stateMutability": "view" | ||
}, | ||
{ | ||
"type": "function", | ||
"name": "isConsumingScheduledOp", | ||
"inputs": [], | ||
"outputs": [ | ||
{ | ||
"name": "", | ||
"type": "bytes4", | ||
"internalType": "bytes4" | ||
} | ||
], | ||
"stateMutability": "view" | ||
}, | ||
{ | ||
"type": "function", | ||
"name": "isOverBurstThreshold", | ||
"inputs": [], | ||
"outputs": [ | ||
{ | ||
"name": "", | ||
"type": "bool", | ||
"internalType": "bool" | ||
} | ||
], | ||
"stateMutability": "view" | ||
}, | ||
{ | ||
"type": "function", | ||
"name": "lastUpdate", | ||
"inputs": [], | ||
"outputs": [ | ||
{ | ||
"name": "", | ||
"type": "uint256", | ||
"internalType": "uint256" | ||
} | ||
], | ||
"stateMutability": "view" | ||
}, | ||
{ | ||
"type": "function", | ||
"name": "lockedETH", | ||
"inputs": [], | ||
"outputs": [ | ||
{ | ||
"name": "", | ||
"type": "uint256", | ||
"internalType": "uint256" | ||
} | ||
], | ||
"stateMutability": "view" | ||
}, | ||
{ | ||
"type": "function", | ||
"name": "proofOfReserve", | ||
"inputs": [ | ||
{ | ||
"name": "newLockedETH", | ||
"type": "uint256", | ||
"internalType": "uint256" | ||
}, | ||
{ | ||
"name": "blockNumber", | ||
"type": "uint256", | ||
"internalType": "uint256" | ||
}, | ||
{ | ||
"name": "numberOfActivePufferValidators", | ||
"type": "uint256", | ||
"internalType": "uint256" | ||
}, | ||
{ | ||
"name": "totalNumberOfValidators", | ||
"type": "uint256", | ||
"internalType": "uint256" | ||
}, | ||
{ | ||
"name": "guardianSignatures", | ||
"type": "bytes[]", | ||
"internalType": "bytes[]" | ||
} | ||
], | ||
"outputs": [], | ||
"stateMutability": "nonpayable" | ||
}, | ||
{ | ||
"type": "function", | ||
"name": "provisionNode", | ||
"inputs": [], | ||
"outputs": [], | ||
"stateMutability": "nonpayable" | ||
}, | ||
{ | ||
"type": "function", | ||
"name": "setAuthority", | ||
"inputs": [ | ||
{ | ||
"name": "newAuthority", | ||
"type": "address", | ||
"internalType": "address" | ||
} | ||
], | ||
"outputs": [], | ||
"stateMutability": "nonpayable" | ||
}, | ||
{ | ||
"type": "function", | ||
"name": "setMintPrice", | ||
"inputs": [ | ||
{ | ||
"name": "newPrice", | ||
"type": "uint56", | ||
"internalType": "uint56" | ||
} | ||
], | ||
"outputs": [], | ||
"stateMutability": "nonpayable" | ||
}, | ||
{ | ||
"type": "event", | ||
"name": "AuthorityUpdated", | ||
"inputs": [ | ||
{ | ||
"name": "authority", | ||
"type": "address", | ||
"indexed": false, | ||
"internalType": "address" | ||
} | ||
], | ||
"anonymous": false | ||
}, | ||
{ | ||
"type": "event", | ||
"name": "BackingUpdated", | ||
"inputs": [ | ||
{ | ||
"name": "blockNumber", | ||
"type": "uint256", | ||
"indexed": true, | ||
"internalType": "uint256" | ||
}, | ||
{ | ||
"name": "lockedETH", | ||
"type": "uint256", | ||
"indexed": false, | ||
"internalType": "uint256" | ||
} | ||
], | ||
"anonymous": false | ||
}, | ||
{ | ||
"type": "event", | ||
"name": "ValidatorTicketMintPriceUpdated", | ||
"inputs": [ | ||
{ | ||
"name": "oldPrice", | ||
"type": "uint256", | ||
"indexed": false, | ||
"internalType": "uint256" | ||
}, | ||
{ | ||
"name": "newPrice", | ||
"type": "uint256", | ||
"indexed": false, | ||
"internalType": "uint256" | ||
} | ||
], | ||
"anonymous": false | ||
}, | ||
{ | ||
"type": "error", | ||
"name": "AccessManagedInvalidAuthority", | ||
"inputs": [ | ||
{ | ||
"name": "authority", | ||
"type": "address", | ||
"internalType": "address" | ||
} | ||
] | ||
}, | ||
{ | ||
"type": "error", | ||
"name": "AccessManagedRequiredDelay", | ||
"inputs": [ | ||
{ | ||
"name": "caller", | ||
"type": "address", | ||
"internalType": "address" | ||
}, | ||
{ | ||
"name": "delay", | ||
"type": "uint32", | ||
"internalType": "uint32" | ||
} | ||
] | ||
}, | ||
{ | ||
"type": "error", | ||
"name": "AccessManagedUnauthorized", | ||
"inputs": [ | ||
{ | ||
"name": "caller", | ||
"type": "address", | ||
"internalType": "address" | ||
} | ||
] | ||
}, | ||
{ | ||
"type": "error", | ||
"name": "OutsideUpdateWindow", | ||
"inputs": [] | ||
} | ||
] |
Oops, something went wrong.