Skip to content

Commit

Permalink
Deploy latest contracts to Lynx and update lynx contract registry.
Browse files Browse the repository at this point in the history
  • Loading branch information
derekpierre committed Apr 16, 2024
1 parent c923625 commit 8771bea
Showing 1 changed file with 129 additions and 2 deletions.
131 changes: 129 additions & 2 deletions deployment/artifacts/lynx.json
Original file line number Diff line number Diff line change
Expand Up @@ -5768,10 +5768,22 @@
"indexed": true
},
{
"name": "amount",
"name": "authorized",
"type": "uint96",
"internalType": "uint96",
"indexed": false
},
{
"name": "deauthorizing",
"type": "uint96",
"internalType": "uint96",
"indexed": false
},
{
"name": "endDeauthorization",
"type": "uint64",
"internalType": "uint64",
"indexed": false
}
],
"anonymous": false
Expand Down Expand Up @@ -5872,6 +5884,64 @@
}
]
},
{
"type": "function",
"name": "eligibleStake",
"stateMutability": "view",
"inputs": [
{
"name": "_stakingProvider",
"type": "address",
"internalType": "address"
},
{
"name": "_endDate",
"type": "uint256",
"internalType": "uint256"
}
],
"outputs": [
{
"name": "",
"type": "uint96",
"internalType": "uint96"
}
]
},
{
"type": "function",
"name": "getActiveStakingProviders",
"stateMutability": "view",
"inputs": [
{
"name": "_startIndex",
"type": "uint256",
"internalType": "uint256"
},
{
"name": "_maxStakingProviders",
"type": "uint256",
"internalType": "uint256"
},
{
"name": "_cohortDuration",
"type": "uint32",
"internalType": "uint32"
}
],
"outputs": [
{
"name": "allAuthorizedTokens",
"type": "uint96",
"internalType": "uint96"
},
{
"name": "activeStakingProviders",
"type": "bytes32[]",
"internalType": "bytes32[]"
}
]
},
{
"type": "function",
"name": "getActiveStakingProviders",
Expand Down Expand Up @@ -5959,6 +6029,25 @@
}
]
},
{
"type": "function",
"name": "pendingAuthorizationDecrease",
"stateMutability": "view",
"inputs": [
{
"name": "_stakingProvider",
"type": "address",
"internalType": "address"
}
],
"outputs": [
{
"name": "",
"type": "uint96",
"internalType": "uint96"
}
]
},
{
"type": "function",
"name": "rootApplication",
Expand Down Expand Up @@ -6003,6 +6092,16 @@
"name": "index",
"type": "uint248",
"internalType": "uint248"
},
{
"name": "deauthorizing",
"type": "uint96",
"internalType": "uint96"
},
{
"name": "endDeauthorization",
"type": "uint64",
"internalType": "uint64"
}
]
},
Expand Down Expand Up @@ -6036,9 +6135,37 @@
"internalType": "address"
},
{
"name": "amount",
"name": "authorized",
"type": "uint96",
"internalType": "uint96"
}
],
"outputs": []
},
{
"type": "function",
"name": "updateAuthorization",
"stateMutability": "nonpayable",
"inputs": [
{
"name": "stakingProvider",
"type": "address",
"internalType": "address"
},
{
"name": "authorized",
"type": "uint96",
"internalType": "uint96"
},
{
"name": "deauthorizing",
"type": "uint96",
"internalType": "uint96"
},
{
"name": "endDeauthorization",
"type": "uint64",
"internalType": "uint64"
}
],
"outputs": []
Expand Down

0 comments on commit 8771bea

Please sign in to comment.