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.
@@ -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
  };
@@ -0,0 +1,2 @@
1
+ import { AbiItem } from 'web3-utils';
2
+ export declare const ETHERFI_MINT_A: AbiItem[];
@@ -0,0 +1,2 @@
1
+ import { AbiItem } from 'web3-utils';
2
+ export declare const SPK_CLAIM_A: AbiItem[];
@@ -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
  };
@@ -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
  };
@@ -316,6 +316,8 @@ export declare const Addresses: {
316
316
  'SPARK-PSM-A': string;
317
317
  'MORPHO-CLAIM-A': string;
318
318
  'AAVE-V3-MERIT-CLAIM-A': string;
319
+ 'ETHERFI-MINT-A': string;
320
+ 'SPK-CLAIM-A': string;
319
321
  };
320
322
  };
321
323
  };
@@ -129,4 +129,6 @@ export declare const connectorsV2_M1: {
129
129
  'SPARK-PSM-A': string;
130
130
  'MORPHO-CLAIM-A': string;
131
131
  'AAVE-V3-MERIT-CLAIM-A': string;
132
+ 'ETHERFI-MINT-A': string;
133
+ 'SPK-CLAIM-A': string;
132
134
  };
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
  */