dsa-connect 0.5.8 → 0.5.12
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/dist/abi/connectors/index.d.ts +2 -0
- package/dist/abi/connectors/v2/WAVAX-A.d.ts +2 -0
- package/dist/abi/connectors/v2/WMATIC-A.d.ts +2 -0
- package/dist/abi/connectors/v2/index.d.ts +2 -0
- package/dist/abi/index.d.ts +2 -0
- package/dist/addresses/avalanche/connectorsV2_M1.d.ts +1 -0
- package/dist/addresses/index.d.ts +4 -0
- package/dist/addresses/mainnet/connectorsV2_M1.d.ts +2 -0
- package/dist/addresses/polygon/connectorsV2_M1.d.ts +1 -0
- package/dist/dsa.d.ts +8 -7
- package/dist/index.bundle.js +2 -2
- package/dist/index.es.js +2 -2
- package/dist/index.js +2 -2
- package/package.json +3 -2
|
@@ -59,6 +59,8 @@ export declare const connectors: {
|
|
|
59
59
|
"MAKERDAO-CLAIM-A": import("web3-utils").AbiItem[];
|
|
60
60
|
"INTEROP-A": import("web3-utils").AbiItem[];
|
|
61
61
|
"INTEROP-STAGING-A": import("web3-utils").AbiItem[];
|
|
62
|
+
"WMATIC-A": import("web3-utils").AbiItem[];
|
|
63
|
+
"WAVAX-A": import("web3-utils").AbiItem[];
|
|
62
64
|
};
|
|
63
65
|
};
|
|
64
66
|
};
|
|
@@ -51,4 +51,6 @@ export declare const connectorsV2_M1: {
|
|
|
51
51
|
"MAKERDAO-CLAIM-A": import("web3-utils").AbiItem[];
|
|
52
52
|
"INTEROP-A": import("web3-utils").AbiItem[];
|
|
53
53
|
"INTEROP-STAGING-A": import("web3-utils").AbiItem[];
|
|
54
|
+
"WMATIC-A": import("web3-utils").AbiItem[];
|
|
55
|
+
"WAVAX-A": import("web3-utils").AbiItem[];
|
|
54
56
|
};
|
package/dist/abi/index.d.ts
CHANGED
|
@@ -57,6 +57,8 @@ export declare const Abi: {
|
|
|
57
57
|
"MAKERDAO-CLAIM-A": import("web3-utils").AbiItem[];
|
|
58
58
|
"INTEROP-A": import("web3-utils").AbiItem[];
|
|
59
59
|
"INTEROP-STAGING-A": import("web3-utils").AbiItem[];
|
|
60
|
+
"WMATIC-A": import("web3-utils").AbiItem[];
|
|
61
|
+
"WAVAX-A": import("web3-utils").AbiItem[];
|
|
60
62
|
};
|
|
61
63
|
};
|
|
62
64
|
};
|
|
@@ -174,6 +174,8 @@ export declare const Addresses: {
|
|
|
174
174
|
"COMPOUND-IMPORT-C": string;
|
|
175
175
|
"AAVE-V2-IMPORT-C": string;
|
|
176
176
|
"INSTAPOOL-C": string;
|
|
177
|
+
"INTEROP-A": string;
|
|
178
|
+
"INTEROP-STAGING-A": string;
|
|
177
179
|
};
|
|
178
180
|
};
|
|
179
181
|
};
|
|
@@ -201,6 +203,7 @@ export declare const Addresses: {
|
|
|
201
203
|
"INTEROP-A": string;
|
|
202
204
|
"INTEROP-STAGING-A": string;
|
|
203
205
|
"INSTAPOOL-C": string;
|
|
206
|
+
"WMATIC-A": string;
|
|
204
207
|
};
|
|
205
208
|
};
|
|
206
209
|
};
|
|
@@ -227,6 +230,7 @@ export declare const Addresses: {
|
|
|
227
230
|
"WAVAX-A": string;
|
|
228
231
|
"AAVE-V2-A": string;
|
|
229
232
|
"AAVE-CLAIM-A": string;
|
|
233
|
+
"AAVE-V2-IMPORT-C": string;
|
|
230
234
|
"PARASWAP-A": string;
|
|
231
235
|
"BENQI-A": string;
|
|
232
236
|
"QI-A": string;
|
package/dist/dsa.d.ts
CHANGED
|
@@ -56,6 +56,7 @@ declare type BuildParams = {
|
|
|
56
56
|
version?: Instance['version'];
|
|
57
57
|
} & TransactionCallbacks & Pick<TransactionConfig, 'from' | 'gas' | 'gasPrice' | 'nonce'>;
|
|
58
58
|
export declare class DSA {
|
|
59
|
+
static readonly version: string;
|
|
59
60
|
readonly config: DSAConfig;
|
|
60
61
|
get web3(): Web3;
|
|
61
62
|
get mode(): "node" | "simulation" | "browser" | undefined;
|
|
@@ -155,20 +156,20 @@ export declare class DSA {
|
|
|
155
156
|
* ```
|
|
156
157
|
*/
|
|
157
158
|
Spell(): {
|
|
158
|
-
cast: (params?:
|
|
159
|
-
estimateCastGas: (params?:
|
|
159
|
+
cast: (params?: Omit<CastParams, "spells"> | undefined) => Promise<string | undefined>;
|
|
160
|
+
estimateCastGas: (params?: Omit<(params: {
|
|
160
161
|
spells: Spells;
|
|
161
|
-
} & Pick<TransactionConfig, "from" | "to" | "value">) => Promise<number>,
|
|
162
|
-
encodeCastABI: (params?:
|
|
162
|
+
} & Pick<TransactionConfig, "from" | "to" | "value">) => Promise<number>, "spells"> | undefined) => Promise<number | undefined>;
|
|
163
|
+
encodeCastABI: (params?: Omit<(params: Spells | ({
|
|
163
164
|
spells: Spells;
|
|
164
165
|
origin?: string | undefined;
|
|
165
|
-
} & Pick<TransactionConfig, "to">)) => string,
|
|
166
|
-
encodeSpells: (params?:
|
|
166
|
+
} & Pick<TransactionConfig, "to">)) => string, "spells"> | undefined) => Promise<string | undefined>;
|
|
167
|
+
encodeSpells: (params?: Omit<(params: Spells | {
|
|
167
168
|
spells: Spells;
|
|
168
169
|
}, version?: 1 | 2) => {
|
|
169
170
|
targets: (string | void)[];
|
|
170
171
|
spells: string[];
|
|
171
|
-
},
|
|
172
|
+
}, "spells"> | undefined) => Promise<{
|
|
172
173
|
targets: (string | void)[];
|
|
173
174
|
spells: string[];
|
|
174
175
|
} | undefined>;
|