@airgap/cosmos 0.13.21-beta.7 → 0.13.21

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@airgap/cosmos",
3
- "version": "0.13.21-beta.7",
3
+ "version": "0.13.21",
4
4
  "description": "The @airgap/cosmos is a Cosmos implementation of the ICoinProtocol interface from @airgap/coinlib-core.",
5
5
  "keywords": [
6
6
  "airgap",
@@ -30,11 +30,11 @@
30
30
  },
31
31
  "author": "Papers AG <contact@papers.ch> (https://papers.ch)",
32
32
  "dependencies": {
33
- "@airgap/coinlib-core": "^0.13.21-beta.7",
34
- "@airgap/cosmos-core": "^0.13.21-beta.7",
35
- "@airgap/crypto": "^0.13.21-beta.7",
36
- "@airgap/module-kit": "^0.13.21-beta.7",
37
- "@airgap/serializer": "^0.13.21-beta.7"
33
+ "@airgap/coinlib-core": "^0.13.21",
34
+ "@airgap/cosmos-core": "^0.13.21",
35
+ "@airgap/crypto": "^0.13.21",
36
+ "@airgap/module-kit": "^0.13.21",
37
+ "@airgap/serializer": "^0.13.21"
38
38
  },
39
39
  "localDependencies": {},
40
40
  "nyc": {
@@ -67,7 +67,7 @@ var coinlib_core_1 = require("@airgap/coinlib-core");
67
67
  var module_kit_1 = require("@airgap/module-kit");
68
68
  var cosmos_core_1 = require("@airgap/cosmos-core");
69
69
  // Implementation
70
- var DEFAULT_GAS = (0, module_kit_1.newAmount)('310000', 'blockchain');
70
+ var DEFAULT_GAS = (0, module_kit_1.newAmount)('500000', 'blockchain');
71
71
  var CosmosProtocolImpl = /** @class */ (function (_super) {
72
72
  __extends(CosmosProtocolImpl, _super);
73
73
  function CosmosProtocolImpl(options) {
@@ -87,7 +87,7 @@ var CosmosProtocolImpl = /** @class */ (function (_super) {
87
87
  }
88
88
  };
89
89
  _this.feeDefaults = {
90
- low: (0, module_kit_1.newAmount)(0.0005, 'atom').blockchain(_this.units),
90
+ low: (0, module_kit_1.newAmount)(0.0025, 'atom').blockchain(_this.units),
91
91
  medium: (0, module_kit_1.newAmount)(0.005, 'atom').blockchain(_this.units),
92
92
  high: (0, module_kit_1.newAmount)(0.0072, 'atom').blockchain(_this.units)
93
93
  };