dsa-connect 0.7.28 → 0.7.29
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/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
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
|
*/
|