Skip to content

Commit

Permalink
Latest holesky (#173)
Browse files Browse the repository at this point in the history
* 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
bxmmm1 and JasonVranek authored Feb 22, 2024
1 parent 737fcbe commit 4cd6dde
Show file tree
Hide file tree
Showing 24 changed files with 11,841 additions and 82 deletions.
690 changes: 690 additions & 0 deletions anvil-ABIs/GuardianModule.json

Large diffs are not rendered by default.

641 changes: 641 additions & 0 deletions anvil-ABIs/NoRestakingModule.json

Large diffs are not rendered by default.

282 changes: 282 additions & 0 deletions anvil-ABIs/PufferOracle.json
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": []
}
]
Loading

0 comments on commit 4cd6dde

Please sign in to comment.