Skip to content

Commit

Permalink
Update lynx alpha-13 root registry based on update made on Goerli to …
Browse files Browse the repository at this point in the history
…use MockPolygonRoot instead of LynxRootApplication.
  • Loading branch information
derekpierre committed Sep 26, 2023
1 parent 580a221 commit 5481007
Showing 1 changed file with 89 additions and 2 deletions.
91 changes: 89 additions & 2 deletions deployment/artifacts/lynx/lynx-alpha-13-root-registry.json
Original file line number Diff line number Diff line change
Expand Up @@ -2007,9 +2007,9 @@
]
],
[
"LynxMockTACoChildApplication",
"MockPolygonRoot",
"v0.0.0",
"0xb5841C2707De89e6F64c1a8b9F4c2fe4d399a51a",
"0x49e3973596522DD789d8D8dc9DA62e8580701e37",
[
{
"type": "constructor",
Expand All @@ -2022,6 +2022,25 @@
}
]
},
{
"type": "event",
"name": "AuthorizationUpdated",
"inputs": [
{
"name": "stakingProvider",
"type": "address",
"internalType": "address",
"indexed": true
},
{
"name": "amount",
"type": "uint96",
"internalType": "uint96",
"indexed": false
}
],
"anonymous": false
},
{
"type": "event",
"name": "OperatorConfirmed",
Expand All @@ -2041,6 +2060,25 @@
],
"anonymous": false
},
{
"type": "event",
"name": "OperatorUpdated",
"inputs": [
{
"name": "stakingProvider",
"type": "address",
"internalType": "address",
"indexed": true
},
{
"name": "operator",
"type": "address",
"internalType": "address",
"indexed": true
}
],
"anonymous": false
},
{
"type": "event",
"name": "OwnershipTransferred",
Expand Down Expand Up @@ -2106,6 +2144,19 @@
}
]
},
{
"type": "function",
"name": "setRootApplication",
"stateMutability": "nonpayable",
"inputs": [
{
"name": "application",
"type": "address",
"internalType": "contract ITACoChildToRoot"
}
],
"outputs": []
},
{
"type": "function",
"name": "transferOwnership",
Expand All @@ -2118,6 +2169,42 @@
}
],
"outputs": []
},
{
"type": "function",
"name": "updateAuthorization",
"stateMutability": "nonpayable",
"inputs": [
{
"name": "stakingProvider",
"type": "address",
"internalType": "address"
},
{
"name": "amount",
"type": "uint96",
"internalType": "uint96"
}
],
"outputs": []
},
{
"type": "function",
"name": "updateOperator",
"stateMutability": "nonpayable",
"inputs": [
{
"name": "stakingProvider",
"type": "address",
"internalType": "address"
},
{
"name": "operator",
"type": "address",
"internalType": "address"
}
],
"outputs": []
}
]
]
Expand Down

0 comments on commit 5481007

Please sign in to comment.