Skip to content

Commit

Permalink
Fix ABI ordering for lynx registry file - was incorrect due to faulty…
Browse files Browse the repository at this point in the history
… merging after deployment.
  • Loading branch information
derekpierre committed Feb 1, 2024
1 parent 8454991 commit 6ad697f
Showing 1 changed file with 57 additions and 57 deletions.
114 changes: 57 additions & 57 deletions deployment/artifacts/lynx.json
Original file line number Diff line number Diff line change
Expand Up @@ -1138,63 +1138,7 @@
}
]
},
{
"type": "function",
"name": "getParticipants",
"stateMutability": "view",
"inputs": [
{
"internalType": "uint32",
"name": "ritualId",
"type": "uint32"
},
{
"internalType": "uint256",
"name": "startIndex",
"type": "uint256"
},
{
"internalType": "uint256",
"name": "maxParticipants",
"type": "uint256"
},
{
"internalType": "bool",
"name": "includeTranscript",
"type": "bool"
}
],
"outputs": [
{
"components": [
{
"internalType": "address",
"name": "provider",
"type": "address"
},
{
"internalType": "bool",
"name": "aggregated",
"type": "bool"
},
{
"internalType": "bytes",
"name": "transcript",
"type": "bytes"
},
{
"internalType": "bytes",
"name": "decryptionRequestStaticKey",
"type": "bytes"
}
],
"internalType": "struct Coordinator.Participant[]",
"name": "",
"type": "tuple[]"
}
]
},
{
{
"type": "function",
"name": "getParticipantFromProvider",
"stateMutability": "view",
Expand Down Expand Up @@ -1281,6 +1225,62 @@
}
]
},
{
"type": "function",
"name": "getParticipants",
"stateMutability": "view",
"inputs": [
{
"name": "ritualId",
"type": "uint32",
"internalType": "uint32"
},
{
"name": "startIndex",
"type": "uint256",
"internalType": "uint256"
},
{
"name": "maxParticipants",
"type": "uint256",
"internalType": "uint256"
},
{
"name": "includeTranscript",
"type": "bool",
"internalType": "bool"
}
],
"outputs": [
{
"name": "",
"type": "tuple[]",
"components": [
{
"name": "provider",
"type": "address",
"internalType": "address"
},
{
"name": "aggregated",
"type": "bool",
"internalType": "bool"
},
{
"name": "transcript",
"type": "bytes",
"internalType": "bytes"
},
{
"name": "decryptionRequestStaticKey",
"type": "bytes",
"internalType": "bytes"
}
],
"internalType": "struct Coordinator.Participant[]"
}
]
},
{
"type": "function",
"name": "getProviderPublicKey",
Expand Down

0 comments on commit 6ad697f

Please sign in to comment.