@binance/w3w-multichain-connector 1.0.5 → 1.0.7

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
@@ -71,9 +71,10 @@ interface IWallet extends EventEmitter<WalletEvents> {
71
71
  signOrder(arg: {
72
72
  walletId: string;
73
73
  walletAddress: string;
74
- bianceChainId: string;
74
+ binanceChainId: string;
75
75
  txData: string;
76
76
  feeAmount: string;
77
+ feeAmountLevel?: 'Low' | 'Medium' | 'High' | 'Custom';
77
78
  digest: string;
78
79
  digestSign: string;
79
80
  }): Promise<string>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@binance/w3w-multichain-connector",
3
- "version": "1.0.5",
3
+ "version": "1.0.7",
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
@@ -64,9 +64,10 @@ export interface IWallet extends EventEmitter<WalletEvents> {
64
64
  signOrder(arg: {
65
65
  walletId: string
66
66
  walletAddress: string
67
- bianceChainId: string
67
+ binanceChainId: string
68
68
  txData: string
69
69
  feeAmount: string
70
+ feeAmountLevel?: 'Low' | 'Medium' | 'High' | 'Custom'
70
71
  digest: string
71
72
  digestSign: string
72
73
  }): Promise<string>