-
Notifications
You must be signed in to change notification settings - Fork 92
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #159 from balancer-labs/develop
v0.1.26
- Loading branch information
Showing
9 changed files
with
217 additions
and
41 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,68 @@ | ||
// 0x97207B095e4D5C9a6e4cfbfcd2C3358E03B90c4A | ||
|
||
import { Interface } from '@ethersproject/abi'; | ||
import { Provider } from '@ethersproject/providers'; | ||
import { Contract } from '@ethersproject/contracts'; | ||
import { formatUnits } from '@ethersproject/units'; | ||
import { Multicall } from '@/modules/contracts/multicall'; | ||
|
||
const iProtocolFeePercentagesProvider = new Interface([ | ||
'function getSwapFeePercentage() view returns (uint)', | ||
]); | ||
|
||
export interface ProtocolFees { | ||
swapFee: number; | ||
yieldFee: number; | ||
} | ||
|
||
// Using singleton here, so subsequent calls will return the same promise | ||
let feesPromise: Promise<ProtocolFees>; | ||
|
||
export class ProtocolFeesProvider { | ||
multicall: Contract; | ||
protocolFees?: ProtocolFees; | ||
|
||
constructor( | ||
multicallAddress: string, | ||
private protocolFeePercentagesProviderAddress: string, | ||
provider: Provider | ||
) { | ||
this.multicall = Multicall(multicallAddress, provider); | ||
} | ||
|
||
private async fetch(): Promise<ProtocolFees> { | ||
const payload = [ | ||
[ | ||
this.protocolFeePercentagesProviderAddress, | ||
iProtocolFeePercentagesProvider.encodeFunctionData( | ||
'getFeeTypePercentage', | ||
[0] | ||
), | ||
], | ||
[ | ||
this.protocolFeePercentagesProviderAddress, | ||
iProtocolFeePercentagesProvider.encodeFunctionData( | ||
'getFeeTypePercentage', | ||
[2] | ||
), | ||
], | ||
]; | ||
const [, res] = await this.multicall.aggregate(payload); | ||
|
||
const fees = { | ||
swapFee: parseFloat(formatUnits(res[0], 18)), | ||
yieldFee: parseFloat(formatUnits(res[2], 18)), | ||
}; | ||
|
||
return fees; | ||
} | ||
|
||
async getFees(): Promise<ProtocolFees> { | ||
if (!feesPromise) { | ||
feesPromise = this.fetch(); | ||
} | ||
this.protocolFees = await feesPromise; | ||
|
||
return this.protocolFees; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters