@pendle/core-v2 5.8.0-bera → 5.8.0

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.
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "@pendle/core-v2",
3
3
  "description": "Core smart contracts of Pendle Protocol.",
4
4
  "license": "BUSL-1.1",
5
- "version": "5.8.0-bera",
5
+ "version": "5.8.0",
6
6
  "homepage": "https://pendle.finance",
7
7
  "keywords": [
8
8
  "pendle",
@@ -0,0 +1,57 @@
1
+ /* Autogenerated file. Do not edit manually. */
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+ import { BaseContract, Signer, utils } from "ethers";
5
+
6
+ import { Listener, Provider } from "@ethersproject/providers";
7
+ import type {
8
+ TypedEventFilter,
9
+ TypedEvent,
10
+ TypedListener,
11
+ OnEvent,
12
+ } from "./common";
13
+
14
+ export interface SDKErrorsDirectoryInterface extends utils.Interface {
15
+ contractName: "SDKErrorsDirectory";
16
+ functions: {};
17
+
18
+ events: {};
19
+ }
20
+
21
+ export interface SDKErrorsDirectory extends BaseContract {
22
+ contractName: "SDKErrorsDirectory";
23
+ connect(signerOrProvider: Signer | Provider | string): this;
24
+ attach(addressOrName: string): this;
25
+ deployed(): Promise<this>;
26
+
27
+ interface: SDKErrorsDirectoryInterface;
28
+
29
+ queryFilter<TEvent extends TypedEvent>(
30
+ event: TypedEventFilter<TEvent>,
31
+ fromBlockOrBlockhash?: string | number | undefined,
32
+ toBlock?: string | number | undefined
33
+ ): Promise<Array<TEvent>>;
34
+
35
+ listeners<TEvent extends TypedEvent>(
36
+ eventFilter?: TypedEventFilter<TEvent>
37
+ ): Array<TypedListener<TEvent>>;
38
+ listeners(eventName?: string): Array<Listener>;
39
+ removeAllListeners<TEvent extends TypedEvent>(
40
+ eventFilter: TypedEventFilter<TEvent>
41
+ ): this;
42
+ removeAllListeners(eventName?: string): this;
43
+ off: OnEvent<this>;
44
+ on: OnEvent<this>;
45
+ once: OnEvent<this>;
46
+ removeListener: OnEvent<this>;
47
+
48
+ functions: {};
49
+
50
+ callStatic: {};
51
+
52
+ filters: {};
53
+
54
+ estimateGas: {};
55
+
56
+ populateTransaction: {};
57
+ }