dsa-connect 0.7.28 → 0.7.31
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/ETHERFI-MINT-A.d.ts +2 -0
- package/dist/abi/connectors/v2/SPK-CLAIM-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 +2 -0
- package/dist/addresses/mainnet/connectorsV2_M1.d.ts +2 -0
- package/dist/dsa.d.ts +4 -1
- package/dist/index.bundle.js +2 -2
- package/dist/index.es.js +2 -2
- package/dist/index.js +2 -2
- package/package.json +1 -1
|
@@ -156,6 +156,8 @@ export declare const connectors: {
|
|
|
156
156
|
'SUSDS-A': import("web3-utils").AbiItem[];
|
|
157
157
|
'AAVE-V3-MERIT-CLAIM-A': import("web3-utils").AbiItem[];
|
|
158
158
|
'DELEGATE-A': import("web3-utils").AbiItem[];
|
|
159
|
+
'ETHERFI-MINT-A': import("web3-utils").AbiItem[];
|
|
160
|
+
'SPK-CLAIM-A': import("web3-utils").AbiItem[];
|
|
159
161
|
};
|
|
160
162
|
};
|
|
161
163
|
};
|
|
@@ -148,4 +148,6 @@ export declare const connectorsV2_M1: {
|
|
|
148
148
|
'SUSDS-A': import("web3-utils").AbiItem[];
|
|
149
149
|
'AAVE-V3-MERIT-CLAIM-A': import("web3-utils").AbiItem[];
|
|
150
150
|
'DELEGATE-A': import("web3-utils").AbiItem[];
|
|
151
|
+
'ETHERFI-MINT-A': import("web3-utils").AbiItem[];
|
|
152
|
+
'SPK-CLAIM-A': import("web3-utils").AbiItem[];
|
|
151
153
|
};
|
package/dist/abi/index.d.ts
CHANGED
|
@@ -154,6 +154,8 @@ export declare const Abi: {
|
|
|
154
154
|
'SUSDS-A': import("web3-utils").AbiItem[];
|
|
155
155
|
'AAVE-V3-MERIT-CLAIM-A': import("web3-utils").AbiItem[];
|
|
156
156
|
'DELEGATE-A': import("web3-utils").AbiItem[];
|
|
157
|
+
'ETHERFI-MINT-A': import("web3-utils").AbiItem[];
|
|
158
|
+
'SPK-CLAIM-A': import("web3-utils").AbiItem[];
|
|
157
159
|
};
|
|
158
160
|
};
|
|
159
161
|
};
|
package/dist/dsa.d.ts
CHANGED
|
@@ -77,6 +77,9 @@ declare type BuildParams = {
|
|
|
77
77
|
origin?: string;
|
|
78
78
|
version?: Instance['version'];
|
|
79
79
|
} & TransactionCallbacks & Pick<TransactionConfig, 'from' | 'gas' | 'gasPrice' | 'maxFeePerGas' | 'maxPriorityFeePerGas' | 'nonce'>;
|
|
80
|
+
declare type Options = {
|
|
81
|
+
skipChainIdValidation?: boolean;
|
|
82
|
+
};
|
|
80
83
|
export declare class DSA {
|
|
81
84
|
static readonly version: string;
|
|
82
85
|
readonly config: DSAConfig;
|
|
@@ -128,7 +131,7 @@ export declare class DSA {
|
|
|
128
131
|
/**
|
|
129
132
|
* @param config A `web3` instance or a DSAConfig
|
|
130
133
|
*/
|
|
131
|
-
constructor(config: Web3 | DSAConfig, chainId?: ChainId);
|
|
134
|
+
constructor(config: Web3 | DSAConfig, chainId?: ChainId, options?: Options);
|
|
132
135
|
/**
|
|
133
136
|
* Sets the current DSA instance.
|
|
134
137
|
*/
|