@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.
Files changed (124) hide show
  1. package/README.md +1 -1
  2. package/main/codegen/index.js +10 -10
  3. package/main/codegen/{wasmx → mythos}/bundle.js +21 -21
  4. package/main/codegen/{wasmx → mythos}/client.js +19 -19
  5. package/main/codegen/{wasmx → mythos}/rpc.query.js +1 -1
  6. package/main/codegen/{wasmx → mythos}/rpc.tx.js +1 -1
  7. package/main/codegen/{wasmx → mythos}/wasmx/v1/contract.js +176 -29
  8. package/main/codegen/{wasmx → mythos}/wasmx/v1/genesis.js +14 -14
  9. package/main/codegen/{wasmx → mythos}/wasmx/v1/query.js +81 -55
  10. package/main/codegen/{wasmx → mythos}/wasmx/v1/query.rpc.Query.js +22 -9
  11. package/main/codegen/{wasmx → mythos}/wasmx/v1/tx.amino.js +80 -24
  12. package/main/codegen/{wasmx → mythos}/wasmx/v1/tx.js +25 -4
  13. package/main/codegen/{wasmx → mythos}/wasmx/v1/tx.registry.js +41 -41
  14. package/main/codegen/{wasmx → mythos}/wasmx/v1/tx.rpc.msg.js +8 -8
  15. package/main/codegen/{wasmx → mythos}/websrv/v1/query.rpc.Query.js +7 -7
  16. package/main/codegen/{wasmx → mythos}/websrv/v1/tx.amino.js +6 -6
  17. package/main/codegen/{wasmx → mythos}/websrv/v1/tx.registry.js +16 -16
  18. package/main/codegen/{wasmx → mythos}/websrv/v1/tx.rpc.msg.js +3 -3
  19. package/main/codegen/tendermint/bundle.js +17 -17
  20. package/module/codegen/index.js +3 -3
  21. package/module/codegen/{wasmx → mythos}/bundle.js +19 -19
  22. package/module/codegen/{wasmx → mythos}/client.js +11 -11
  23. package/module/codegen/{wasmx → mythos}/rpc.query.js +1 -1
  24. package/module/codegen/{wasmx → mythos}/rpc.tx.js +1 -1
  25. package/module/codegen/{wasmx → mythos}/wasmx/v1/contract.js +151 -21
  26. package/module/codegen/{wasmx → mythos}/wasmx/v1/genesis.js +15 -15
  27. package/module/codegen/{wasmx → mythos}/wasmx/v1/query.js +77 -53
  28. package/module/codegen/{wasmx → mythos}/wasmx/v1/query.rpc.Query.js +19 -10
  29. package/module/codegen/{wasmx → mythos}/wasmx/v1/tx.amino.js +80 -24
  30. package/module/codegen/{wasmx → mythos}/wasmx/v1/tx.js +25 -4
  31. package/module/codegen/{wasmx → mythos}/wasmx/v1/tx.registry.js +41 -41
  32. package/module/codegen/{wasmx → mythos}/wasmx/v1/tx.rpc.msg.js +8 -8
  33. package/module/codegen/{wasmx → mythos}/websrv/v1/query.rpc.Query.js +7 -7
  34. package/module/codegen/{wasmx → mythos}/websrv/v1/tx.amino.js +6 -6
  35. package/module/codegen/{wasmx → mythos}/websrv/v1/tx.registry.js +16 -16
  36. package/module/codegen/{wasmx → mythos}/websrv/v1/tx.rpc.msg.js +3 -3
  37. package/module/codegen/tendermint/bundle.js +17 -17
  38. package/package.json +1 -1
  39. package/src/codegen/index.ts +3 -3
  40. package/src/codegen/{wasmx → mythos}/bundle.ts +21 -21
  41. package/src/codegen/{wasmx → mythos}/client.ts +12 -12
  42. package/src/codegen/{wasmx → mythos}/rpc.query.ts +1 -1
  43. package/src/codegen/{wasmx → mythos}/rpc.tx.ts +1 -1
  44. package/src/codegen/{wasmx → mythos}/wasmx/v1/contract.ts +228 -33
  45. package/src/codegen/{wasmx → mythos}/wasmx/v1/genesis.ts +19 -19
  46. package/src/codegen/{wasmx → mythos}/wasmx/v1/query.rpc.Query.ts +24 -10
  47. package/src/codegen/{wasmx → mythos}/wasmx/v1/query.ts +123 -82
  48. package/src/codegen/{wasmx → mythos}/wasmx/v1/tx.amino.ts +114 -32
  49. package/src/codegen/{wasmx → mythos}/wasmx/v1/tx.registry.ts +41 -41
  50. package/src/codegen/{wasmx → mythos}/wasmx/v1/tx.rpc.msg.ts +8 -8
  51. package/src/codegen/{wasmx → mythos}/wasmx/v1/tx.ts +33 -4
  52. package/src/codegen/{wasmx → mythos}/websrv/v1/query.rpc.Query.ts +7 -7
  53. package/src/codegen/{wasmx → mythos}/websrv/v1/tx.amino.ts +9 -9
  54. package/src/codegen/{wasmx → mythos}/websrv/v1/tx.registry.ts +16 -16
  55. package/src/codegen/{wasmx → mythos}/websrv/v1/tx.rpc.msg.ts +3 -3
  56. package/src/codegen/tendermint/bundle.ts +22 -22
  57. package/types/codegen/index.d.ts +3 -3
  58. package/types/codegen/mythos/bundle.d.ts +1039 -0
  59. package/types/codegen/{wasmx → mythos}/client.d.ts +31 -31
  60. package/types/codegen/mythos/index.d.ts +11 -0
  61. package/types/codegen/{wasmx → mythos}/rpc.query.d.ts +10 -10
  62. package/types/codegen/{wasmx → mythos}/rpc.tx.d.ts +1 -1
  63. package/types/codegen/{wasmx/wasmx → mythos/wasmx/v1}/tx.amino.d.ts +16 -16
  64. package/types/codegen/{wasmx → mythos}/websrv/v1/tx.amino.d.ts +6 -6
  65. package/types/codegen/tendermint/bundle.d.ts +456 -456
  66. package/types/codegen/wasmx/bundle.d.ts +0 -1039
  67. package/types/codegen/wasmx/index.d.ts +0 -11
  68. package/types/codegen/wasmx/lcd.d.ts +0 -14
  69. package/types/codegen/wasmx/wasmx/contract.d.ts +0 -139
  70. package/types/codegen/wasmx/wasmx/genesis.d.ts +0 -121
  71. package/types/codegen/wasmx/wasmx/query.d.ts +0 -451
  72. package/types/codegen/wasmx/wasmx/query.lcd.d.ts +0 -17
  73. package/types/codegen/wasmx/wasmx/query.rpc.Query.d.ts +0 -48
  74. package/types/codegen/wasmx/wasmx/tx.d.ts +0 -404
  75. package/types/codegen/wasmx/wasmx/tx.rpc.msg.d.ts +0 -39
  76. package/types/codegen/wasmx/wasmx/v1/params.d.ts +0 -14
  77. package/types/codegen/wasmx/wasmx/v1/tx.amino.d.ts +0 -134
  78. package/types/codegen/wasmx/wasmx/v1/tx.registry.d.ts +0 -176
  79. package/types/codegen/wasmx/websrv/query.d.ts +0 -315
  80. package/types/codegen/wasmx/websrv/query.rpc.Query.d.ts +0 -40
  81. package/types/codegen/wasmx/websrv/tx.amino.d.ts +0 -41
  82. package/types/codegen/wasmx/websrv/tx.d.ts +0 -90
  83. package/types/codegen/wasmx/websrv/tx.rpc.msg.d.ts +0 -18
  84. package/types/codegen/wasmx/websrv/v1/genesis.d.ts +0 -17
  85. package/types/codegen/wasmx/websrv/v1/params.d.ts +0 -16
  86. package/types/codegen/wasmx/websrv/v1/proposal.d.ts +0 -65
  87. package/types/codegen/wasmx/websrv/v1/tx.registry.d.ts +0 -76
  88. /package/main/codegen/{wasmx → mythos}/index.js +0 -0
  89. /package/main/codegen/{wasmx → mythos}/wasmx/v1/params.js +0 -0
  90. /package/main/codegen/{wasmx → mythos}/websrv/v1/genesis.js +0 -0
  91. /package/main/codegen/{wasmx → mythos}/websrv/v1/params.js +0 -0
  92. /package/main/codegen/{wasmx → mythos}/websrv/v1/proposal.js +0 -0
  93. /package/main/codegen/{wasmx → mythos}/websrv/v1/query.js +0 -0
  94. /package/main/codegen/{wasmx → mythos}/websrv/v1/tx.js +0 -0
  95. /package/module/codegen/{wasmx → mythos}/index.js +0 -0
  96. /package/module/codegen/{wasmx → mythos}/wasmx/v1/params.js +0 -0
  97. /package/module/codegen/{wasmx → mythos}/websrv/v1/genesis.js +0 -0
  98. /package/module/codegen/{wasmx → mythos}/websrv/v1/params.js +0 -0
  99. /package/module/codegen/{wasmx → mythos}/websrv/v1/proposal.js +0 -0
  100. /package/module/codegen/{wasmx → mythos}/websrv/v1/query.js +0 -0
  101. /package/module/codegen/{wasmx → mythos}/websrv/v1/tx.js +0 -0
  102. /package/src/codegen/{wasmx → mythos}/index.ts +0 -0
  103. /package/src/codegen/{wasmx → mythos}/wasmx/v1/params.ts +0 -0
  104. /package/src/codegen/{wasmx → mythos}/websrv/v1/genesis.ts +0 -0
  105. /package/src/codegen/{wasmx → mythos}/websrv/v1/params.ts +0 -0
  106. /package/src/codegen/{wasmx → mythos}/websrv/v1/proposal.ts +0 -0
  107. /package/src/codegen/{wasmx → mythos}/websrv/v1/query.ts +0 -0
  108. /package/src/codegen/{wasmx → mythos}/websrv/v1/tx.ts +0 -0
  109. /package/types/codegen/{wasmx → mythos}/wasmx/v1/contract.d.ts +0 -0
  110. /package/types/codegen/{wasmx → mythos}/wasmx/v1/genesis.d.ts +0 -0
  111. /package/types/codegen/{wasmx/wasmx → mythos/wasmx/v1}/params.d.ts +0 -0
  112. /package/types/codegen/{wasmx → mythos}/wasmx/v1/query.d.ts +0 -0
  113. /package/types/codegen/{wasmx → mythos}/wasmx/v1/query.rpc.Query.d.ts +0 -0
  114. /package/types/codegen/{wasmx → mythos}/wasmx/v1/tx.d.ts +0 -0
  115. /package/types/codegen/{wasmx/wasmx → mythos/wasmx/v1}/tx.registry.d.ts +0 -0
  116. /package/types/codegen/{wasmx → mythos}/wasmx/v1/tx.rpc.msg.d.ts +0 -0
  117. /package/types/codegen/{wasmx/websrv → mythos/websrv/v1}/genesis.d.ts +0 -0
  118. /package/types/codegen/{wasmx/websrv → mythos/websrv/v1}/params.d.ts +0 -0
  119. /package/types/codegen/{wasmx/websrv → mythos/websrv/v1}/proposal.d.ts +0 -0
  120. /package/types/codegen/{wasmx → mythos}/websrv/v1/query.d.ts +0 -0
  121. /package/types/codegen/{wasmx → mythos}/websrv/v1/query.rpc.Query.d.ts +0 -0
  122. /package/types/codegen/{wasmx → mythos}/websrv/v1/tx.d.ts +0 -0
  123. /package/types/codegen/{wasmx/websrv → mythos/websrv/v1}/tx.registry.d.ts +0 -0
  124. /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