coreum-js 2.17.0 → 2.17.1
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/dist/main/coreum/dex/index.d.ts +2 -1
- package/dist/main/coreum/dex/index.js +0 -1
- package/dist/main/types/core.d.ts +1 -1
- package/dist/main/types/core.js +1 -1
- package/dist/module/coreum/dex/index.d.ts +2 -1
- package/dist/module/coreum/dex/index.js +1 -2
- package/dist/module/types/core.d.ts +1 -1
- package/dist/module/types/core.js +1 -1
- package/package.json +1 -1
|
@@ -1 +1,2 @@
|
|
|
1
|
-
|
|
1
|
+
import { GeneratedType } from "@cosmjs/proto-signing";
|
|
2
|
+
export declare const dexRegistry: ReadonlyArray<[string, GeneratedType]>;
|
|
@@ -7,6 +7,5 @@ exports.dexRegistry = [
|
|
|
7
7
|
[types_1.CoreumTypeUrl.DEX + "MsgCancelOrder", tx_1.MsgCancelOrder],
|
|
8
8
|
[types_1.CoreumTypeUrl.DEX + "MsgPlaceOrder", tx_1.MsgPlaceOrder],
|
|
9
9
|
[types_1.CoreumTypeUrl.DEX + "MsgUpdateParams", tx_1.MsgUpdateParams],
|
|
10
|
-
[types_1.CoreumTypeUrl.DEX + "MsgServiceName", tx_1.MsgServiceName],
|
|
11
10
|
[types_1.CoreumTypeUrl.DEX + "MsgCancelOrdersByDenom", tx_1.MsgCancelOrdersByDenom],
|
|
12
11
|
];
|
|
@@ -10,7 +10,7 @@ export declare enum CoreumTypeUrl {
|
|
|
10
10
|
NFT = "/coreum.asset.nft.v1.",
|
|
11
11
|
FT = "/coreum.asset.ft.v1.",
|
|
12
12
|
NFTBeta = "/cosmos.nft.v1beta1.",
|
|
13
|
-
DEX = "/coreum.dex.v1"
|
|
13
|
+
DEX = "/coreum.dex.v1."
|
|
14
14
|
}
|
|
15
15
|
export interface ClientQueryClient extends QueryClient {
|
|
16
16
|
ft: ReturnType<typeof setupFTExtension>["ft"];
|
package/dist/main/types/core.js
CHANGED
|
@@ -11,7 +11,7 @@ var CoreumTypeUrl;
|
|
|
11
11
|
CoreumTypeUrl["NFT"] = "/coreum.asset.nft.v1.";
|
|
12
12
|
CoreumTypeUrl["FT"] = "/coreum.asset.ft.v1.";
|
|
13
13
|
CoreumTypeUrl["NFTBeta"] = "/cosmos.nft.v1beta1.";
|
|
14
|
-
CoreumTypeUrl["DEX"] = "/coreum.dex.v1";
|
|
14
|
+
CoreumTypeUrl["DEX"] = "/coreum.dex.v1.";
|
|
15
15
|
})(CoreumTypeUrl || (exports.CoreumTypeUrl = CoreumTypeUrl = {}));
|
|
16
16
|
// setupMintExtension,
|
|
17
17
|
// setupFeegrantExtension,
|
|
@@ -1 +1,2 @@
|
|
|
1
|
-
|
|
1
|
+
import { GeneratedType } from "@cosmjs/proto-signing";
|
|
2
|
+
export declare const dexRegistry: ReadonlyArray<[string, GeneratedType]>;
|
|
@@ -1,9 +1,8 @@
|
|
|
1
1
|
import { CoreumTypeUrl } from "../../types";
|
|
2
|
-
import { MsgCancelOrder, MsgPlaceOrder, MsgUpdateParams,
|
|
2
|
+
import { MsgCancelOrder, MsgPlaceOrder, MsgUpdateParams, MsgCancelOrdersByDenom, } from "./v1/tx";
|
|
3
3
|
export const dexRegistry = [
|
|
4
4
|
[CoreumTypeUrl.DEX + "MsgCancelOrder", MsgCancelOrder],
|
|
5
5
|
[CoreumTypeUrl.DEX + "MsgPlaceOrder", MsgPlaceOrder],
|
|
6
6
|
[CoreumTypeUrl.DEX + "MsgUpdateParams", MsgUpdateParams],
|
|
7
|
-
[CoreumTypeUrl.DEX + "MsgServiceName", MsgServiceName],
|
|
8
7
|
[CoreumTypeUrl.DEX + "MsgCancelOrdersByDenom", MsgCancelOrdersByDenom],
|
|
9
8
|
];
|
|
@@ -10,7 +10,7 @@ export declare enum CoreumTypeUrl {
|
|
|
10
10
|
NFT = "/coreum.asset.nft.v1.",
|
|
11
11
|
FT = "/coreum.asset.ft.v1.",
|
|
12
12
|
NFTBeta = "/cosmos.nft.v1beta1.",
|
|
13
|
-
DEX = "/coreum.dex.v1"
|
|
13
|
+
DEX = "/coreum.dex.v1."
|
|
14
14
|
}
|
|
15
15
|
export interface ClientQueryClient extends QueryClient {
|
|
16
16
|
ft: ReturnType<typeof setupFTExtension>["ft"];
|
|
@@ -8,7 +8,7 @@ export var CoreumTypeUrl;
|
|
|
8
8
|
CoreumTypeUrl["NFT"] = "/coreum.asset.nft.v1.";
|
|
9
9
|
CoreumTypeUrl["FT"] = "/coreum.asset.ft.v1.";
|
|
10
10
|
CoreumTypeUrl["NFTBeta"] = "/cosmos.nft.v1beta1.";
|
|
11
|
-
CoreumTypeUrl["DEX"] = "/coreum.dex.v1";
|
|
11
|
+
CoreumTypeUrl["DEX"] = "/coreum.dex.v1.";
|
|
12
12
|
})(CoreumTypeUrl || (CoreumTypeUrl = {}));
|
|
13
13
|
// setupMintExtension,
|
|
14
14
|
// setupFeegrantExtension,
|