impermax-sdk 1.2.3 → 1.2.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.
@@ -59,6 +59,8 @@ export declare enum ProposalState {
59
59
  Rejected = "Rejected"
60
60
  }
61
61
  export declare enum WhitelistState {
62
- True = 1,
63
- False = 0
62
+ Unlisted = 0,
63
+ Listed = 1,
64
+ Deprecated = 2,
65
+ Blacklisted = 3
64
66
  }
@@ -44,7 +44,9 @@ var ProposalState;
44
44
  ;
45
45
  var WhitelistState;
46
46
  (function (WhitelistState) {
47
- WhitelistState[WhitelistState["True"] = 1] = "True";
48
- WhitelistState[WhitelistState["False"] = 0] = "False";
47
+ WhitelistState[WhitelistState["Unlisted"] = 0] = "Unlisted";
48
+ WhitelistState[WhitelistState["Listed"] = 1] = "Listed";
49
+ WhitelistState[WhitelistState["Deprecated"] = 2] = "Deprecated";
50
+ WhitelistState[WhitelistState["Blacklisted"] = 3] = "Blacklisted";
49
51
  })(WhitelistState = exports.WhitelistState || (exports.WhitelistState = {}));
50
52
  ;
@@ -66,8 +66,8 @@ class OnchainInteractions {
66
66
  return method.send({
67
67
  from: this.accountAddress,
68
68
  value: value,
69
- maxPriorityFeePerGas: undefined,
70
- maxFeePerGas: undefined
69
+ maxPriorityFeePerGas: null,
70
+ maxFeePerGas: null
71
71
  }).on('transactionHash', onTransactionHash);
72
72
  }
73
73
  catch (e) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "impermax-sdk",
3
- "version": "1.2.3",
3
+ "version": "1.2.5",
4
4
  "description": "",
5
5
  "main": "./lib/index.js",
6
6
  "module": "./lib/index.js",