@pioneer-platform/osmosis-network 8.1.21 → 8.1.25

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.
Files changed (2) hide show
  1. package/lib/index.js +3 -0
  2. package/package.json +3 -3
package/lib/index.js CHANGED
@@ -100,6 +100,9 @@ module.exports = {
100
100
  txs: function (address) {
101
101
  return get_txs_by_address(address);
102
102
  },
103
+ getTransaction: function (txid) {
104
+ return get_transaction(txid);
105
+ },
103
106
  transaction: function (txid) {
104
107
  return get_transaction(txid);
105
108
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pioneer-platform/osmosis-network",
3
- "version": "8.1.21",
3
+ "version": "8.1.25",
4
4
  "main": "./lib/index.js",
5
5
  "types": "./lib/index.d.ts",
6
6
  "scripts": {
@@ -11,7 +11,7 @@
11
11
  "refresh": "rm -rf ./node_modules ./package-lock.json && npm install"
12
12
  },
13
13
  "dependencies": {
14
- "@pioneer-platform/loggerdog": "^8.1.13",
14
+ "@pioneer-platform/loggerdog": "^8.1.14",
15
15
  "bech32": "^1.1.4",
16
16
  "bip32": "^2.0.5",
17
17
  "bip39": "^3.0.2",
@@ -26,5 +26,5 @@
26
26
  "ts-node": "^8.10.2",
27
27
  "typescript": "^3.9.5"
28
28
  },
29
- "gitHead": "29767e45c4dc1cb9d17c741ac9a06051c30525b5"
29
+ "gitHead": "d061e95fc78b972b1e7e36901ae63c0b4f601701"
30
30
  }