@merkl/api 0.10.90 → 0.10.91
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -46,7 +46,8 @@ export declare enum tokenType {
|
|
46
46
|
zerolend_lending = "zerolend_lending",
|
47
47
|
ironclad_lending = "ironclad_lending",
|
48
48
|
ironclad_borrowing = "ironclad_borrowing",
|
49
|
-
pendle = "pendle"
|
49
|
+
pendle = "pendle",
|
50
|
+
ironcladStaking = "ironcladStaking"
|
50
51
|
}
|
51
52
|
export declare const tokenTypeToProtocol: {
|
52
53
|
[key in tokenType]: {
|
@@ -1,4 +1,4 @@
|
|
1
1
|
import type { Pricer } from "../../../../utils/pricer";
|
2
2
|
import type { Campaign, CampaignParameters } from "@sdk";
|
3
|
-
import
|
3
|
+
import { tokenType, type tokenTypeStruct } from "./helpers/tokenType";
|
4
4
|
export declare function getTokenPricesInfo(index: number, type: tokenType, typeInfo: any, calls: string[], campaign: CampaignParameters<Campaign.ERC20> | CampaignParameters<Campaign.EULER>, pricer: Pricer): Promise<tokenTypeStruct>;
|