@myx-trade/sdk 1.0.8-beta.2 → 1.0.8-beta.3
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 +3 -2
- package/dist/index.d.ts +3 -2
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +1 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -2133,12 +2133,13 @@ declare class Seamless {
|
|
|
2133
2133
|
data: string;
|
|
2134
2134
|
nonce: string;
|
|
2135
2135
|
forwardFeeToken: string;
|
|
2136
|
-
}, chainId: number,
|
|
2137
|
-
authorizeSeamlessAccount({ approve, seamlessAddress, chainId, forwardFeeToken }: {
|
|
2136
|
+
}, chainId: number, walletClientOrSigner?: Awaited<ReturnType<typeof getWalletClient>> | SignerLike): Promise<ApiResponse<any>>;
|
|
2137
|
+
authorizeSeamlessAccount({ approve, seamlessAddress, chainId, forwardFeeToken, walletClientOrSigner, }: {
|
|
2138
2138
|
approve: boolean;
|
|
2139
2139
|
seamlessAddress: string;
|
|
2140
2140
|
chainId: number;
|
|
2141
2141
|
forwardFeeToken: string;
|
|
2142
|
+
walletClientOrSigner?: Awaited<ReturnType<typeof getWalletClient>> | SignerLike;
|
|
2142
2143
|
}): Promise<{
|
|
2143
2144
|
code: number;
|
|
2144
2145
|
data: {
|
package/dist/index.d.ts
CHANGED
|
@@ -2133,12 +2133,13 @@ declare class Seamless {
|
|
|
2133
2133
|
data: string;
|
|
2134
2134
|
nonce: string;
|
|
2135
2135
|
forwardFeeToken: string;
|
|
2136
|
-
}, chainId: number,
|
|
2137
|
-
authorizeSeamlessAccount({ approve, seamlessAddress, chainId, forwardFeeToken }: {
|
|
2136
|
+
}, chainId: number, walletClientOrSigner?: Awaited<ReturnType<typeof getWalletClient>> | SignerLike): Promise<ApiResponse<any>>;
|
|
2137
|
+
authorizeSeamlessAccount({ approve, seamlessAddress, chainId, forwardFeeToken, walletClientOrSigner, }: {
|
|
2138
2138
|
approve: boolean;
|
|
2139
2139
|
seamlessAddress: string;
|
|
2140
2140
|
chainId: number;
|
|
2141
2141
|
forwardFeeToken: string;
|
|
2142
|
+
walletClientOrSigner?: Awaited<ReturnType<typeof getWalletClient>> | SignerLike;
|
|
2142
2143
|
}): Promise<{
|
|
2143
2144
|
code: number;
|
|
2144
2145
|
data: {
|