Skip to content

Commit

Permalink
updated fees
Browse files Browse the repository at this point in the history
  • Loading branch information
BkChoy committed Sep 20, 2023
1 parent 9bc1868 commit 1d549b2
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions scripts/prod/upgrade-contracts.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,8 @@ const operatorVCSImplementation = ''
const delegatorPoolImplementation = ''

const operatorStrategySDLPoolFee = 1500 // basis points fee of rewards to be paid to the SDL pool
const operatorStrategyOperatorFee = 500 // basis point fee of rewards to be paid to operator
const operatorFeeReceiver = '' // adddress to receive operator fee

const delegatorPoolLockedAddresses: any = [
'0x6879826450e576B401c4dDeff2B7755B1e85d97c',
Expand Down Expand Up @@ -87,6 +89,17 @@ async function main() {
).data || '',
value: '0',
},
{
to: operatorVCS.address,
data:
(
await operatorVCS.populateTransaction.addFee(
operatorFeeReceiver,
operatorStrategyOperatorFee
)
).data || '',
value: '0',
},
{
to: delegatorPool.address,
data:
Expand Down

0 comments on commit 1d549b2

Please sign in to comment.