dsa-connect 0.5.8 → 0.5.10
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/index.d.ts +1 -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
|
};
|
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>;
|