Skip to content

Commit

Permalink
feat(relayer): bindings updates for relayer, gp, eventindexer (#17312)
Browse files Browse the repository at this point in the history
Co-authored-by: David <[email protected]>
  • Loading branch information
cyberhorsey and davidtaikocha authored May 24, 2024
1 parent 7945142 commit 3830805
Show file tree
Hide file tree
Showing 25 changed files with 1,104 additions and 710 deletions.
40 changes: 38 additions & 2 deletions packages/eventindexer/SgxVerifier.json
Original file line number Diff line number Diff line change
Expand Up @@ -96,6 +96,32 @@
"outputs": [],
"stateMutability": "nonpayable"
},
{
"type": "function",
"name": "impl",
"inputs": [],
"outputs": [
{
"name": "",
"type": "address",
"internalType": "address"
}
],
"stateMutability": "view"
},
{
"type": "function",
"name": "inNonReentrant",
"inputs": [],
"outputs": [
{
"name": "",
"type": "bool",
"internalType": "bool"
}
],
"stateMutability": "view"
},
{
"type": "function",
"name": "init",
Expand Down Expand Up @@ -750,7 +776,7 @@
{
"name": "replaced",
"type": "address",
"indexed": false,
"indexed": true,
"internalType": "address"
},
{
Expand Down Expand Up @@ -858,6 +884,11 @@
],
"anonymous": false
},
{
"type": "error",
"name": "FUNC_NOT_IMPLEMENTED",
"inputs": []
},
{
"type": "error",
"name": "INVALID_PAUSE_STATUS",
Expand Down Expand Up @@ -926,7 +957,12 @@
},
{
"type": "error",
"name": "ZERO_ADDR_MANAGER",
"name": "ZERO_ADDRESS",
"inputs": []
},
{
"type": "error",
"name": "ZERO_VALUE",
"inputs": []
}
]
98 changes: 61 additions & 37 deletions packages/eventindexer/TaikoL1.json
Original file line number Diff line number Diff line change
Expand Up @@ -363,6 +363,32 @@
],
"stateMutability": "view"
},
{
"type": "function",
"name": "impl",
"inputs": [],
"outputs": [
{
"name": "",
"type": "address",
"internalType": "address"
}
],
"stateMutability": "view"
},
{
"type": "function",
"name": "inNonReentrant",
"inputs": [],
"outputs": [
{
"name": "",
"type": "bool",
"internalType": "bool"
}
],
"stateMutability": "view"
},
{
"type": "function",
"name": "init",
Expand All @@ -381,6 +407,11 @@
"name": "_genesisBlockHash",
"type": "bytes32",
"internalType": "bytes32"
},
{
"name": "_toPause",
"type": "bool",
"internalType": "bool"
}
],
"outputs": [],
Expand Down Expand Up @@ -621,6 +652,19 @@
"outputs": [],
"stateMutability": "nonpayable"
},
{
"type": "function",
"name": "resetGenesisHash",
"inputs": [
{
"name": "_genesisBlockHash",
"type": "bytes32",
"internalType": "bytes32"
}
],
"outputs": [],
"stateMutability": "nonpayable"
},
{
"type": "function",
"name": "resolve",
Expand Down Expand Up @@ -1263,36 +1307,6 @@
],
"anonymous": false
},
{
"type": "event",
"name": "EthDeposited",
"inputs": [
{
"name": "deposit",
"type": "tuple",
"indexed": false,
"internalType": "struct TaikoData.EthDeposit",
"components": [
{
"name": "recipient",
"type": "address",
"internalType": "address"
},
{
"name": "amount",
"type": "uint96",
"internalType": "uint96"
},
{
"name": "id",
"type": "uint64",
"internalType": "uint64"
}
]
}
],
"anonymous": false
},
{
"type": "event",
"name": "Initialized",
Expand Down Expand Up @@ -1750,6 +1764,11 @@
"name": "ETH_TRANSFER_FAILED",
"inputs": []
},
{
"type": "error",
"name": "FUNC_NOT_IMPLEMENTED",
"inputs": []
},
{
"type": "error",
"name": "INVALID_PAUSE_STATUS",
Expand Down Expand Up @@ -1932,32 +1951,32 @@
},
{
"type": "error",
"name": "L1_MISSING_VERIFIER",
"name": "L1_NOT_ASSIGNED_PROVER",
"inputs": []
},
{
"type": "error",
"name": "L1_MISSING_VERIFIER",
"name": "L1_NOT_ASSIGNED_PROVER",
"inputs": []
},
{
"type": "error",
"name": "L1_NOT_ASSIGNED_PROVER",
"name": "L1_PROVING_PAUSED",
"inputs": []
},
{
"type": "error",
"name": "L1_NOT_ASSIGNED_PROVER",
"name": "L1_RECEIVE_DISABLED",
"inputs": []
},
{
"type": "error",
"name": "L1_PROVING_PAUSED",
"name": "L1_TOO_LATE",
"inputs": []
},
{
"type": "error",
"name": "L1_RECEIVE_DISABLED",
"name": "L1_TOO_LATE",
"inputs": []
},
{
Expand Down Expand Up @@ -2058,7 +2077,12 @@
},
{
"type": "error",
"name": "ZERO_ADDR_MANAGER",
"name": "ZERO_ADDRESS",
"inputs": []
},
{
"type": "error",
"name": "ZERO_VALUE",
"inputs": []
}
]
Loading

0 comments on commit 3830805

Please sign in to comment.