@binance/w3w-multichain-connector 1.0.4 → 1.0.6

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.ts CHANGED
@@ -70,9 +70,11 @@ interface IWallet extends EventEmitter<WalletEvents> {
70
70
  requestAutoSign(): Promise<void>;
71
71
  signOrder(arg: {
72
72
  walletId: string;
73
+ walletAddress: string;
73
74
  bianceChainId: string;
74
75
  txData: string;
75
76
  feeAmount: string;
77
+ feeAmountLevel?: 'Low' | 'Medium' | 'High' | 'Custom';
76
78
  digest: string;
77
79
  digestSign: string;
78
80
  }): Promise<string>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@binance/w3w-multichain-connector",
3
- "version": "1.0.4",
3
+ "version": "1.0.6",
4
4
  "description": "A multichain connector for Binance Wallet",
5
5
  "main": "dist/index.mjs",
6
6
  "types": "dist/index.d.ts",
package/src/type.ts CHANGED
@@ -63,9 +63,11 @@ export interface IWallet extends EventEmitter<WalletEvents> {
63
63
 
64
64
  signOrder(arg: {
65
65
  walletId: string
66
+ walletAddress: string
66
67
  bianceChainId: string
67
68
  txData: string
68
69
  feeAmount: string
70
+ feeAmountLevel?: 'Low' | 'Medium' | 'High' | 'Custom'
69
71
  digest: string
70
72
  digestSign: string
71
73
  }): Promise<string>