@ark-us/wasmxjs 0.0.3 → 0.0.5
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 +1 -1
- package/main/codegen/index.js +10 -10
- package/main/codegen/{wasmx → mythos}/bundle.js +21 -21
- package/main/codegen/{wasmx → mythos}/client.js +19 -19
- package/main/codegen/{wasmx → mythos}/rpc.query.js +1 -1
- package/main/codegen/{wasmx → mythos}/rpc.tx.js +1 -1
- package/main/codegen/{wasmx → mythos}/wasmx/v1/contract.js +176 -29
- package/main/codegen/{wasmx → mythos}/wasmx/v1/genesis.js +14 -14
- package/main/codegen/{wasmx → mythos}/wasmx/v1/query.js +81 -55
- package/main/codegen/{wasmx → mythos}/wasmx/v1/query.rpc.Query.js +22 -9
- package/main/codegen/{wasmx → mythos}/wasmx/v1/tx.amino.js +80 -24
- package/main/codegen/{wasmx → mythos}/wasmx/v1/tx.js +25 -4
- package/main/codegen/{wasmx → mythos}/wasmx/v1/tx.registry.js +41 -41
- package/main/codegen/{wasmx → mythos}/wasmx/v1/tx.rpc.msg.js +8 -8
- package/main/codegen/{wasmx → mythos}/websrv/v1/query.rpc.Query.js +7 -7
- package/main/codegen/{wasmx → mythos}/websrv/v1/tx.amino.js +6 -6
- package/main/codegen/{wasmx → mythos}/websrv/v1/tx.registry.js +16 -16
- package/main/codegen/{wasmx → mythos}/websrv/v1/tx.rpc.msg.js +3 -3
- package/main/codegen/tendermint/bundle.js +17 -17
- package/module/codegen/index.js +3 -3
- package/module/codegen/{wasmx → mythos}/bundle.js +19 -19
- package/module/codegen/{wasmx → mythos}/client.js +11 -11
- package/module/codegen/{wasmx → mythos}/rpc.query.js +1 -1
- package/module/codegen/{wasmx → mythos}/rpc.tx.js +1 -1
- package/module/codegen/{wasmx → mythos}/wasmx/v1/contract.js +151 -21
- package/module/codegen/{wasmx → mythos}/wasmx/v1/genesis.js +15 -15
- package/module/codegen/{wasmx → mythos}/wasmx/v1/query.js +77 -53
- package/module/codegen/{wasmx → mythos}/wasmx/v1/query.rpc.Query.js +19 -10
- package/module/codegen/{wasmx → mythos}/wasmx/v1/tx.amino.js +80 -24
- package/module/codegen/{wasmx → mythos}/wasmx/v1/tx.js +25 -4
- package/module/codegen/{wasmx → mythos}/wasmx/v1/tx.registry.js +41 -41
- package/module/codegen/{wasmx → mythos}/wasmx/v1/tx.rpc.msg.js +8 -8
- package/module/codegen/{wasmx → mythos}/websrv/v1/query.rpc.Query.js +7 -7
- package/module/codegen/{wasmx → mythos}/websrv/v1/tx.amino.js +6 -6
- package/module/codegen/{wasmx → mythos}/websrv/v1/tx.registry.js +16 -16
- package/module/codegen/{wasmx → mythos}/websrv/v1/tx.rpc.msg.js +3 -3
- package/module/codegen/tendermint/bundle.js +17 -17
- package/package.json +1 -1
- package/src/codegen/index.ts +3 -3
- package/src/codegen/{wasmx → mythos}/bundle.ts +21 -21
- package/src/codegen/{wasmx → mythos}/client.ts +12 -12
- package/src/codegen/{wasmx → mythos}/rpc.query.ts +1 -1
- package/src/codegen/{wasmx → mythos}/rpc.tx.ts +1 -1
- package/src/codegen/{wasmx → mythos}/wasmx/v1/contract.ts +228 -33
- package/src/codegen/{wasmx → mythos}/wasmx/v1/genesis.ts +19 -19
- package/src/codegen/{wasmx → mythos}/wasmx/v1/query.rpc.Query.ts +24 -10
- package/src/codegen/{wasmx → mythos}/wasmx/v1/query.ts +123 -82
- package/src/codegen/{wasmx → mythos}/wasmx/v1/tx.amino.ts +114 -32
- package/src/codegen/{wasmx → mythos}/wasmx/v1/tx.registry.ts +41 -41
- package/src/codegen/{wasmx → mythos}/wasmx/v1/tx.rpc.msg.ts +8 -8
- package/src/codegen/{wasmx → mythos}/wasmx/v1/tx.ts +33 -4
- package/src/codegen/{wasmx → mythos}/websrv/v1/query.rpc.Query.ts +7 -7
- package/src/codegen/{wasmx → mythos}/websrv/v1/tx.amino.ts +9 -9
- package/src/codegen/{wasmx → mythos}/websrv/v1/tx.registry.ts +16 -16
- package/src/codegen/{wasmx → mythos}/websrv/v1/tx.rpc.msg.ts +3 -3
- package/src/codegen/tendermint/bundle.ts +22 -22
- package/types/codegen/index.d.ts +3 -3
- package/types/codegen/mythos/bundle.d.ts +1039 -0
- package/types/codegen/{wasmx → mythos}/client.d.ts +31 -31
- package/types/codegen/mythos/index.d.ts +11 -0
- package/types/codegen/{wasmx → mythos}/rpc.query.d.ts +10 -10
- package/types/codegen/{wasmx → mythos}/rpc.tx.d.ts +1 -1
- package/types/codegen/{wasmx/wasmx → mythos/wasmx/v1}/tx.amino.d.ts +16 -16
- package/types/codegen/{wasmx → mythos}/websrv/v1/tx.amino.d.ts +6 -6
- package/types/codegen/tendermint/bundle.d.ts +456 -456
- package/types/codegen/wasmx/bundle.d.ts +0 -1039
- package/types/codegen/wasmx/index.d.ts +0 -11
- package/types/codegen/wasmx/lcd.d.ts +0 -14
- package/types/codegen/wasmx/wasmx/contract.d.ts +0 -139
- package/types/codegen/wasmx/wasmx/genesis.d.ts +0 -121
- package/types/codegen/wasmx/wasmx/query.d.ts +0 -451
- package/types/codegen/wasmx/wasmx/query.lcd.d.ts +0 -17
- package/types/codegen/wasmx/wasmx/query.rpc.Query.d.ts +0 -48
- package/types/codegen/wasmx/wasmx/tx.d.ts +0 -404
- package/types/codegen/wasmx/wasmx/tx.rpc.msg.d.ts +0 -39
- package/types/codegen/wasmx/wasmx/v1/params.d.ts +0 -14
- package/types/codegen/wasmx/wasmx/v1/tx.amino.d.ts +0 -134
- package/types/codegen/wasmx/wasmx/v1/tx.registry.d.ts +0 -176
- package/types/codegen/wasmx/websrv/query.d.ts +0 -315
- package/types/codegen/wasmx/websrv/query.rpc.Query.d.ts +0 -40
- package/types/codegen/wasmx/websrv/tx.amino.d.ts +0 -41
- package/types/codegen/wasmx/websrv/tx.d.ts +0 -90
- package/types/codegen/wasmx/websrv/tx.rpc.msg.d.ts +0 -18
- package/types/codegen/wasmx/websrv/v1/genesis.d.ts +0 -17
- package/types/codegen/wasmx/websrv/v1/params.d.ts +0 -16
- package/types/codegen/wasmx/websrv/v1/proposal.d.ts +0 -65
- package/types/codegen/wasmx/websrv/v1/tx.registry.d.ts +0 -76
- /package/main/codegen/{wasmx → mythos}/index.js +0 -0
- /package/main/codegen/{wasmx → mythos}/wasmx/v1/params.js +0 -0
- /package/main/codegen/{wasmx → mythos}/websrv/v1/genesis.js +0 -0
- /package/main/codegen/{wasmx → mythos}/websrv/v1/params.js +0 -0
- /package/main/codegen/{wasmx → mythos}/websrv/v1/proposal.js +0 -0
- /package/main/codegen/{wasmx → mythos}/websrv/v1/query.js +0 -0
- /package/main/codegen/{wasmx → mythos}/websrv/v1/tx.js +0 -0
- /package/module/codegen/{wasmx → mythos}/index.js +0 -0
- /package/module/codegen/{wasmx → mythos}/wasmx/v1/params.js +0 -0
- /package/module/codegen/{wasmx → mythos}/websrv/v1/genesis.js +0 -0
- /package/module/codegen/{wasmx → mythos}/websrv/v1/params.js +0 -0
- /package/module/codegen/{wasmx → mythos}/websrv/v1/proposal.js +0 -0
- /package/module/codegen/{wasmx → mythos}/websrv/v1/query.js +0 -0
- /package/module/codegen/{wasmx → mythos}/websrv/v1/tx.js +0 -0
- /package/src/codegen/{wasmx → mythos}/index.ts +0 -0
- /package/src/codegen/{wasmx → mythos}/wasmx/v1/params.ts +0 -0
- /package/src/codegen/{wasmx → mythos}/websrv/v1/genesis.ts +0 -0
- /package/src/codegen/{wasmx → mythos}/websrv/v1/params.ts +0 -0
- /package/src/codegen/{wasmx → mythos}/websrv/v1/proposal.ts +0 -0
- /package/src/codegen/{wasmx → mythos}/websrv/v1/query.ts +0 -0
- /package/src/codegen/{wasmx → mythos}/websrv/v1/tx.ts +0 -0
- /package/types/codegen/{wasmx → mythos}/wasmx/v1/contract.d.ts +0 -0
- /package/types/codegen/{wasmx → mythos}/wasmx/v1/genesis.d.ts +0 -0
- /package/types/codegen/{wasmx/wasmx → mythos/wasmx/v1}/params.d.ts +0 -0
- /package/types/codegen/{wasmx → mythos}/wasmx/v1/query.d.ts +0 -0
- /package/types/codegen/{wasmx → mythos}/wasmx/v1/query.rpc.Query.d.ts +0 -0
- /package/types/codegen/{wasmx → mythos}/wasmx/v1/tx.d.ts +0 -0
- /package/types/codegen/{wasmx/wasmx → mythos/wasmx/v1}/tx.registry.d.ts +0 -0
- /package/types/codegen/{wasmx → mythos}/wasmx/v1/tx.rpc.msg.d.ts +0 -0
- /package/types/codegen/{wasmx/websrv → mythos/websrv/v1}/genesis.d.ts +0 -0
- /package/types/codegen/{wasmx/websrv → mythos/websrv/v1}/params.d.ts +0 -0
- /package/types/codegen/{wasmx/websrv → mythos/websrv/v1}/proposal.d.ts +0 -0
- /package/types/codegen/{wasmx → mythos}/websrv/v1/query.d.ts +0 -0
- /package/types/codegen/{wasmx → mythos}/websrv/v1/query.rpc.Query.d.ts +0 -0
- /package/types/codegen/{wasmx → mythos}/websrv/v1/tx.d.ts +0 -0
- /package/types/codegen/{wasmx/websrv → mythos/websrv/v1}/tx.registry.d.ts +0 -0
- /package/types/codegen/{wasmx → mythos}/websrv/v1/tx.rpc.msg.d.ts +0 -0
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
import { Params, ParamsSDKType } from "./params";
|
|
2
|
-
import * as _m0 from "protobufjs/minimal";
|
|
3
|
-
/** GenesisState defines the websrv module's genesis state. */
|
|
4
|
-
export interface GenesisState {
|
|
5
|
-
params?: Params;
|
|
6
|
-
}
|
|
7
|
-
/** GenesisState defines the websrv module's genesis state. */
|
|
8
|
-
export interface GenesisStateSDKType {
|
|
9
|
-
params?: ParamsSDKType;
|
|
10
|
-
}
|
|
11
|
-
export declare const GenesisState: {
|
|
12
|
-
encode(message: GenesisState, writer?: _m0.Writer): _m0.Writer;
|
|
13
|
-
decode(input: _m0.Reader | Uint8Array, length?: number): GenesisState;
|
|
14
|
-
fromJSON(object: any): GenesisState;
|
|
15
|
-
toJSON(message: GenesisState): unknown;
|
|
16
|
-
fromPartial(object: Partial<GenesisState>): GenesisState;
|
|
17
|
-
};
|
|
@@ -1,16 +0,0 @@
|
|
|
1
|
-
import * as _m0 from "protobufjs/minimal";
|
|
2
|
-
/** Params defines the parameters for the module. */
|
|
3
|
-
export interface Params {
|
|
4
|
-
oauthClientRegistrationOnlyEId: boolean;
|
|
5
|
-
}
|
|
6
|
-
/** Params defines the parameters for the module. */
|
|
7
|
-
export interface ParamsSDKType {
|
|
8
|
-
oauth_client_registration_only_e_id: boolean;
|
|
9
|
-
}
|
|
10
|
-
export declare const Params: {
|
|
11
|
-
encode(message: Params, writer?: _m0.Writer): _m0.Writer;
|
|
12
|
-
decode(input: _m0.Reader | Uint8Array, length?: number): Params;
|
|
13
|
-
fromJSON(object: any): Params;
|
|
14
|
-
toJSON(message: Params): unknown;
|
|
15
|
-
fromPartial(object: Partial<Params>): Params;
|
|
16
|
-
};
|
|
@@ -1,65 +0,0 @@
|
|
|
1
|
-
import * as _m0 from "protobufjs/minimal";
|
|
2
|
-
/** RegisterRouteProposal is a gov Content type to register a web server route */
|
|
3
|
-
export interface RegisterRouteProposal {
|
|
4
|
-
/** title of the proposal */
|
|
5
|
-
title: string;
|
|
6
|
-
/** description of the proposal */
|
|
7
|
-
description: string;
|
|
8
|
-
/** Route path */
|
|
9
|
-
path: string;
|
|
10
|
-
/** Contract address in bech32 format */
|
|
11
|
-
contractAddress: string;
|
|
12
|
-
}
|
|
13
|
-
/** RegisterRouteProposal is a gov Content type to register a web server route */
|
|
14
|
-
export interface RegisterRouteProposalSDKType {
|
|
15
|
-
/** title of the proposal */
|
|
16
|
-
title: string;
|
|
17
|
-
/** description of the proposal */
|
|
18
|
-
description: string;
|
|
19
|
-
/** Route path */
|
|
20
|
-
path: string;
|
|
21
|
-
/** Contract address in bech32 format */
|
|
22
|
-
contract_address: string;
|
|
23
|
-
}
|
|
24
|
-
/**
|
|
25
|
-
* DisallowCosmosMessagesProposal is a gov Content type to remove a previously
|
|
26
|
-
* allowed Cosmos message or query to be called from the EVM
|
|
27
|
-
*/
|
|
28
|
-
export interface DeregisterRouteProposal {
|
|
29
|
-
/** title of the proposal */
|
|
30
|
-
title: string;
|
|
31
|
-
/** description of the proposal */
|
|
32
|
-
description: string;
|
|
33
|
-
/** Route path */
|
|
34
|
-
path: string;
|
|
35
|
-
/** Contract address in bech32 format */
|
|
36
|
-
contractAddress: string;
|
|
37
|
-
}
|
|
38
|
-
/**
|
|
39
|
-
* DisallowCosmosMessagesProposal is a gov Content type to remove a previously
|
|
40
|
-
* allowed Cosmos message or query to be called from the EVM
|
|
41
|
-
*/
|
|
42
|
-
export interface DeregisterRouteProposalSDKType {
|
|
43
|
-
/** title of the proposal */
|
|
44
|
-
title: string;
|
|
45
|
-
/** description of the proposal */
|
|
46
|
-
description: string;
|
|
47
|
-
/** Route path */
|
|
48
|
-
path: string;
|
|
49
|
-
/** Contract address in bech32 format */
|
|
50
|
-
contract_address: string;
|
|
51
|
-
}
|
|
52
|
-
export declare const RegisterRouteProposal: {
|
|
53
|
-
encode(message: RegisterRouteProposal, writer?: _m0.Writer): _m0.Writer;
|
|
54
|
-
decode(input: _m0.Reader | Uint8Array, length?: number): RegisterRouteProposal;
|
|
55
|
-
fromJSON(object: any): RegisterRouteProposal;
|
|
56
|
-
toJSON(message: RegisterRouteProposal): unknown;
|
|
57
|
-
fromPartial(object: Partial<RegisterRouteProposal>): RegisterRouteProposal;
|
|
58
|
-
};
|
|
59
|
-
export declare const DeregisterRouteProposal: {
|
|
60
|
-
encode(message: DeregisterRouteProposal, writer?: _m0.Writer): _m0.Writer;
|
|
61
|
-
decode(input: _m0.Reader | Uint8Array, length?: number): DeregisterRouteProposal;
|
|
62
|
-
fromJSON(object: any): DeregisterRouteProposal;
|
|
63
|
-
toJSON(message: DeregisterRouteProposal): unknown;
|
|
64
|
-
fromPartial(object: Partial<DeregisterRouteProposal>): DeregisterRouteProposal;
|
|
65
|
-
};
|
|
@@ -1,76 +0,0 @@
|
|
|
1
|
-
import { GeneratedType, Registry } from "@cosmjs/proto-signing";
|
|
2
|
-
import { MsgRegisterOAuthClient, MsgEditOAuthClient, MsgDeregisterOAuthClient } from "./tx";
|
|
3
|
-
export declare const registry: ReadonlyArray<[string, GeneratedType]>;
|
|
4
|
-
export declare const load: (protoRegistry: Registry) => void;
|
|
5
|
-
export declare const MessageComposer: {
|
|
6
|
-
encoded: {
|
|
7
|
-
registerOAuthClient(value: MsgRegisterOAuthClient): {
|
|
8
|
-
typeUrl: string;
|
|
9
|
-
value: Uint8Array;
|
|
10
|
-
};
|
|
11
|
-
editOAuthClient(value: MsgEditOAuthClient): {
|
|
12
|
-
typeUrl: string;
|
|
13
|
-
value: Uint8Array;
|
|
14
|
-
};
|
|
15
|
-
deregisterOAuthClient(value: MsgDeregisterOAuthClient): {
|
|
16
|
-
typeUrl: string;
|
|
17
|
-
value: Uint8Array;
|
|
18
|
-
};
|
|
19
|
-
};
|
|
20
|
-
withTypeUrl: {
|
|
21
|
-
registerOAuthClient(value: MsgRegisterOAuthClient): {
|
|
22
|
-
typeUrl: string;
|
|
23
|
-
value: MsgRegisterOAuthClient;
|
|
24
|
-
};
|
|
25
|
-
editOAuthClient(value: MsgEditOAuthClient): {
|
|
26
|
-
typeUrl: string;
|
|
27
|
-
value: MsgEditOAuthClient;
|
|
28
|
-
};
|
|
29
|
-
deregisterOAuthClient(value: MsgDeregisterOAuthClient): {
|
|
30
|
-
typeUrl: string;
|
|
31
|
-
value: MsgDeregisterOAuthClient;
|
|
32
|
-
};
|
|
33
|
-
};
|
|
34
|
-
toJSON: {
|
|
35
|
-
registerOAuthClient(value: MsgRegisterOAuthClient): {
|
|
36
|
-
typeUrl: string;
|
|
37
|
-
value: unknown;
|
|
38
|
-
};
|
|
39
|
-
editOAuthClient(value: MsgEditOAuthClient): {
|
|
40
|
-
typeUrl: string;
|
|
41
|
-
value: unknown;
|
|
42
|
-
};
|
|
43
|
-
deregisterOAuthClient(value: MsgDeregisterOAuthClient): {
|
|
44
|
-
typeUrl: string;
|
|
45
|
-
value: unknown;
|
|
46
|
-
};
|
|
47
|
-
};
|
|
48
|
-
fromJSON: {
|
|
49
|
-
registerOAuthClient(value: any): {
|
|
50
|
-
typeUrl: string;
|
|
51
|
-
value: MsgRegisterOAuthClient;
|
|
52
|
-
};
|
|
53
|
-
editOAuthClient(value: any): {
|
|
54
|
-
typeUrl: string;
|
|
55
|
-
value: MsgEditOAuthClient;
|
|
56
|
-
};
|
|
57
|
-
deregisterOAuthClient(value: any): {
|
|
58
|
-
typeUrl: string;
|
|
59
|
-
value: MsgDeregisterOAuthClient;
|
|
60
|
-
};
|
|
61
|
-
};
|
|
62
|
-
fromPartial: {
|
|
63
|
-
registerOAuthClient(value: MsgRegisterOAuthClient): {
|
|
64
|
-
typeUrl: string;
|
|
65
|
-
value: MsgRegisterOAuthClient;
|
|
66
|
-
};
|
|
67
|
-
editOAuthClient(value: MsgEditOAuthClient): {
|
|
68
|
-
typeUrl: string;
|
|
69
|
-
value: MsgEditOAuthClient;
|
|
70
|
-
};
|
|
71
|
-
deregisterOAuthClient(value: MsgDeregisterOAuthClient): {
|
|
72
|
-
typeUrl: string;
|
|
73
|
-
value: MsgDeregisterOAuthClient;
|
|
74
|
-
};
|
|
75
|
-
};
|
|
76
|
-
};
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|