@merkl/contracts 0.1.65 → 0.1.66

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.
@@ -312,6 +312,7 @@ export type { TwyneEulerCollateralVault } from "./TwyneEulerCollateralVault";
312
312
  export { SiloInterface } from "./interfaces/SiloInterface";
313
313
  export { RadiantPoolInterface } from "./interfaces/RadiantPoolInterface";
314
314
  export { RadiantTokenInterface } from "./interfaces/RadiantTokenInterface";
315
+ export { MinterInterface } from "./interfaces/MinterInterface";
315
316
  export { IonicErc20Interface } from "./interfaces/IonicErc20Interface";
316
317
  export { RadiantPoolAddressProviderInterface } from "./interfaces/RadiantPoolAddressProviderInterface";
317
318
  export { LockerInterface } from "./interfaces/LockerInterface";
package/dist/src/index.js CHANGED
@@ -2,6 +2,7 @@ export * from './factories';
2
2
  export { SiloInterface } from "./interfaces/SiloInterface";
3
3
  export { RadiantPoolInterface } from "./interfaces/RadiantPoolInterface";
4
4
  export { RadiantTokenInterface } from "./interfaces/RadiantTokenInterface";
5
+ export { MinterInterface } from "./interfaces/MinterInterface";
5
6
  export { IonicErc20Interface } from "./interfaces/IonicErc20Interface";
6
7
  export { RadiantPoolAddressProviderInterface } from "./interfaces/RadiantPoolAddressProviderInterface";
7
8
  export { LockerInterface } from "./interfaces/LockerInterface";
@@ -0,0 +1,2 @@
1
+ import { Interface } from "@ethersproject/abi";
2
+ export declare const MinterInterface: Interface;
@@ -0,0 +1,4 @@
1
+ import { Interface } from "@ethersproject/abi";
2
+ export const MinterInterface = new Interface([
3
+ "function minter() view returns (address)",
4
+ ]);