@merkl/api 0.10.90 → 0.10.91

Sign up to get free protection for your applications and to get access to all the features.
@@ -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 type { tokenType, tokenTypeStruct } from "./helpers/tokenType";
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>;