dsa-connect 0.6.38-beta.13 → 0.6.38-beta.14

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.
@@ -4,6 +4,8 @@ import { Spells } from './spells';
4
4
  declare type EncodeAbiParams = {
5
5
  spells: Spells;
6
6
  origin?: string;
7
+ version?: 1 | 2;
8
+ to?: string;
7
9
  } & Pick<TransactionConfig, 'to'>;
8
10
  export declare class CastHelpers {
9
11
  private dsa;
package/dist/dsa.d.ts CHANGED
@@ -118,6 +118,8 @@ export declare class DSA {
118
118
  encodeCastABI: (params: Spells | ({
119
119
  spells: Spells;
120
120
  origin?: string | undefined;
121
+ version?: 1 | 2 | undefined;
122
+ to?: string | undefined;
121
123
  } & Pick<TransactionConfig, "to">)) => string;
122
124
  estimateCastGas: (params: {
123
125
  spells: Spells;