@myx-trade/sdk 1.0.8-beta.3 → 1.0.8-beta.5

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/index.d.mts CHANGED
@@ -2124,6 +2124,12 @@ declare class Seamless {
2124
2124
  r: `0x${string}`;
2125
2125
  s: `0x${string}`;
2126
2126
  }[]>;
2127
+ getForwardEip712Domain(chainId: number): Promise<{
2128
+ name: any;
2129
+ version: any;
2130
+ chainId: any;
2131
+ verifyingContract: any;
2132
+ }>;
2127
2133
  forwarderTx({ from, to, value, gas, deadline, data, nonce, forwardFeeToken, }: {
2128
2134
  from: string;
2129
2135
  to: string;
@@ -2133,8 +2139,8 @@ declare class Seamless {
2133
2139
  data: string;
2134
2140
  nonce: string;
2135
2141
  forwardFeeToken: string;
2136
- }, chainId: number, walletClientOrSigner?: Awaited<ReturnType<typeof getWalletClient>> | SignerLike): Promise<ApiResponse<any>>;
2137
- authorizeSeamlessAccount({ approve, seamlessAddress, chainId, forwardFeeToken, walletClientOrSigner, }: {
2142
+ }, chainId: number): Promise<ApiResponse<any>>;
2143
+ authorizeSeamlessAccount({ approve, seamlessAddress, chainId, forwardFeeToken, }: {
2138
2144
  approve: boolean;
2139
2145
  seamlessAddress: string;
2140
2146
  chainId: number;
package/dist/index.d.ts CHANGED
@@ -2124,6 +2124,12 @@ declare class Seamless {
2124
2124
  r: `0x${string}`;
2125
2125
  s: `0x${string}`;
2126
2126
  }[]>;
2127
+ getForwardEip712Domain(chainId: number): Promise<{
2128
+ name: any;
2129
+ version: any;
2130
+ chainId: any;
2131
+ verifyingContract: any;
2132
+ }>;
2127
2133
  forwarderTx({ from, to, value, gas, deadline, data, nonce, forwardFeeToken, }: {
2128
2134
  from: string;
2129
2135
  to: string;
@@ -2133,8 +2139,8 @@ declare class Seamless {
2133
2139
  data: string;
2134
2140
  nonce: string;
2135
2141
  forwardFeeToken: string;
2136
- }, chainId: number, walletClientOrSigner?: Awaited<ReturnType<typeof getWalletClient>> | SignerLike): Promise<ApiResponse<any>>;
2137
- authorizeSeamlessAccount({ approve, seamlessAddress, chainId, forwardFeeToken, walletClientOrSigner, }: {
2142
+ }, chainId: number): Promise<ApiResponse<any>>;
2143
+ authorizeSeamlessAccount({ approve, seamlessAddress, chainId, forwardFeeToken, }: {
2138
2144
  approve: boolean;
2139
2145
  seamlessAddress: string;
2140
2146
  chainId: number;