juno-network 0.10.0 → 0.11.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -28,10 +28,10 @@ var _long = _interopRequireDefault(require("long"));
28
28
  function _getRequireWildcardCache(nodeInterop) { if (typeof WeakMap !== "function") return null; var cacheBabelInterop = new WeakMap(); var cacheNodeInterop = new WeakMap(); return (_getRequireWildcardCache = function _getRequireWildcardCache(nodeInterop) { return nodeInterop ? cacheNodeInterop : cacheBabelInterop; })(nodeInterop); }
29
29
  function _interopRequireWildcard(obj, nodeInterop) { if (!nodeInterop && obj && obj.__esModule) { return obj; } if (obj === null || _typeof3(obj) !== "object" && typeof obj !== "function") { return { "default": obj }; } var cache = _getRequireWildcardCache(nodeInterop); if (cache && cache.has(obj)) { return cache.get(obj); } var newObj = {}; var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var key in obj) { if (key !== "default" && Object.prototype.hasOwnProperty.call(obj, key)) { var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null; if (desc && (desc.get || desc.set)) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } newObj["default"] = obj; if (cache) { cache.set(obj, newObj); } return newObj; }
30
30
  /**
31
- * This file and any referenced files were automatically generated by @osmonauts/telescope@0.76.0
32
- * DO NOT MODIFY BY HAND. Instead, download the latest proto files for your chain
33
- * and run the transpile command or yarn proto command to regenerate this bundle.
34
- */
31
+ * This file and any referenced files were automatically generated by @osmonauts/telescope@0.80.0
32
+ * DO NOT MODIFY BY HAND. Instead, download the latest proto files for your chain
33
+ * and run the transpile command or yarn proto command to regenerate this bundle.
34
+ */
35
35
 
36
36
  // @ts-ignore
37
37
  if (_m0.util.Long !== _long["default"]) {
@@ -1,8 +1,8 @@
1
1
  /**
2
- * This file and any referenced files were automatically generated by @osmonauts/telescope@0.76.0
3
- * DO NOT MODIFY BY HAND. Instead, download the latest proto files for your chain
4
- * and run the transpile command or yarn proto command to regenerate this bundle.
5
- */
2
+ * This file and any referenced files were automatically generated by @osmonauts/telescope@0.80.0
3
+ * DO NOT MODIFY BY HAND. Instead, download the latest proto files for your chain
4
+ * and run the transpile command or yarn proto command to regenerate this bundle.
5
+ */
6
6
 
7
7
  import * as _m0 from "protobufjs/minimal";
8
8
  import Long from 'long';
@@ -1,5 +1,5 @@
1
1
  /**
2
- * This file and any referenced files were automatically generated by @osmonauts/telescope@0.76.0
2
+ * This file and any referenced files were automatically generated by @osmonauts/telescope@0.80.0
3
3
  * DO NOT MODIFY BY HAND. Instead, download the latest proto files for your chain
4
4
  * and run the transpile command or yarn proto command to regenerate this bundle.
5
5
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "juno-network",
3
- "version": "0.10.0",
3
+ "version": "0.11.0",
4
4
  "description": "juno",
5
5
  "author": "Dan Lynch <pyramation@gmail.com>",
6
6
  "homepage": "https://github.com/CosmosContracts/typescript#readme",
@@ -58,7 +58,7 @@
58
58
  "@babel/plugin-transform-runtime": "7.19.1",
59
59
  "@babel/preset-env": "7.19.4",
60
60
  "@babel/preset-typescript": "^7.18.6",
61
- "@osmonauts/telescope": "^0.76.0",
61
+ "@osmonauts/telescope": "^0.80.0",
62
62
  "@protobufs/cosmos": "^0.0.11",
63
63
  "@protobufs/cosmwasm": "^0.0.11",
64
64
  "@protobufs/ibc": "^0.0.11",
@@ -82,13 +82,13 @@
82
82
  },
83
83
  "dependencies": {
84
84
  "@babel/runtime": "^7.19.4",
85
- "@cosmjs/amino": "0.29.1",
86
- "@cosmjs/cosmwasm-stargate": "^0.29.1",
87
- "@cosmjs/proto-signing": "0.29.1",
88
- "@cosmjs/stargate": "0.29.1",
89
- "@cosmjs/tendermint-rpc": "^0.29.1",
85
+ "@cosmjs/amino": "0.29.5",
86
+ "@cosmjs/cosmwasm-stargate": "^0.29.5",
87
+ "@cosmjs/proto-signing": "0.29.5",
88
+ "@cosmjs/stargate": "0.29.5",
89
+ "@cosmjs/tendermint-rpc": "^0.29.5",
90
90
  "@osmonauts/lcd": "0.8.0",
91
91
  "protobufjs": "^6.11.2"
92
92
  },
93
- "gitHead": "1835ae4c91f21c44dc24424dc98af3329281d3d2"
93
+ "gitHead": "54b31c09d0007a711008f6f7e4755e9aa697d50d"
94
94
  }
@@ -1,9 +1,9 @@
1
1
  /**
2
- * This file and any referenced files were automatically generated by @osmonauts/telescope@0.76.0
3
- * DO NOT MODIFY BY HAND. Instead, download the latest proto files for your chain
4
- * and run the transpile command or yarn proto command to regenerate this bundle.
5
- */
6
-
2
+ * This file and any referenced files were automatically generated by @osmonauts/telescope@0.80.0
3
+ * DO NOT MODIFY BY HAND. Instead, download the latest proto files for your chain
4
+ * and run the transpile command or yarn proto command to regenerate this bundle.
5
+ */
6
+
7
7
  import * as _m0 from "protobufjs/minimal";
8
8
  import Long from 'long';
9
9
 
@@ -162,6 +162,8 @@ type Builtin = Date | Function | Uint8Array | string | number | boolean | undefi
162
162
 
163
163
  export type DeepPartial<T> = T extends Builtin
164
164
  ? T
165
+ : T extends Long
166
+ ? string | number | Long
165
167
  : T extends Array<infer U>
166
168
  ? Array<DeepPartial<U>>
167
169
  : T extends ReadonlyArray<infer U>
@@ -1,5 +1,5 @@
1
1
  /**
2
- * This file and any referenced files were automatically generated by @osmonauts/telescope@0.76.0
2
+ * This file and any referenced files were automatically generated by @osmonauts/telescope@0.80.0
3
3
  * DO NOT MODIFY BY HAND. Instead, download the latest proto files for your chain
4
4
  * and run the transpile command or yarn proto command to regenerate this bundle.
5
5
  */
@@ -1,5 +1,5 @@
1
1
  /**
2
- * This file was automatically generated by @cosmwasm/ts-codegen@0.20.0.
2
+ * This file was automatically generated by @cosmwasm/ts-codegen@0.21.1.
3
3
  * DO NOT MODIFY IT BY HAND. Instead, modify the source JSONSchema file,
4
4
  * and run the @cosmwasm/ts-codegen generate command to regenerate this file.
5
5
  */
@@ -1,5 +1,5 @@
1
1
  /**
2
- * This file was automatically generated by @cosmwasm/ts-codegen@0.20.0.
2
+ * This file was automatically generated by @cosmwasm/ts-codegen@0.21.1.
3
3
  * DO NOT MODIFY IT BY HAND. Instead, modify the source JSONSchema file,
4
4
  * and run the @cosmwasm/ts-codegen generate command to regenerate this file.
5
5
  */
@@ -1,5 +1,5 @@
1
1
  /**
2
- * This file was automatically generated by @cosmwasm/ts-codegen@0.20.0.
2
+ * This file was automatically generated by @cosmwasm/ts-codegen@0.21.1.
3
3
  * DO NOT MODIFY IT BY HAND. Instead, modify the source JSONSchema file,
4
4
  * and run the @cosmwasm/ts-codegen generate command to regenerate this file.
5
5
  */