coreum-js 2.3.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/README.md +18 -0
- package/dist/main/client/index.d.ts +48 -0
- package/dist/main/client/index.js +242 -0
- package/dist/main/coreum/asset/ft/v1/event.d.ts +148 -0
- package/dist/main/coreum/asset/ft/v1/event.js +377 -0
- package/dist/main/coreum/asset/ft/v1/genesis.d.ts +415 -0
- package/dist/main/coreum/asset/ft/v1/genesis.js +197 -0
- package/dist/main/coreum/asset/ft/v1/params.d.ts +54 -0
- package/dist/main/coreum/asset/ft/v1/params.js +69 -0
- package/dist/main/coreum/asset/ft/v1/query.d.ts +1863 -0
- package/dist/main/coreum/asset/ft/v1/query.js +892 -0
- package/dist/main/coreum/asset/ft/v1/token.d.ts +145 -0
- package/dist/main/coreum/asset/ft/v1/token.js +361 -0
- package/dist/main/coreum/asset/ft/v1/tx.d.ts +416 -0
- package/dist/main/coreum/asset/ft/v1/tx.js +760 -0
- package/dist/main/coreum/asset/index.d.ts +3 -0
- package/dist/main/coreum/asset/index.js +26 -0
- package/dist/main/coreum/asset/nft/v1/event.d.ts +191 -0
- package/dist/main/coreum/asset/nft/v1/event.js +490 -0
- package/dist/main/coreum/asset/nft/v1/genesis.d.ts +321 -0
- package/dist/main/coreum/asset/nft/v1/genesis.js +362 -0
- package/dist/main/coreum/asset/nft/v1/nft.d.ts +153 -0
- package/dist/main/coreum/asset/nft/v1/nft.js +361 -0
- package/dist/main/coreum/asset/nft/v1/params.d.ts +54 -0
- package/dist/main/coreum/asset/nft/v1/params.js +69 -0
- package/dist/main/coreum/asset/nft/v1/query.d.ts +785 -0
- package/dist/main/coreum/asset/nft/v1/query.js +627 -0
- package/dist/main/coreum/asset/nft/v1/tx.d.ts +357 -0
- package/dist/main/coreum/asset/nft/v1/tx.js +806 -0
- package/dist/main/coreum/asset/nft/v1/types.d.ts +33 -0
- package/dist/main/coreum/asset/nft/v1/types.js +108 -0
- package/dist/main/coreum/customparams/v1/genesis.d.ts +48 -0
- package/dist/main/coreum/customparams/v1/genesis.js +70 -0
- package/dist/main/coreum/customparams/v1/params.d.ts +35 -0
- package/dist/main/coreum/customparams/v1/params.js +67 -0
- package/dist/main/coreum/customparams/v1/query.d.ts +74 -0
- package/dist/main/coreum/customparams/v1/query.js +119 -0
- package/dist/main/coreum/extensions/ft.d.ts +13 -0
- package/dist/main/coreum/extensions/ft.js +36 -0
- package/dist/main/coreum/extensions/nft.d.ts +11 -0
- package/dist/main/coreum/extensions/nft.js +30 -0
- package/dist/main/coreum/extensions/nftbeta.d.ts +13 -0
- package/dist/main/coreum/extensions/nftbeta.js +36 -0
- package/dist/main/coreum/feemodel/v1/genesis.d.ts +251 -0
- package/dist/main/coreum/feemodel/v1/genesis.js +87 -0
- package/dist/main/coreum/feemodel/v1/params.d.ts +384 -0
- package/dist/main/coreum/feemodel/v1/params.js +201 -0
- package/dist/main/coreum/feemodel/v1/query.d.ts +306 -0
- package/dist/main/coreum/feemodel/v1/query.js +214 -0
- package/dist/main/coreum/google/api/annotations.d.ts +1 -0
- package/dist/main/coreum/google/api/annotations.js +6 -0
- package/dist/main/coreum/google/api/http.d.ts +2953 -0
- package/dist/main/coreum/google/api/http.js +329 -0
- package/dist/main/coreum/google/protobuf/any.d.ts +148 -0
- package/dist/main/coreum/google/protobuf/any.js +122 -0
- package/dist/main/coreum/index.d.ts +291 -0
- package/dist/main/coreum/index.js +116 -0
- package/dist/main/coreum/nft/index.d.ts +2 -0
- package/dist/main/coreum/nft/index.js +9 -0
- package/dist/main/coreum/nft/v1beta1/event.d.ts +109 -0
- package/dist/main/coreum/nft/v1beta1/event.js +255 -0
- package/dist/main/coreum/nft/v1beta1/genesis.d.ts +460 -0
- package/dist/main/coreum/nft/v1beta1/genesis.js +160 -0
- package/dist/main/coreum/nft/v1beta1/nft.d.ts +153 -0
- package/dist/main/coreum/nft/v1beta1/nft.js +258 -0
- package/dist/main/coreum/nft/v1beta1/query.d.ts +1733 -0
- package/dist/main/coreum/nft/v1beta1/query.js +872 -0
- package/dist/main/coreum/nft/v1beta1/tx.d.ts +80 -0
- package/dist/main/coreum/nft/v1beta1/tx.js +155 -0
- package/dist/main/cosmos/base/query/v1beta1/pagination.d.ts +470 -0
- package/dist/main/cosmos/base/query/v1beta1/pagination.js +224 -0
- package/dist/main/cosmos/base/v1beta1/coin.d.ts +114 -0
- package/dist/main/cosmos/base/v1beta1/coin.js +242 -0
- package/dist/main/cosmos/msg/v1/msg.d.ts +1 -0
- package/dist/main/cosmos/msg/v1/msg.js +6 -0
- package/dist/main/index.d.ts +5 -0
- package/dist/main/index.js +22 -0
- package/dist/main/services/cosmostation.d.ts +4 -0
- package/dist/main/services/cosmostation.js +47 -0
- package/dist/main/services/index.d.ts +2 -0
- package/dist/main/services/index.js +19 -0
- package/dist/main/services/keplr.d.ts +2 -0
- package/dist/main/services/keplr.js +119 -0
- package/dist/main/signers/dcent.d.ts +1 -0
- package/dist/main/signers/dcent.js +41 -0
- package/dist/main/signers/index.d.ts +3 -0
- package/dist/main/signers/index.js +20 -0
- package/dist/main/signers/offline.d.ts +4 -0
- package/dist/main/signers/offline.js +11 -0
- package/dist/main/signers/signer.d.ts +6 -0
- package/dist/main/signers/signer.js +17 -0
- package/dist/main/types/core.d.ts +24 -0
- package/dist/main/types/core.js +18 -0
- package/dist/main/types/coreum.d.ts +74 -0
- package/dist/main/types/coreum.js +80 -0
- package/dist/main/types/index.d.ts +3 -0
- package/dist/main/types/index.js +20 -0
- package/dist/main/types/signing.d.ts +20 -0
- package/dist/main/types/signing.js +17 -0
- package/dist/main/utils/calculations.d.ts +6 -0
- package/dist/main/utils/calculations.js +41 -0
- package/dist/main/utils/event.d.ts +5 -0
- package/dist/main/utils/event.js +22 -0
- package/dist/main/utils/index.d.ts +3 -0
- package/dist/main/utils/index.js +20 -0
- package/dist/main/utils/nft.d.ts +2 -0
- package/dist/main/utils/nft.js +9 -0
- package/dist/main/utils/wallet.d.ts +5 -0
- package/dist/main/utils/wallet.js +37 -0
- package/dist/module/client/index.d.ts +48 -0
- package/dist/module/client/index.js +241 -0
- package/dist/module/coreum/asset/ft/v1/event.d.ts +148 -0
- package/dist/module/coreum/asset/ft/v1/event.js +368 -0
- package/dist/module/coreum/asset/ft/v1/genesis.d.ts +415 -0
- package/dist/module/coreum/asset/ft/v1/genesis.js +189 -0
- package/dist/module/coreum/asset/ft/v1/params.d.ts +54 -0
- package/dist/module/coreum/asset/ft/v1/params.js +63 -0
- package/dist/module/coreum/asset/ft/v1/query.d.ts +1863 -0
- package/dist/module/coreum/asset/ft/v1/query.js +878 -0
- package/dist/module/coreum/asset/ft/v1/token.d.ts +145 -0
- package/dist/module/coreum/asset/ft/v1/token.js +351 -0
- package/dist/module/coreum/asset/ft/v1/tx.d.ts +416 -0
- package/dist/module/coreum/asset/ft/v1/tx.js +747 -0
- package/dist/module/coreum/asset/index.d.ts +3 -0
- package/dist/module/coreum/asset/index.js +23 -0
- package/dist/module/coreum/asset/nft/v1/event.d.ts +191 -0
- package/dist/module/coreum/asset/nft/v1/event.js +479 -0
- package/dist/module/coreum/asset/nft/v1/genesis.d.ts +321 -0
- package/dist/module/coreum/asset/nft/v1/genesis.js +352 -0
- package/dist/module/coreum/asset/nft/v1/nft.d.ts +153 -0
- package/dist/module/coreum/asset/nft/v1/nft.js +351 -0
- package/dist/module/coreum/asset/nft/v1/params.d.ts +54 -0
- package/dist/module/coreum/asset/nft/v1/params.js +63 -0
- package/dist/module/coreum/asset/nft/v1/query.d.ts +785 -0
- package/dist/module/coreum/asset/nft/v1/query.js +615 -0
- package/dist/module/coreum/asset/nft/v1/tx.d.ts +357 -0
- package/dist/module/coreum/asset/nft/v1/tx.js +794 -0
- package/dist/module/coreum/asset/nft/v1/types.d.ts +33 -0
- package/dist/module/coreum/asset/nft/v1/types.js +101 -0
- package/dist/module/coreum/customparams/v1/genesis.d.ts +48 -0
- package/dist/module/coreum/customparams/v1/genesis.js +64 -0
- package/dist/module/coreum/customparams/v1/params.d.ts +35 -0
- package/dist/module/coreum/customparams/v1/params.js +60 -0
- package/dist/module/coreum/customparams/v1/query.d.ts +74 -0
- package/dist/module/coreum/customparams/v1/query.js +114 -0
- package/dist/module/coreum/extensions/ft.d.ts +13 -0
- package/dist/module/coreum/extensions/ft.js +32 -0
- package/dist/module/coreum/extensions/nft.d.ts +11 -0
- package/dist/module/coreum/extensions/nft.js +26 -0
- package/dist/module/coreum/extensions/nftbeta.d.ts +13 -0
- package/dist/module/coreum/extensions/nftbeta.js +32 -0
- package/dist/module/coreum/feemodel/v1/genesis.d.ts +251 -0
- package/dist/module/coreum/feemodel/v1/genesis.js +81 -0
- package/dist/module/coreum/feemodel/v1/params.d.ts +384 -0
- package/dist/module/coreum/feemodel/v1/params.js +194 -0
- package/dist/module/coreum/feemodel/v1/query.d.ts +306 -0
- package/dist/module/coreum/feemodel/v1/query.js +209 -0
- package/dist/module/coreum/google/api/annotations.d.ts +1 -0
- package/dist/module/coreum/google/api/annotations.js +3 -0
- package/dist/module/coreum/google/api/http.d.ts +2953 -0
- package/dist/module/coreum/google/api/http.js +320 -0
- package/dist/module/coreum/google/protobuf/any.d.ts +148 -0
- package/dist/module/coreum/google/protobuf/any.js +115 -0
- package/dist/module/coreum/index.d.ts +291 -0
- package/dist/module/coreum/index.js +113 -0
- package/dist/module/coreum/nft/index.d.ts +2 -0
- package/dist/module/coreum/nft/index.js +6 -0
- package/dist/module/coreum/nft/v1beta1/event.d.ts +109 -0
- package/dist/module/coreum/nft/v1beta1/event.js +246 -0
- package/dist/module/coreum/nft/v1beta1/genesis.d.ts +460 -0
- package/dist/module/coreum/nft/v1beta1/genesis.js +152 -0
- package/dist/module/coreum/nft/v1beta1/nft.d.ts +153 -0
- package/dist/module/coreum/nft/v1beta1/nft.js +250 -0
- package/dist/module/coreum/nft/v1beta1/query.d.ts +1733 -0
- package/dist/module/coreum/nft/v1beta1/query.js +858 -0
- package/dist/module/coreum/nft/v1beta1/tx.d.ts +80 -0
- package/dist/module/coreum/nft/v1beta1/tx.js +149 -0
- package/dist/module/cosmos/base/query/v1beta1/pagination.d.ts +470 -0
- package/dist/module/cosmos/base/query/v1beta1/pagination.js +216 -0
- package/dist/module/cosmos/base/v1beta1/coin.d.ts +114 -0
- package/dist/module/cosmos/base/v1beta1/coin.js +232 -0
- package/dist/module/cosmos/msg/v1/msg.d.ts +1 -0
- package/dist/module/cosmos/msg/v1/msg.js +3 -0
- package/dist/module/index.d.ts +5 -0
- package/dist/module/index.js +6 -0
- package/dist/module/services/cosmostation.d.ts +4 -0
- package/dist/module/services/cosmostation.js +42 -0
- package/dist/module/services/index.d.ts +2 -0
- package/dist/module/services/index.js +3 -0
- package/dist/module/services/keplr.d.ts +2 -0
- package/dist/module/services/keplr.js +115 -0
- package/dist/module/signers/dcent.d.ts +1 -0
- package/dist/module/signers/dcent.js +31 -0
- package/dist/module/signers/index.d.ts +3 -0
- package/dist/module/signers/index.js +4 -0
- package/dist/module/signers/offline.d.ts +4 -0
- package/dist/module/signers/offline.js +7 -0
- package/dist/module/signers/signer.d.ts +6 -0
- package/dist/module/signers/signer.js +11 -0
- package/dist/module/types/core.d.ts +24 -0
- package/dist/module/types/core.js +15 -0
- package/dist/module/types/coreum.d.ts +74 -0
- package/dist/module/types/coreum.js +77 -0
- package/dist/module/types/index.d.ts +3 -0
- package/dist/module/types/index.js +4 -0
- package/dist/module/types/signing.d.ts +20 -0
- package/dist/module/types/signing.js +14 -0
- package/dist/module/utils/calculations.d.ts +6 -0
- package/dist/module/utils/calculations.js +29 -0
- package/dist/module/utils/event.d.ts +5 -0
- package/dist/module/utils/event.js +18 -0
- package/dist/module/utils/index.d.ts +3 -0
- package/dist/module/utils/index.js +4 -0
- package/dist/module/utils/nft.d.ts +2 -0
- package/dist/module/utils/nft.js +5 -0
- package/dist/module/utils/wallet.d.ts +5 -0
- package/dist/module/utils/wallet.js +31 -0
- package/package.json +55 -0
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { QueryBalanceRequest, QueryBalanceResponse, QueryClassRequest, QueryClassResponse, QueryClassesRequest, QueryClassesResponse, QueryNFTRequest, QueryNFTResponse, QueryNFTsRequest, QueryNFTsResponse, QueryOwnerRequest, QueryOwnerResponse, QuerySupplyRequest, QuerySupplyResponse } from "../nft/v1beta1/query";
|
|
2
|
+
import { QueryClient } from "@cosmjs/stargate";
|
|
3
|
+
export declare function setupNFTBetaExtension(base: QueryClient): {
|
|
4
|
+
nftbeta: {
|
|
5
|
+
balance: (request: QueryBalanceRequest) => Promise<QueryBalanceResponse>;
|
|
6
|
+
owner: (request: QueryOwnerRequest) => Promise<QueryOwnerResponse>;
|
|
7
|
+
supply: (request: QuerySupplyRequest) => Promise<QuerySupplyResponse>;
|
|
8
|
+
nfts: (request: QueryNFTsRequest) => Promise<QueryNFTsResponse>;
|
|
9
|
+
nft: (request: QueryNFTRequest) => Promise<QueryNFTResponse>;
|
|
10
|
+
class: (request: QueryClassRequest) => Promise<QueryClassResponse>;
|
|
11
|
+
classes: (request: QueryClassesRequest) => Promise<QueryClassesResponse>;
|
|
12
|
+
};
|
|
13
|
+
};
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
import { QueryClientImpl, } from "../nft/v1beta1/query";
|
|
2
|
+
import { createProtobufRpcClient } from "@cosmjs/stargate";
|
|
3
|
+
export function setupNFTBetaExtension(base) {
|
|
4
|
+
const rpc = createProtobufRpcClient(base);
|
|
5
|
+
const queryService = new QueryClientImpl(rpc);
|
|
6
|
+
return {
|
|
7
|
+
nftbeta: {
|
|
8
|
+
balance: async (request) => {
|
|
9
|
+
return await queryService.Balance(request);
|
|
10
|
+
},
|
|
11
|
+
owner: async (request) => {
|
|
12
|
+
return await queryService.Owner(request);
|
|
13
|
+
},
|
|
14
|
+
supply: async (request) => {
|
|
15
|
+
return await queryService.Supply(request);
|
|
16
|
+
},
|
|
17
|
+
nfts: async (request) => {
|
|
18
|
+
return await queryService.NFTs(request);
|
|
19
|
+
},
|
|
20
|
+
nft: async (request) => {
|
|
21
|
+
return await queryService.NFT(request);
|
|
22
|
+
},
|
|
23
|
+
class: async (request) => {
|
|
24
|
+
return await queryService.Class(request);
|
|
25
|
+
},
|
|
26
|
+
classes: async (request) => {
|
|
27
|
+
return await queryService.Classes(request);
|
|
28
|
+
},
|
|
29
|
+
},
|
|
30
|
+
};
|
|
31
|
+
}
|
|
32
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibmZ0YmV0YS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uL3NyYy9jb3JldW0vZXh0ZW5zaW9ucy9uZnRiZXRhLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFDTCxlQUFlLEdBZWhCLE1BQU0sc0JBQXNCLENBQUM7QUFDOUIsT0FBTyxFQUFlLHVCQUF1QixFQUFFLE1BQU0sa0JBQWtCLENBQUM7QUFFeEUsTUFBTSxVQUFVLHFCQUFxQixDQUFDLElBQWlCO0lBQ3JELE1BQU0sR0FBRyxHQUFHLHVCQUF1QixDQUFDLElBQUksQ0FBQyxDQUFDO0lBQzFDLE1BQU0sWUFBWSxHQUFHLElBQUksZUFBZSxDQUFDLEdBQUcsQ0FBQyxDQUFDO0lBRTlDLE9BQU87UUFDTCxPQUFPLEVBQUU7WUFDUCxPQUFPLEVBQUUsS0FBSyxFQUNaLE9BQTRCLEVBQ0csRUFBRTtnQkFDakMsT0FBTyxNQUFNLFlBQVksQ0FBQyxPQUFPLENBQUMsT0FBTyxDQUFDLENBQUM7WUFDN0MsQ0FBQztZQUNELEtBQUssRUFBRSxLQUFLLEVBQ1YsT0FBMEIsRUFDRyxFQUFFO2dCQUMvQixPQUFPLE1BQU0sWUFBWSxDQUFDLEtBQUssQ0FBQyxPQUFPLENBQUMsQ0FBQztZQUMzQyxDQUFDO1lBQ0QsTUFBTSxFQUFFLEtBQUssRUFDWCxPQUEyQixFQUNHLEVBQUU7Z0JBQ2hDLE9BQU8sTUFBTSxZQUFZLENBQUMsTUFBTSxDQUFDLE9BQU8sQ0FBQyxDQUFDO1lBQzVDLENBQUM7WUFDRCxJQUFJLEVBQUUsS0FBSyxFQUFFLE9BQXlCLEVBQThCLEVBQUU7Z0JBQ3BFLE9BQU8sTUFBTSxZQUFZLENBQUMsSUFBSSxDQUFDLE9BQU8sQ0FBQyxDQUFDO1lBQzFDLENBQUM7WUFDRCxHQUFHLEVBQUUsS0FBSyxFQUFFLE9BQXdCLEVBQTZCLEVBQUU7Z0JBQ2pFLE9BQU8sTUFBTSxZQUFZLENBQUMsR0FBRyxDQUFDLE9BQU8sQ0FBQyxDQUFDO1lBQ3pDLENBQUM7WUFDRCxLQUFLLEVBQUUsS0FBSyxFQUNWLE9BQTBCLEVBQ0csRUFBRTtnQkFDL0IsT0FBTyxNQUFNLFlBQVksQ0FBQyxLQUFLLENBQUMsT0FBTyxDQUFDLENBQUM7WUFDM0MsQ0FBQztZQUNELE9BQU8sRUFBRSxLQUFLLEVBQ1osT0FBNEIsRUFDRyxFQUFFO2dCQUNqQyxPQUFPLE1BQU0sWUFBWSxDQUFDLE9BQU8sQ0FBQyxPQUFPLENBQUMsQ0FBQztZQUM3QyxDQUFDO1NBQ0Y7S0FDRixDQUFDO0FBQ0osQ0FBQyJ9
|
|
@@ -0,0 +1,251 @@
|
|
|
1
|
+
import Long from "long";
|
|
2
|
+
import _m0 from "protobufjs/minimal";
|
|
3
|
+
import { DecCoin } from "../../../cosmos/base/v1beta1/coin";
|
|
4
|
+
import { Params } from "./params";
|
|
5
|
+
export declare const protobufPackage = "coreum.feemodel.v1";
|
|
6
|
+
/** GenesisState defines the module's genesis state. */
|
|
7
|
+
export interface GenesisState {
|
|
8
|
+
/** params defines all the parameters of the module. */
|
|
9
|
+
params?: Params;
|
|
10
|
+
/** min_gas_price is the current minimum gas price required by the chain. */
|
|
11
|
+
minGasPrice?: DecCoin;
|
|
12
|
+
}
|
|
13
|
+
export declare const GenesisState: {
|
|
14
|
+
encode(message: GenesisState, writer?: _m0.Writer): _m0.Writer;
|
|
15
|
+
decode(input: _m0.Reader | Uint8Array, length?: number): GenesisState;
|
|
16
|
+
fromJSON(object: any): GenesisState;
|
|
17
|
+
toJSON(message: GenesisState): unknown;
|
|
18
|
+
create<I extends {
|
|
19
|
+
params?: {
|
|
20
|
+
model?: {
|
|
21
|
+
initialGasPrice?: string;
|
|
22
|
+
maxGasPriceMultiplier?: string;
|
|
23
|
+
maxDiscount?: string;
|
|
24
|
+
escalationStartFraction?: string;
|
|
25
|
+
maxBlockGas?: string | number | Long.Long;
|
|
26
|
+
shortEmaBlockLength?: number;
|
|
27
|
+
longEmaBlockLength?: number;
|
|
28
|
+
};
|
|
29
|
+
};
|
|
30
|
+
minGasPrice?: {
|
|
31
|
+
denom?: string;
|
|
32
|
+
amount?: string;
|
|
33
|
+
};
|
|
34
|
+
} & {
|
|
35
|
+
params?: {
|
|
36
|
+
model?: {
|
|
37
|
+
initialGasPrice?: string;
|
|
38
|
+
maxGasPriceMultiplier?: string;
|
|
39
|
+
maxDiscount?: string;
|
|
40
|
+
escalationStartFraction?: string;
|
|
41
|
+
maxBlockGas?: string | number | Long.Long;
|
|
42
|
+
shortEmaBlockLength?: number;
|
|
43
|
+
longEmaBlockLength?: number;
|
|
44
|
+
};
|
|
45
|
+
} & {
|
|
46
|
+
model?: {
|
|
47
|
+
initialGasPrice?: string;
|
|
48
|
+
maxGasPriceMultiplier?: string;
|
|
49
|
+
maxDiscount?: string;
|
|
50
|
+
escalationStartFraction?: string;
|
|
51
|
+
maxBlockGas?: string | number | Long.Long;
|
|
52
|
+
shortEmaBlockLength?: number;
|
|
53
|
+
longEmaBlockLength?: number;
|
|
54
|
+
} & {
|
|
55
|
+
initialGasPrice?: string;
|
|
56
|
+
maxGasPriceMultiplier?: string;
|
|
57
|
+
maxDiscount?: string;
|
|
58
|
+
escalationStartFraction?: string;
|
|
59
|
+
maxBlockGas?: string | number | (Long.Long & {
|
|
60
|
+
high: number;
|
|
61
|
+
low: number;
|
|
62
|
+
unsigned: boolean;
|
|
63
|
+
add: (addend: string | number | Long.Long) => Long.Long;
|
|
64
|
+
and: (other: string | number | Long.Long) => Long.Long;
|
|
65
|
+
compare: (other: string | number | Long.Long) => number;
|
|
66
|
+
comp: (other: string | number | Long.Long) => number;
|
|
67
|
+
divide: (divisor: string | number | Long.Long) => Long.Long;
|
|
68
|
+
div: (divisor: string | number | Long.Long) => Long.Long;
|
|
69
|
+
equals: (other: string | number | Long.Long) => boolean;
|
|
70
|
+
eq: (other: string | number | Long.Long) => boolean;
|
|
71
|
+
getHighBits: () => number;
|
|
72
|
+
getHighBitsUnsigned: () => number;
|
|
73
|
+
getLowBits: () => number;
|
|
74
|
+
getLowBitsUnsigned: () => number;
|
|
75
|
+
getNumBitsAbs: () => number;
|
|
76
|
+
greaterThan: (other: string | number | Long.Long) => boolean;
|
|
77
|
+
gt: (other: string | number | Long.Long) => boolean;
|
|
78
|
+
greaterThanOrEqual: (other: string | number | Long.Long) => boolean;
|
|
79
|
+
gte: (other: string | number | Long.Long) => boolean;
|
|
80
|
+
isEven: () => boolean;
|
|
81
|
+
isNegative: () => boolean;
|
|
82
|
+
isOdd: () => boolean;
|
|
83
|
+
isPositive: () => boolean;
|
|
84
|
+
isZero: () => boolean;
|
|
85
|
+
lessThan: (other: string | number | Long.Long) => boolean;
|
|
86
|
+
lt: (other: string | number | Long.Long) => boolean;
|
|
87
|
+
lessThanOrEqual: (other: string | number | Long.Long) => boolean;
|
|
88
|
+
lte: (other: string | number | Long.Long) => boolean;
|
|
89
|
+
modulo: (other: string | number | Long.Long) => Long.Long;
|
|
90
|
+
mod: (other: string | number | Long.Long) => Long.Long;
|
|
91
|
+
multiply: (multiplier: string | number | Long.Long) => Long.Long;
|
|
92
|
+
mul: (multiplier: string | number | Long.Long) => Long.Long;
|
|
93
|
+
negate: () => Long.Long;
|
|
94
|
+
neg: () => Long.Long;
|
|
95
|
+
not: () => Long.Long;
|
|
96
|
+
notEquals: (other: string | number | Long.Long) => boolean;
|
|
97
|
+
neq: (other: string | number | Long.Long) => boolean;
|
|
98
|
+
or: (other: string | number | Long.Long) => Long.Long;
|
|
99
|
+
shiftLeft: (numBits: number | Long.Long) => Long.Long;
|
|
100
|
+
shl: (numBits: number | Long.Long) => Long.Long;
|
|
101
|
+
shiftRight: (numBits: number | Long.Long) => Long.Long;
|
|
102
|
+
shr: (numBits: number | Long.Long) => Long.Long;
|
|
103
|
+
shiftRightUnsigned: (numBits: number | Long.Long) => Long.Long;
|
|
104
|
+
shru: (numBits: number | Long.Long) => Long.Long;
|
|
105
|
+
subtract: (subtrahend: string | number | Long.Long) => Long.Long;
|
|
106
|
+
sub: (subtrahend: string | number | Long.Long) => Long.Long;
|
|
107
|
+
toInt: () => number;
|
|
108
|
+
toNumber: () => number;
|
|
109
|
+
toBytes: (le?: boolean) => number[];
|
|
110
|
+
toBytesLE: () => number[];
|
|
111
|
+
toBytesBE: () => number[];
|
|
112
|
+
toSigned: () => Long.Long;
|
|
113
|
+
toString: (radix?: number) => string;
|
|
114
|
+
toUnsigned: () => Long.Long;
|
|
115
|
+
xor: (other: string | number | Long.Long) => Long.Long;
|
|
116
|
+
} & { [K in Exclude<keyof I["params"]["model"]["maxBlockGas"], keyof Long.Long>]: never; });
|
|
117
|
+
shortEmaBlockLength?: number;
|
|
118
|
+
longEmaBlockLength?: number;
|
|
119
|
+
} & { [K_1 in Exclude<keyof I["params"]["model"], keyof import("./params").ModelParams>]: never; };
|
|
120
|
+
} & { [K_2 in Exclude<keyof I["params"], "model">]: never; };
|
|
121
|
+
minGasPrice?: {
|
|
122
|
+
denom?: string;
|
|
123
|
+
amount?: string;
|
|
124
|
+
} & {
|
|
125
|
+
denom?: string;
|
|
126
|
+
amount?: string;
|
|
127
|
+
} & { [K_3 in Exclude<keyof I["minGasPrice"], keyof DecCoin>]: never; };
|
|
128
|
+
} & { [K_4 in Exclude<keyof I, keyof GenesisState>]: never; }>(base?: I): GenesisState;
|
|
129
|
+
fromPartial<I_1 extends {
|
|
130
|
+
params?: {
|
|
131
|
+
model?: {
|
|
132
|
+
initialGasPrice?: string;
|
|
133
|
+
maxGasPriceMultiplier?: string;
|
|
134
|
+
maxDiscount?: string;
|
|
135
|
+
escalationStartFraction?: string;
|
|
136
|
+
maxBlockGas?: string | number | Long.Long;
|
|
137
|
+
shortEmaBlockLength?: number;
|
|
138
|
+
longEmaBlockLength?: number;
|
|
139
|
+
};
|
|
140
|
+
};
|
|
141
|
+
minGasPrice?: {
|
|
142
|
+
denom?: string;
|
|
143
|
+
amount?: string;
|
|
144
|
+
};
|
|
145
|
+
} & {
|
|
146
|
+
params?: {
|
|
147
|
+
model?: {
|
|
148
|
+
initialGasPrice?: string;
|
|
149
|
+
maxGasPriceMultiplier?: string;
|
|
150
|
+
maxDiscount?: string;
|
|
151
|
+
escalationStartFraction?: string;
|
|
152
|
+
maxBlockGas?: string | number | Long.Long;
|
|
153
|
+
shortEmaBlockLength?: number;
|
|
154
|
+
longEmaBlockLength?: number;
|
|
155
|
+
};
|
|
156
|
+
} & {
|
|
157
|
+
model?: {
|
|
158
|
+
initialGasPrice?: string;
|
|
159
|
+
maxGasPriceMultiplier?: string;
|
|
160
|
+
maxDiscount?: string;
|
|
161
|
+
escalationStartFraction?: string;
|
|
162
|
+
maxBlockGas?: string | number | Long.Long;
|
|
163
|
+
shortEmaBlockLength?: number;
|
|
164
|
+
longEmaBlockLength?: number;
|
|
165
|
+
} & {
|
|
166
|
+
initialGasPrice?: string;
|
|
167
|
+
maxGasPriceMultiplier?: string;
|
|
168
|
+
maxDiscount?: string;
|
|
169
|
+
escalationStartFraction?: string;
|
|
170
|
+
maxBlockGas?: string | number | (Long.Long & {
|
|
171
|
+
high: number;
|
|
172
|
+
low: number;
|
|
173
|
+
unsigned: boolean;
|
|
174
|
+
add: (addend: string | number | Long.Long) => Long.Long;
|
|
175
|
+
and: (other: string | number | Long.Long) => Long.Long;
|
|
176
|
+
compare: (other: string | number | Long.Long) => number;
|
|
177
|
+
comp: (other: string | number | Long.Long) => number;
|
|
178
|
+
divide: (divisor: string | number | Long.Long) => Long.Long;
|
|
179
|
+
div: (divisor: string | number | Long.Long) => Long.Long;
|
|
180
|
+
equals: (other: string | number | Long.Long) => boolean;
|
|
181
|
+
eq: (other: string | number | Long.Long) => boolean;
|
|
182
|
+
getHighBits: () => number;
|
|
183
|
+
getHighBitsUnsigned: () => number;
|
|
184
|
+
getLowBits: () => number;
|
|
185
|
+
getLowBitsUnsigned: () => number;
|
|
186
|
+
getNumBitsAbs: () => number;
|
|
187
|
+
greaterThan: (other: string | number | Long.Long) => boolean;
|
|
188
|
+
gt: (other: string | number | Long.Long) => boolean;
|
|
189
|
+
greaterThanOrEqual: (other: string | number | Long.Long) => boolean;
|
|
190
|
+
gte: (other: string | number | Long.Long) => boolean;
|
|
191
|
+
isEven: () => boolean;
|
|
192
|
+
isNegative: () => boolean;
|
|
193
|
+
isOdd: () => boolean;
|
|
194
|
+
isPositive: () => boolean;
|
|
195
|
+
isZero: () => boolean;
|
|
196
|
+
lessThan: (other: string | number | Long.Long) => boolean;
|
|
197
|
+
lt: (other: string | number | Long.Long) => boolean;
|
|
198
|
+
lessThanOrEqual: (other: string | number | Long.Long) => boolean;
|
|
199
|
+
lte: (other: string | number | Long.Long) => boolean;
|
|
200
|
+
modulo: (other: string | number | Long.Long) => Long.Long;
|
|
201
|
+
mod: (other: string | number | Long.Long) => Long.Long;
|
|
202
|
+
multiply: (multiplier: string | number | Long.Long) => Long.Long;
|
|
203
|
+
mul: (multiplier: string | number | Long.Long) => Long.Long;
|
|
204
|
+
negate: () => Long.Long;
|
|
205
|
+
neg: () => Long.Long;
|
|
206
|
+
not: () => Long.Long;
|
|
207
|
+
notEquals: (other: string | number | Long.Long) => boolean;
|
|
208
|
+
neq: (other: string | number | Long.Long) => boolean;
|
|
209
|
+
or: (other: string | number | Long.Long) => Long.Long;
|
|
210
|
+
shiftLeft: (numBits: number | Long.Long) => Long.Long;
|
|
211
|
+
shl: (numBits: number | Long.Long) => Long.Long;
|
|
212
|
+
shiftRight: (numBits: number | Long.Long) => Long.Long;
|
|
213
|
+
shr: (numBits: number | Long.Long) => Long.Long;
|
|
214
|
+
shiftRightUnsigned: (numBits: number | Long.Long) => Long.Long;
|
|
215
|
+
shru: (numBits: number | Long.Long) => Long.Long;
|
|
216
|
+
subtract: (subtrahend: string | number | Long.Long) => Long.Long;
|
|
217
|
+
sub: (subtrahend: string | number | Long.Long) => Long.Long;
|
|
218
|
+
toInt: () => number;
|
|
219
|
+
toNumber: () => number;
|
|
220
|
+
toBytes: (le?: boolean) => number[];
|
|
221
|
+
toBytesLE: () => number[];
|
|
222
|
+
toBytesBE: () => number[];
|
|
223
|
+
toSigned: () => Long.Long;
|
|
224
|
+
toString: (radix?: number) => string;
|
|
225
|
+
toUnsigned: () => Long.Long;
|
|
226
|
+
xor: (other: string | number | Long.Long) => Long.Long;
|
|
227
|
+
} & { [K_5 in Exclude<keyof I_1["params"]["model"]["maxBlockGas"], keyof Long.Long>]: never; });
|
|
228
|
+
shortEmaBlockLength?: number;
|
|
229
|
+
longEmaBlockLength?: number;
|
|
230
|
+
} & { [K_6 in Exclude<keyof I_1["params"]["model"], keyof import("./params").ModelParams>]: never; };
|
|
231
|
+
} & { [K_7 in Exclude<keyof I_1["params"], "model">]: never; };
|
|
232
|
+
minGasPrice?: {
|
|
233
|
+
denom?: string;
|
|
234
|
+
amount?: string;
|
|
235
|
+
} & {
|
|
236
|
+
denom?: string;
|
|
237
|
+
amount?: string;
|
|
238
|
+
} & { [K_8 in Exclude<keyof I_1["minGasPrice"], keyof DecCoin>]: never; };
|
|
239
|
+
} & { [K_9 in Exclude<keyof I_1, keyof GenesisState>]: never; }>(object: I_1): GenesisState;
|
|
240
|
+
};
|
|
241
|
+
type Builtin = Date | Function | Uint8Array | string | number | boolean | undefined;
|
|
242
|
+
export type DeepPartial<T> = T extends Builtin ? T : T extends Long ? string | number | Long : T extends Array<infer U> ? Array<DeepPartial<U>> : T extends ReadonlyArray<infer U> ? ReadonlyArray<DeepPartial<U>> : T extends {} ? {
|
|
243
|
+
[K in keyof T]?: DeepPartial<T[K]>;
|
|
244
|
+
} : Partial<T>;
|
|
245
|
+
type KeysOfUnion<T> = T extends T ? keyof T : never;
|
|
246
|
+
export type Exact<P, I extends P> = P extends Builtin ? P : P & {
|
|
247
|
+
[K in keyof P]: Exact<P[K], I[K]>;
|
|
248
|
+
} & {
|
|
249
|
+
[K in Exclude<keyof I, KeysOfUnion<P>>]: never;
|
|
250
|
+
};
|
|
251
|
+
export {};
|
|
@@ -0,0 +1,81 @@
|
|
|
1
|
+
/* eslint-disable */
|
|
2
|
+
import Long from "long";
|
|
3
|
+
import _m0 from "protobufjs/minimal";
|
|
4
|
+
import { DecCoin } from "../../../cosmos/base/v1beta1/coin";
|
|
5
|
+
import { Params } from "./params";
|
|
6
|
+
export const protobufPackage = "coreum.feemodel.v1";
|
|
7
|
+
function createBaseGenesisState() {
|
|
8
|
+
return { params: undefined, minGasPrice: undefined };
|
|
9
|
+
}
|
|
10
|
+
export const GenesisState = {
|
|
11
|
+
encode(message, writer = _m0.Writer.create()) {
|
|
12
|
+
if (message.params !== undefined) {
|
|
13
|
+
Params.encode(message.params, writer.uint32(10).fork()).ldelim();
|
|
14
|
+
}
|
|
15
|
+
if (message.minGasPrice !== undefined) {
|
|
16
|
+
DecCoin.encode(message.minGasPrice, writer.uint32(18).fork()).ldelim();
|
|
17
|
+
}
|
|
18
|
+
return writer;
|
|
19
|
+
},
|
|
20
|
+
decode(input, length) {
|
|
21
|
+
const reader = input instanceof _m0.Reader ? input : _m0.Reader.create(input);
|
|
22
|
+
let end = length === undefined ? reader.len : reader.pos + length;
|
|
23
|
+
const message = createBaseGenesisState();
|
|
24
|
+
while (reader.pos < end) {
|
|
25
|
+
const tag = reader.uint32();
|
|
26
|
+
switch (tag >>> 3) {
|
|
27
|
+
case 1:
|
|
28
|
+
if (tag != 10) {
|
|
29
|
+
break;
|
|
30
|
+
}
|
|
31
|
+
message.params = Params.decode(reader, reader.uint32());
|
|
32
|
+
continue;
|
|
33
|
+
case 2:
|
|
34
|
+
if (tag != 18) {
|
|
35
|
+
break;
|
|
36
|
+
}
|
|
37
|
+
message.minGasPrice = DecCoin.decode(reader, reader.uint32());
|
|
38
|
+
continue;
|
|
39
|
+
}
|
|
40
|
+
if ((tag & 7) == 4 || tag == 0) {
|
|
41
|
+
break;
|
|
42
|
+
}
|
|
43
|
+
reader.skipType(tag & 7);
|
|
44
|
+
}
|
|
45
|
+
return message;
|
|
46
|
+
},
|
|
47
|
+
fromJSON(object) {
|
|
48
|
+
return {
|
|
49
|
+
params: isSet(object.params) ? Params.fromJSON(object.params) : undefined,
|
|
50
|
+
minGasPrice: isSet(object.minGasPrice) ? DecCoin.fromJSON(object.minGasPrice) : undefined,
|
|
51
|
+
};
|
|
52
|
+
},
|
|
53
|
+
toJSON(message) {
|
|
54
|
+
const obj = {};
|
|
55
|
+
message.params !== undefined && (obj.params = message.params ? Params.toJSON(message.params) : undefined);
|
|
56
|
+
message.minGasPrice !== undefined &&
|
|
57
|
+
(obj.minGasPrice = message.minGasPrice ? DecCoin.toJSON(message.minGasPrice) : undefined);
|
|
58
|
+
return obj;
|
|
59
|
+
},
|
|
60
|
+
create(base) {
|
|
61
|
+
return GenesisState.fromPartial(base ?? {});
|
|
62
|
+
},
|
|
63
|
+
fromPartial(object) {
|
|
64
|
+
const message = createBaseGenesisState();
|
|
65
|
+
message.params = (object.params !== undefined && object.params !== null)
|
|
66
|
+
? Params.fromPartial(object.params)
|
|
67
|
+
: undefined;
|
|
68
|
+
message.minGasPrice = (object.minGasPrice !== undefined && object.minGasPrice !== null)
|
|
69
|
+
? DecCoin.fromPartial(object.minGasPrice)
|
|
70
|
+
: undefined;
|
|
71
|
+
return message;
|
|
72
|
+
},
|
|
73
|
+
};
|
|
74
|
+
if (_m0.util.Long !== Long) {
|
|
75
|
+
_m0.util.Long = Long;
|
|
76
|
+
_m0.configure();
|
|
77
|
+
}
|
|
78
|
+
function isSet(value) {
|
|
79
|
+
return value !== null && value !== undefined;
|
|
80
|
+
}
|
|
81
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZ2VuZXNpcy5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uL3NyYy9jb3JldW0vZmVlbW9kZWwvdjEvZ2VuZXNpcy50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxvQkFBb0I7QUFDcEIsT0FBTyxJQUFJLE1BQU0sTUFBTSxDQUFDO0FBQ3hCLE9BQU8sR0FBRyxNQUFNLG9CQUFvQixDQUFDO0FBQ3JDLE9BQU8sRUFBRSxPQUFPLEVBQUUsTUFBTSxtQ0FBbUMsQ0FBQztBQUM1RCxPQUFPLEVBQUUsTUFBTSxFQUFFLE1BQU0sVUFBVSxDQUFDO0FBRWxDLE1BQU0sQ0FBQyxNQUFNLGVBQWUsR0FBRyxvQkFBb0IsQ0FBQztBQVVwRCxTQUFTLHNCQUFzQjtJQUM3QixPQUFPLEVBQUUsTUFBTSxFQUFFLFNBQVMsRUFBRSxXQUFXLEVBQUUsU0FBUyxFQUFFLENBQUM7QUFDdkQsQ0FBQztBQUVELE1BQU0sQ0FBQyxNQUFNLFlBQVksR0FBRztJQUMxQixNQUFNLENBQUMsT0FBcUIsRUFBRSxTQUFxQixHQUFHLENBQUMsTUFBTSxDQUFDLE1BQU0sRUFBRTtRQUNwRSxJQUFJLE9BQU8sQ0FBQyxNQUFNLEtBQUssU0FBUyxFQUFFO1lBQ2hDLE1BQU0sQ0FBQyxNQUFNLENBQUMsT0FBTyxDQUFDLE1BQU0sRUFBRSxNQUFNLENBQUMsTUFBTSxDQUFDLEVBQUUsQ0FBQyxDQUFDLElBQUksRUFBRSxDQUFDLENBQUMsTUFBTSxFQUFFLENBQUM7U0FDbEU7UUFDRCxJQUFJLE9BQU8sQ0FBQyxXQUFXLEtBQUssU0FBUyxFQUFFO1lBQ3JDLE9BQU8sQ0FBQyxNQUFNLENBQUMsT0FBTyxDQUFDLFdBQVcsRUFBRSxNQUFNLENBQUMsTUFBTSxDQUFDLEVBQUUsQ0FBQyxDQUFDLElBQUksRUFBRSxDQUFDLENBQUMsTUFBTSxFQUFFLENBQUM7U0FDeEU7UUFDRCxPQUFPLE1BQU0sQ0FBQztJQUNoQixDQUFDO0lBRUQsTUFBTSxDQUFDLEtBQThCLEVB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
|