@megaeth-labs/wallet-sdk 0.1.15 → 0.1.16

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.cts CHANGED
@@ -34,6 +34,7 @@ interface CallContractRequest {
34
34
  args?: any[];
35
35
  data?: `0x${string}`;
36
36
  silent?: boolean;
37
+ silentUIApproveFallback?: boolean;
37
38
  value?: bigint | string;
38
39
  sponsor?: boolean;
39
40
  }
@@ -63,6 +64,7 @@ interface TransactionResult {
63
64
  receipt?: TransactionReceipt;
64
65
  receipts?: TransactionReceipt[];
65
66
  error?: string;
67
+ silentHasUsedFallback?: boolean;
66
68
  }
67
69
  interface SignMessageResponse {
68
70
  status: 'success' | 'cancelled' | 'error';
package/dist/index.d.ts CHANGED
@@ -34,6 +34,7 @@ interface CallContractRequest {
34
34
  args?: any[];
35
35
  data?: `0x${string}`;
36
36
  silent?: boolean;
37
+ silentUIApproveFallback?: boolean;
37
38
  value?: bigint | string;
38
39
  sponsor?: boolean;
39
40
  }
@@ -63,6 +64,7 @@ interface TransactionResult {
63
64
  receipt?: TransactionReceipt;
64
65
  receipts?: TransactionReceipt[];
65
66
  error?: string;
67
+ silentHasUsedFallback?: boolean;
66
68
  }
67
69
  interface SignMessageResponse {
68
70
  status: 'success' | 'cancelled' | 'error';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@megaeth-labs/wallet-sdk",
3
- "version": "0.1.15",
3
+ "version": "0.1.16",
4
4
  "description": "MegaETH Wallet SDK for web applications",
5
5
  "type": "module",
6
6
  "main": "./dist/index.cjs",