Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(relayer): A4 final bindings #14301

Closed
wants to merge 2 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/relayer.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:

# Optional: working directory, useful for monorepos
working-directory: ./packages/relayer
args: --config=.golangci.yml
args: --config=.golangci.yml --timeout=4m

test:
runs-on: ubuntu-latest
Expand Down
21 changes: 13 additions & 8 deletions packages/eventindexer/ProverPool.json
Original file line number Diff line number Diff line change
Expand Up @@ -198,25 +198,25 @@
},
{
"inputs": [],
"name": "MAX_CAPACITY_LOWER_BOUND",
"name": "MAX_NUM_PROVERS",
"outputs": [
{
"internalType": "uint32",
"internalType": "uint256",
"name": "",
"type": "uint32"
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "MAX_NUM_PROVERS",
"name": "MIN_CAPACITY",
"outputs": [
{
"internalType": "uint256",
"internalType": "uint32",
"name": "",
"type": "uint256"
"type": "uint32"
}
],
"stateMutability": "view",
Expand All @@ -237,7 +237,7 @@
},
{
"inputs": [],
"name": "MIN_SLASH_AMOUNT",
"name": "MIN_STAKE_PER_CAPACITY",
"outputs": [
{
"internalType": "uint64",
Expand All @@ -250,7 +250,7 @@
},
{
"inputs": [],
"name": "MIN_STAKE_PER_CAPACITY",
"name": "SLASH_MULTIPLIER",
"outputs": [
{
"internalType": "uint64",
Expand Down Expand Up @@ -624,6 +624,11 @@
"internalType": "address",
"name": "addr",
"type": "address"
},
{
"internalType": "uint64",
"name": "proofReward",
"type": "uint64"
}
],
"name": "slashProver",
Expand Down
24 changes: 22 additions & 2 deletions packages/eventindexer/TaikoL1.json
Original file line number Diff line number Diff line change
Expand Up @@ -166,6 +166,16 @@
"name": "L1_NOT_SPECIAL_PROVER",
"type": "error"
},
{
"inputs": [],
"name": "L1_PERMISSION_DENIED",
"type": "error"
},
{
"inputs": [],
"name": "L1_PERMISSION_DENIED",
"type": "error"
},
{
"inputs": [],
"name": "L1_SAME_PROOF",
Expand Down Expand Up @@ -1041,6 +1051,11 @@
"name": "proofMaxWindow",
"type": "uint16"
},
{
"internalType": "uint16",
"name": "proofWindowMultiplier",
"type": "uint16"
},
{
"internalType": "uint256",
"name": "ethDepositRingBufferSize",
Expand Down Expand Up @@ -1082,9 +1097,14 @@
"type": "uint8"
},
{
"internalType": "uint256",
"internalType": "uint32",
"name": "rewardOpenMaxCount",
"type": "uint256"
"type": "uint32"
},
{
"internalType": "uint32",
"name": "rewardMaxDelayPenalty",
"type": "uint32"
}
],
"internalType": "struct TaikoData.Config",
Expand Down
2 changes: 1 addition & 1 deletion packages/eventindexer/contracts/bridge/Bridge.go

Large diffs are not rendered by default.

130 changes: 65 additions & 65 deletions packages/eventindexer/contracts/proverpool/ProverPool.go

Large diffs are not rendered by default.

12 changes: 7 additions & 5 deletions packages/eventindexer/contracts/taikol1/TaikoL1.go

Large diffs are not rendered by default.

Loading
Loading