@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/build/artifacts/contracts/offchain-helpers/errors/SDKErrorsDirectory.sol/SDKErrorsDirectory.dbg.json +1 -1
- package/build/artifacts/contracts/offchain-helpers/errors/SDKErrorsDirectory.sol/SDKErrorsDirectory.json +1218 -10
- package/contracts/offchain-helpers/errors/SDKErrorsDirectory.sol +210 -0
- package/deployments/80094-core.json +1 -1
- package/deployments/merkle-distribution/2025-02-27.json +29930 -0
- package/package.json +1 -1
- package/typechain-types/SDKErrorsDirectory.ts +57 -0
- package/typechain-types/factories/SDKErrorsDirectory__factory.ts +3907 -0
package/package.json
CHANGED
|
@@ -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
|
+
}
|