injectivejs 1.11.7 → 1.11.8

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.
@@ -1,9 +1,9 @@
1
1
  import { SimulateRequest, SimulateResponse, GetTxRequest, GetTxResponse, BroadcastTxRequest, BroadcastTxResponse, GetTxsEventRequest, GetTxsEventResponse, GetBlockWithTxsRequest, GetBlockWithTxsResponse, TxDecodeRequest, TxDecodeResponse, TxEncodeRequest, TxEncodeResponse, TxEncodeAminoRequest, TxEncodeAminoResponse, TxDecodeAminoRequest, TxDecodeAminoResponse } from "./service";
2
2
  export declare const getSimulate: (client: import("../../../helper-func-types").EndpointOrRpc, request: SimulateRequest) => Promise<SimulateResponse>;
3
- export declare const getGetTx: (client: import("../../../helper-func-types").EndpointOrRpc, request: GetTxRequest) => Promise<GetTxResponse>;
3
+ export declare const getTx: (client: import("../../../helper-func-types").EndpointOrRpc, request: GetTxRequest) => Promise<GetTxResponse>;
4
4
  export declare const getBroadcastTx: (client: import("../../../helper-func-types").EndpointOrRpc, request: BroadcastTxRequest) => Promise<BroadcastTxResponse>;
5
- export declare const getGetTxsEvent: (client: import("../../../helper-func-types").EndpointOrRpc, request: GetTxsEventRequest) => Promise<GetTxsEventResponse>;
6
- export declare const getGetBlockWithTxs: (client: import("../../../helper-func-types").EndpointOrRpc, request: GetBlockWithTxsRequest) => Promise<GetBlockWithTxsResponse>;
5
+ export declare const getTxsEvent: (client: import("../../../helper-func-types").EndpointOrRpc, request: GetTxsEventRequest) => Promise<GetTxsEventResponse>;
6
+ export declare const getBlockWithTxs: (client: import("../../../helper-func-types").EndpointOrRpc, request: GetBlockWithTxsRequest) => Promise<GetBlockWithTxsResponse>;
7
7
  export declare const getTxDecode: (client: import("../../../helper-func-types").EndpointOrRpc, request: TxDecodeRequest) => Promise<TxDecodeResponse>;
8
8
  export declare const getTxEncode: (client: import("../../../helper-func-types").EndpointOrRpc, request: TxEncodeRequest) => Promise<TxEncodeResponse>;
9
9
  export declare const getTxEncodeAmino: (client: import("../../../helper-func-types").EndpointOrRpc, request: TxEncodeAminoRequest) => Promise<TxEncodeAminoResponse>;
@@ -1,6 +1,6 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.getTxDecodeAmino = exports.getTxEncodeAmino = exports.getTxEncode = exports.getTxDecode = exports.getGetBlockWithTxs = exports.getGetTxsEvent = exports.getBroadcastTx = exports.getGetTx = exports.getSimulate = void 0;
3
+ exports.getTxDecodeAmino = exports.getTxEncodeAmino = exports.getTxEncode = exports.getTxDecode = exports.getBlockWithTxs = exports.getTxsEvent = exports.getBroadcastTx = exports.getTx = exports.getSimulate = void 0;
4
4
  const helper_func_types_1 = require("../../../helper-func-types");
5
5
  const service_1 = require("./service");
6
6
  exports.getSimulate = (0, helper_func_types_1.buildQuery)({
@@ -10,7 +10,7 @@ exports.getSimulate = (0, helper_func_types_1.buildQuery)({
10
10
  method: "Simulate",
11
11
  deps: [service_1.SimulateRequest, service_1.SimulateResponse]
12
12
  });
13
- exports.getGetTx = (0, helper_func_types_1.buildQuery)({
13
+ exports.getTx = (0, helper_func_types_1.buildQuery)({
14
14
  encode: service_1.GetTxRequest.encode,
15
15
  decode: service_1.GetTxResponse.decode,
16
16
  service: "cosmos.tx.v1beta1.Service",
@@ -24,14 +24,14 @@ exports.getBroadcastTx = (0, helper_func_types_1.buildQuery)({
24
24
  method: "BroadcastTx",
25
25
  deps: [service_1.BroadcastTxRequest, service_1.BroadcastTxResponse]
26
26
  });
27
- exports.getGetTxsEvent = (0, helper_func_types_1.buildQuery)({
27
+ exports.getTxsEvent = (0, helper_func_types_1.buildQuery)({
28
28
  encode: service_1.GetTxsEventRequest.encode,
29
29
  decode: service_1.GetTxsEventResponse.decode,
30
30
  service: "cosmos.tx.v1beta1.Service",
31
31
  method: "GetTxsEvent",
32
32
  deps: [service_1.GetTxsEventRequest, service_1.GetTxsEventResponse]
33
33
  });
34
- exports.getGetBlockWithTxs = (0, helper_func_types_1.buildQuery)({
34
+ exports.getBlockWithTxs = (0, helper_func_types_1.buildQuery)({
35
35
  encode: service_1.GetBlockWithTxsRequest.encode,
36
36
  decode: service_1.GetBlockWithTxsResponse.decode,
37
37
  service: "cosmos.tx.v1beta1.Service",
@@ -7,7 +7,7 @@ export const getSimulate = buildQuery({
7
7
  method: "Simulate",
8
8
  deps: [SimulateRequest, SimulateResponse]
9
9
  });
10
- export const getGetTx = buildQuery({
10
+ export const getTx = buildQuery({
11
11
  encode: GetTxRequest.encode,
12
12
  decode: GetTxResponse.decode,
13
13
  service: "cosmos.tx.v1beta1.Service",
@@ -21,14 +21,14 @@ export const getBroadcastTx = buildQuery({
21
21
  method: "BroadcastTx",
22
22
  deps: [BroadcastTxRequest, BroadcastTxResponse]
23
23
  });
24
- export const getGetTxsEvent = buildQuery({
24
+ export const getTxsEvent = buildQuery({
25
25
  encode: GetTxsEventRequest.encode,
26
26
  decode: GetTxsEventResponse.decode,
27
27
  service: "cosmos.tx.v1beta1.Service",
28
28
  method: "GetTxsEvent",
29
29
  deps: [GetTxsEventRequest, GetTxsEventResponse]
30
30
  });
31
- export const getGetBlockWithTxs = buildQuery({
31
+ export const getBlockWithTxs = buildQuery({
32
32
  encode: GetBlockWithTxsRequest.encode,
33
33
  decode: GetBlockWithTxsResponse.decode,
34
34
  service: "cosmos.tx.v1beta1.Service",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "injectivejs",
3
- "version": "1.11.7",
3
+ "version": "1.11.8",
4
4
  "description": "Injectivejs is a JavaScript library for interacting with injective sdk.",
5
5
  "main": "index.js",
6
6
  "module": "esm/index.js",
@@ -25,12 +25,12 @@
25
25
  "prepare": "npm run build"
26
26
  },
27
27
  "dependencies": {
28
- "@interchainjs/cosmos": "1.11.7",
29
- "@interchainjs/cosmos-types": "1.11.7",
30
- "@interchainjs/encoding": "1.11.7",
31
- "@interchainjs/pubkey": "1.11.7",
32
- "@interchainjs/types": "1.11.7",
33
- "@interchainjs/utils": "1.11.7",
28
+ "@interchainjs/cosmos": "1.11.8",
29
+ "@interchainjs/cosmos-types": "1.11.8",
30
+ "@interchainjs/encoding": "1.11.8",
31
+ "@interchainjs/pubkey": "1.11.8",
32
+ "@interchainjs/types": "1.11.8",
33
+ "@interchainjs/utils": "1.11.8",
34
34
  "@noble/hashes": "^1.3.1",
35
35
  "decimal.js": "^10.4.3"
36
36
  },
@@ -41,5 +41,5 @@
41
41
  "cosmjs",
42
42
  "wallet"
43
43
  ],
44
- "gitHead": "90c24cd2e98da10d07f3dfdafd8a92d0435c5411"
44
+ "gitHead": "3b04fd9b7d4ce32d5dc264bf9caa305f5eca43ad"
45
45
  }