@agoric/client-utils 0.1.1-dev-c393dc4.0.c393dc4 → 0.1.1-other-dev-fbe72e7.0.fbe72e7
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/codegen/agoric/bundle.d.ts +87 -4
- package/dist/codegen/agoric/bundle.d.ts.map +1 -1
- package/dist/codegen/agoric/rpc.query.d.ts +1 -0
- package/dist/codegen/agoric/rpc.query.d.ts.map +1 -1
- package/dist/codegen/agoric/swingset/msgs.d.ts +113 -15
- package/dist/codegen/agoric/swingset/msgs.d.ts.map +1 -1
- package/dist/codegen/agoric/swingset/msgs.js +230 -6
- package/dist/codegen/agoric/swingset/msgs.js.map +1 -1
- package/dist/codegen/agoric/swingset/msgs.rpc.msg.d.ts +4 -1
- package/dist/codegen/agoric/swingset/msgs.rpc.msg.d.ts.map +1 -1
- package/dist/codegen/agoric/swingset/msgs.rpc.msg.js +7 -1
- package/dist/codegen/agoric/swingset/msgs.rpc.msg.js.map +1 -1
- package/dist/codegen/agoric/swingset/query.d.ts +54 -1
- package/dist/codegen/agoric/swingset/query.d.ts.map +1 -1
- package/dist/codegen/agoric/swingset/query.js +181 -1
- package/dist/codegen/agoric/swingset/query.js.map +1 -1
- package/dist/codegen/agoric/swingset/query.rpc.Query.d.ts +5 -1
- package/dist/codegen/agoric/swingset/query.rpc.Query.d.ts.map +1 -1
- package/dist/codegen/agoric/swingset/query.rpc.Query.js +10 -1
- package/dist/codegen/agoric/swingset/query.rpc.Query.js.map +1 -1
- package/dist/codegen/agoric/swingset/swingset.d.ts +147 -0
- package/dist/codegen/agoric/swingset/swingset.d.ts.map +1 -1
- package/dist/codegen/agoric/swingset/swingset.js +422 -0
- package/dist/codegen/agoric/swingset/swingset.js.map +1 -1
- package/package.json +8 -8
|
@@ -24,7 +24,12 @@ export declare namespace agoric {
|
|
|
24
24
|
params(request?: _2.QueryParamsRequest): Promise<_2.QueryParamsResponse>;
|
|
25
25
|
egress(request: _2.QueryEgressRequest): Promise<_2.QueryEgressResponse>;
|
|
26
26
|
mailbox(request: _2.QueryMailboxRequest): Promise<_2.QueryMailboxResponse>;
|
|
27
|
+
chunkedArtifactStatus(request: _2.QueryChunkedArtifactStatusRequest): Promise<_2.QueryChunkedArtifactStatusResponse>;
|
|
27
28
|
};
|
|
29
|
+
chunkStateFromJSON(object: any): _3.ChunkState;
|
|
30
|
+
chunkStateToJSON(object: _3.ChunkState): string;
|
|
31
|
+
ChunkState: typeof _3.ChunkState;
|
|
32
|
+
ChunkStateSDKType: typeof _3.ChunkState;
|
|
28
33
|
CoreEvalProposal: {
|
|
29
34
|
typeUrl: "/agoric.swingset.CoreEvalProposal";
|
|
30
35
|
encode(message: _3.CoreEvalProposal, writer?: import("../binary.js").BinaryWriter): import("../binary.js").BinaryWriter;
|
|
@@ -135,6 +140,39 @@ export declare namespace agoric {
|
|
|
135
140
|
toProto(message: _3.SwingStoreArtifact): Uint8Array;
|
|
136
141
|
toProtoMsg(message: _3.SwingStoreArtifact): _3.SwingStoreArtifactProtoMsg;
|
|
137
142
|
};
|
|
143
|
+
ChunkedArtifact: {
|
|
144
|
+
typeUrl: "/agoric.swingset.ChunkedArtifact";
|
|
145
|
+
encode(message: _3.ChunkedArtifact, writer?: import("../binary.js").BinaryWriter): import("../binary.js").BinaryWriter;
|
|
146
|
+
decode(input: import("../binary.js").BinaryReader | Uint8Array, length?: number): _3.ChunkedArtifact;
|
|
147
|
+
fromJSON(object: any): _3.ChunkedArtifact;
|
|
148
|
+
toJSON(message: _3.ChunkedArtifact): import("../json-safe.js").JsonSafe<_3.ChunkedArtifact>;
|
|
149
|
+
fromPartial(object: Partial<_3.ChunkedArtifact>): _3.ChunkedArtifact;
|
|
150
|
+
fromProtoMsg(message: _3.ChunkedArtifactProtoMsg): _3.ChunkedArtifact;
|
|
151
|
+
toProto(message: _3.ChunkedArtifact): Uint8Array;
|
|
152
|
+
toProtoMsg(message: _3.ChunkedArtifact): _3.ChunkedArtifactProtoMsg;
|
|
153
|
+
};
|
|
154
|
+
ChunkInfo: {
|
|
155
|
+
typeUrl: "/agoric.swingset.ChunkInfo";
|
|
156
|
+
encode(message: _3.ChunkInfo, writer?: import("../binary.js").BinaryWriter): import("../binary.js").BinaryWriter;
|
|
157
|
+
decode(input: import("../binary.js").BinaryReader | Uint8Array, length?: number): _3.ChunkInfo;
|
|
158
|
+
fromJSON(object: any): _3.ChunkInfo;
|
|
159
|
+
toJSON(message: _3.ChunkInfo): import("../json-safe.js").JsonSafe<_3.ChunkInfo>;
|
|
160
|
+
fromPartial(object: Partial<_3.ChunkInfo>): _3.ChunkInfo;
|
|
161
|
+
fromProtoMsg(message: _3.ChunkInfoProtoMsg): _3.ChunkInfo;
|
|
162
|
+
toProto(message: _3.ChunkInfo): Uint8Array;
|
|
163
|
+
toProtoMsg(message: _3.ChunkInfo): _3.ChunkInfoProtoMsg;
|
|
164
|
+
};
|
|
165
|
+
ChunkedArtifactNode: {
|
|
166
|
+
typeUrl: "/agoric.swingset.ChunkedArtifactNode";
|
|
167
|
+
encode(message: _3.ChunkedArtifactNode, writer?: import("../binary.js").BinaryWriter): import("../binary.js").BinaryWriter;
|
|
168
|
+
decode(input: import("../binary.js").BinaryReader | Uint8Array, length?: number): _3.ChunkedArtifactNode;
|
|
169
|
+
fromJSON(object: any): _3.ChunkedArtifactNode;
|
|
170
|
+
toJSON(message: _3.ChunkedArtifactNode): import("../json-safe.js").JsonSafe<_3.ChunkedArtifactNode>;
|
|
171
|
+
fromPartial(object: Partial<_3.ChunkedArtifactNode>): _3.ChunkedArtifactNode;
|
|
172
|
+
fromProtoMsg(message: _3.ChunkedArtifactNodeProtoMsg): _3.ChunkedArtifactNode;
|
|
173
|
+
toProto(message: _3.ChunkedArtifactNode): Uint8Array;
|
|
174
|
+
toProtoMsg(message: _3.ChunkedArtifactNode): _3.ChunkedArtifactNodeProtoMsg;
|
|
175
|
+
};
|
|
138
176
|
QueryParamsRequest: {
|
|
139
177
|
typeUrl: "/agoric.swingset.QueryParamsRequest";
|
|
140
178
|
encode(_: _2.QueryParamsRequest, writer?: import("../binary.js").BinaryWriter): import("../binary.js").BinaryWriter;
|
|
@@ -201,6 +239,28 @@ export declare namespace agoric {
|
|
|
201
239
|
toProto(message: _2.QueryMailboxResponse): Uint8Array;
|
|
202
240
|
toProtoMsg(message: _2.QueryMailboxResponse): _2.QueryMailboxResponseProtoMsg;
|
|
203
241
|
};
|
|
242
|
+
QueryChunkedArtifactStatusRequest: {
|
|
243
|
+
typeUrl: "/agoric.swingset.QueryChunkedArtifactStatusRequest";
|
|
244
|
+
encode(message: _2.QueryChunkedArtifactStatusRequest, writer?: import("../binary.js").BinaryWriter): import("../binary.js").BinaryWriter;
|
|
245
|
+
decode(input: import("../binary.js").BinaryReader | Uint8Array, length?: number): _2.QueryChunkedArtifactStatusRequest;
|
|
246
|
+
fromJSON(object: any): _2.QueryChunkedArtifactStatusRequest;
|
|
247
|
+
toJSON(message: _2.QueryChunkedArtifactStatusRequest): import("../json-safe.js").JsonSafe<_2.QueryChunkedArtifactStatusRequest>;
|
|
248
|
+
fromPartial(object: Partial<_2.QueryChunkedArtifactStatusRequest>): _2.QueryChunkedArtifactStatusRequest;
|
|
249
|
+
fromProtoMsg(message: _2.QueryChunkedArtifactStatusRequestProtoMsg): _2.QueryChunkedArtifactStatusRequest;
|
|
250
|
+
toProto(message: _2.QueryChunkedArtifactStatusRequest): Uint8Array;
|
|
251
|
+
toProtoMsg(message: _2.QueryChunkedArtifactStatusRequest): _2.QueryChunkedArtifactStatusRequestProtoMsg;
|
|
252
|
+
};
|
|
253
|
+
QueryChunkedArtifactStatusResponse: {
|
|
254
|
+
typeUrl: "/agoric.swingset.QueryChunkedArtifactStatusResponse";
|
|
255
|
+
encode(message: _2.QueryChunkedArtifactStatusResponse, writer?: import("../binary.js").BinaryWriter): import("../binary.js").BinaryWriter;
|
|
256
|
+
decode(input: import("../binary.js").BinaryReader | Uint8Array, length?: number): _2.QueryChunkedArtifactStatusResponse;
|
|
257
|
+
fromJSON(object: any): _2.QueryChunkedArtifactStatusResponse;
|
|
258
|
+
toJSON(message: _2.QueryChunkedArtifactStatusResponse): import("../json-safe.js").JsonSafe<_2.QueryChunkedArtifactStatusResponse>;
|
|
259
|
+
fromPartial(object: Partial<_2.QueryChunkedArtifactStatusResponse>): _2.QueryChunkedArtifactStatusResponse;
|
|
260
|
+
fromProtoMsg(message: _2.QueryChunkedArtifactStatusResponseProtoMsg): _2.QueryChunkedArtifactStatusResponse;
|
|
261
|
+
toProto(message: _2.QueryChunkedArtifactStatusResponse): Uint8Array;
|
|
262
|
+
toProtoMsg(message: _2.QueryChunkedArtifactStatusResponse): _2.QueryChunkedArtifactStatusResponseProtoMsg;
|
|
263
|
+
};
|
|
204
264
|
MsgDeliverInbound: {
|
|
205
265
|
typeUrl: "/agoric.swingset.MsgDeliverInbound";
|
|
206
266
|
encode(message: _1.MsgDeliverInbound, writer?: import("../binary.js").BinaryWriter): import("../binary.js").BinaryWriter;
|
|
@@ -302,15 +362,37 @@ export declare namespace agoric {
|
|
|
302
362
|
};
|
|
303
363
|
MsgInstallBundleResponse: {
|
|
304
364
|
typeUrl: "/agoric.swingset.MsgInstallBundleResponse";
|
|
305
|
-
encode(
|
|
365
|
+
encode(message: _1.MsgInstallBundleResponse, writer?: import("../binary.js").BinaryWriter): import("../binary.js").BinaryWriter;
|
|
306
366
|
decode(input: import("../binary.js").BinaryReader | Uint8Array, length?: number): _1.MsgInstallBundleResponse;
|
|
307
|
-
fromJSON(
|
|
308
|
-
toJSON(
|
|
309
|
-
fromPartial(
|
|
367
|
+
fromJSON(object: any): _1.MsgInstallBundleResponse;
|
|
368
|
+
toJSON(message: _1.MsgInstallBundleResponse): import("../json-safe.js").JsonSafe<_1.MsgInstallBundleResponse>;
|
|
369
|
+
fromPartial(object: Partial<_1.MsgInstallBundleResponse>): _1.MsgInstallBundleResponse;
|
|
310
370
|
fromProtoMsg(message: _1.MsgInstallBundleResponseProtoMsg): _1.MsgInstallBundleResponse;
|
|
311
371
|
toProto(message: _1.MsgInstallBundleResponse): Uint8Array;
|
|
312
372
|
toProtoMsg(message: _1.MsgInstallBundleResponse): _1.MsgInstallBundleResponseProtoMsg;
|
|
313
373
|
};
|
|
374
|
+
MsgSendChunk: {
|
|
375
|
+
typeUrl: "/agoric.swingset.MsgSendChunk";
|
|
376
|
+
encode(message: _1.MsgSendChunk, writer?: import("../binary.js").BinaryWriter): import("../binary.js").BinaryWriter;
|
|
377
|
+
decode(input: import("../binary.js").BinaryReader | Uint8Array, length?: number): _1.MsgSendChunk;
|
|
378
|
+
fromJSON(object: any): _1.MsgSendChunk;
|
|
379
|
+
toJSON(message: _1.MsgSendChunk): import("../json-safe.js").JsonSafe<_1.MsgSendChunk>;
|
|
380
|
+
fromPartial(object: Partial<_1.MsgSendChunk>): _1.MsgSendChunk;
|
|
381
|
+
fromProtoMsg(message: _1.MsgSendChunkProtoMsg): _1.MsgSendChunk;
|
|
382
|
+
toProto(message: _1.MsgSendChunk): Uint8Array;
|
|
383
|
+
toProtoMsg(message: _1.MsgSendChunk): _1.MsgSendChunkProtoMsg;
|
|
384
|
+
};
|
|
385
|
+
MsgSendChunkResponse: {
|
|
386
|
+
typeUrl: "/agoric.swingset.MsgSendChunkResponse";
|
|
387
|
+
encode(message: _1.MsgSendChunkResponse, writer?: import("../binary.js").BinaryWriter): import("../binary.js").BinaryWriter;
|
|
388
|
+
decode(input: import("../binary.js").BinaryReader | Uint8Array, length?: number): _1.MsgSendChunkResponse;
|
|
389
|
+
fromJSON(object: any): _1.MsgSendChunkResponse;
|
|
390
|
+
toJSON(message: _1.MsgSendChunkResponse): import("../json-safe.js").JsonSafe<_1.MsgSendChunkResponse>;
|
|
391
|
+
fromPartial(object: Partial<_1.MsgSendChunkResponse>): _1.MsgSendChunkResponse;
|
|
392
|
+
fromProtoMsg(message: _1.MsgSendChunkResponseProtoMsg): _1.MsgSendChunkResponse;
|
|
393
|
+
toProto(message: _1.MsgSendChunkResponse): Uint8Array;
|
|
394
|
+
toProtoMsg(message: _1.MsgSendChunkResponse): _1.MsgSendChunkResponseProtoMsg;
|
|
395
|
+
};
|
|
314
396
|
GenesisState: {
|
|
315
397
|
typeUrl: "/agoric.swingset.GenesisState";
|
|
316
398
|
encode(message: _0.GenesisState, writer?: import("../binary.js").BinaryWriter): import("../binary.js").BinaryWriter;
|
|
@@ -676,6 +758,7 @@ export declare namespace agoric {
|
|
|
676
758
|
params(request?: _2.QueryParamsRequest): Promise<_2.QueryParamsResponse>;
|
|
677
759
|
egress(request: _2.QueryEgressRequest): Promise<_2.QueryEgressResponse>;
|
|
678
760
|
mailbox(request: _2.QueryMailboxRequest): Promise<_2.QueryMailboxResponse>;
|
|
761
|
+
chunkedArtifactStatus(request: _2.QueryChunkedArtifactStatusRequest): Promise<_2.QueryChunkedArtifactStatusResponse>;
|
|
679
762
|
};
|
|
680
763
|
vbank: {
|
|
681
764
|
params(request?: _6.QueryParamsRequest): Promise<_6.QueryParamsResponse>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"bundle.d.ts","sourceRoot":"","sources":["../../../src/codegen/agoric/bundle.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,MAAM,uBAAuB,CAAC;AAC5C,OAAO,KAAK,EAAE,MAAM,oBAAoB,CAAC;AACzC,OAAO,KAAK,EAAE,MAAM,qBAAqB,CAAC;AAC1C,OAAO,KAAK,EAAE,MAAM,wBAAwB,CAAC;AAC7C,OAAO,KAAK,EAAE,MAAM,oBAAoB,CAAC;AAEzC,OAAO,KAAK,EAAE,MAAM,kBAAkB,CAAC;AACvC,OAAO,KAAK,EAAE,MAAM,kBAAkB,CAAC;AACvC,OAAO,KAAK,EAAE,MAAM,gBAAgB,CAAC;AACrC,OAAO,KAAK,EAAE,MAAM,8BAA8B,CAAC;AACnD,OAAO,KAAK,GAAG,MAAM,uBAAuB,CAAC;AAC7C,OAAO,KAAK,GAAG,MAAM,qBAAqB,CAAC;AAC3C,OAAO,KAAK,GAAG,MAAM,wBAAwB,CAAC;AAC9C,OAAO,KAAK,GAAG,MAAM,wBAAwB,CAAC;AAC9C,OAAO,KAAK,IAAI,MAAM,+BAA+B,CAAC;AACtD,OAAO,KAAK,IAAI,MAAM,4BAA4B,CAAC;AACnD,OAAO,KAAK,IAAI,MAAM,+BAA+B,CAAC;AACtD,OAAO,KAAK,IAAI,MAAM,4BAA4B,CAAC;AACnD,OAAO,KAAK,IAAI,MAAM,wBAAwB,CAAC;AAG/C,yBAAiB,MAAM,CAAC;IACf,MAAM,QAAQ;;;
|
|
1
|
+
{"version":3,"file":"bundle.d.ts","sourceRoot":"","sources":["../../../src/codegen/agoric/bundle.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,MAAM,uBAAuB,CAAC;AAC5C,OAAO,KAAK,EAAE,MAAM,oBAAoB,CAAC;AACzC,OAAO,KAAK,EAAE,MAAM,qBAAqB,CAAC;AAC1C,OAAO,KAAK,EAAE,MAAM,wBAAwB,CAAC;AAC7C,OAAO,KAAK,EAAE,MAAM,oBAAoB,CAAC;AAEzC,OAAO,KAAK,EAAE,MAAM,kBAAkB,CAAC;AACvC,OAAO,KAAK,EAAE,MAAM,kBAAkB,CAAC;AACvC,OAAO,KAAK,EAAE,MAAM,gBAAgB,CAAC;AACrC,OAAO,KAAK,EAAE,MAAM,8BAA8B,CAAC;AACnD,OAAO,KAAK,GAAG,MAAM,uBAAuB,CAAC;AAC7C,OAAO,KAAK,GAAG,MAAM,qBAAqB,CAAC;AAC3C,OAAO,KAAK,GAAG,MAAM,wBAAwB,CAAC;AAC9C,OAAO,KAAK,GAAG,MAAM,wBAAwB,CAAC;AAC9C,OAAO,KAAK,IAAI,MAAM,+BAA+B,CAAC;AACtD,OAAO,KAAK,IAAI,MAAM,4BAA4B,CAAC;AACnD,OAAO,KAAK,IAAI,MAAM,+BAA+B,CAAC;AACtD,OAAO,KAAK,IAAI,MAAM,4BAA4B,CAAC;AACnD,OAAO,KAAK,IAAI,MAAM,wBAAwB,CAAC;AAG/C,yBAAiB,MAAM,CAAC;IACf,MAAM,QAAQ;;;kCAoC0xC,4CAAiB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;KA7B/zC,CAAC;IACK,MAAM,KAAK;;kCA4Be,4CAAiB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;KAtBjD,CAAC;IACK,MAAM,IAAI;;;;;;;;;;;;;;;;;;;;;;;;KAGhB,CAAC;IACK,MAAM,WAAW;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;KAEvB,CAAC;IACK,MAAM,QAAQ;;kCAcwoB,4CAAiB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;KAT7qB,CAAC;IACK,MAAM,SAAS;;;;;;;;;;;;KAErB,CAAC;IACK,MAAM,aAAa;6BApDU;;SACrB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;+BACwB;;SAE3B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;KAmDX,CAAC;CACH"}
|
|
@@ -7,6 +7,7 @@ export declare const createRPCQueryClient: ({ rpcEndpoint, }: {
|
|
|
7
7
|
params(request?: import("./swingset/query.js").QueryParamsRequest): Promise<import("./swingset/query.js").QueryParamsResponse>;
|
|
8
8
|
egress(request: import("./swingset/query.js").QueryEgressRequest): Promise<import("./swingset/query.js").QueryEgressResponse>;
|
|
9
9
|
mailbox(request: import("./swingset/query.js").QueryMailboxRequest): Promise<import("./swingset/query.js").QueryMailboxResponse>;
|
|
10
|
+
chunkedArtifactStatus(request: import("./swingset/query.js").QueryChunkedArtifactStatusRequest): Promise<import("./swingset/query.js").QueryChunkedArtifactStatusResponse>;
|
|
10
11
|
};
|
|
11
12
|
vbank: {
|
|
12
13
|
params(request?: import("./vbank/query.js").QueryParamsRequest): Promise<import("./vbank/query.js").QueryParamsResponse>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"rpc.query.d.ts","sourceRoot":"","sources":["../../../src/codegen/agoric/rpc.query.ts"],"names":[],"mappings":"AACA,OAAO,EAAsB,KAAK,YAAY,EAAE,MAAM,wBAAwB,CAAC;AAE/E,eAAO,MAAM,oBAAoB,GAAU,kBAExC;IACD,WAAW,EAAE,MAAM,GAAG,YAAY,CAAC;CACpC
|
|
1
|
+
{"version":3,"file":"rpc.query.d.ts","sourceRoot":"","sources":["../../../src/codegen/agoric/rpc.query.ts"],"names":[],"mappings":"AACA,OAAO,EAAsB,KAAK,YAAY,EAAE,MAAM,wBAAwB,CAAC;AAE/E,eAAO,MAAM,oBAAoB,GAAU,kBAExC;IACD,WAAW,EAAE,MAAM,GAAG,YAAY,CAAC;CACpC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EA6FA,CAAC"}
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { ChunkedArtifact, type ChunkedArtifactSDKType, ChunkInfo, type ChunkInfoSDKType } from './swingset.js';
|
|
1
2
|
import { BinaryReader, BinaryWriter } from '../../binary.js';
|
|
2
3
|
import { type JsonSafe } from '../../json-safe.js';
|
|
3
4
|
/** MsgDeliverInbound defines an SDK message for delivering an eventual send */
|
|
@@ -122,44 +123,119 @@ export interface MsgProvisionResponseProtoMsg {
|
|
|
122
123
|
/** MsgProvisionResponse is an empty reply. */
|
|
123
124
|
export interface MsgProvisionResponseSDKType {
|
|
124
125
|
}
|
|
125
|
-
/**
|
|
126
|
+
/**
|
|
127
|
+
* MsgInstallBundle carries a signed bundle to SwingSet.
|
|
128
|
+
* Of the fields bundle, compressed_bundle, and chunked_artifact, exactly one
|
|
129
|
+
* must be present: bundle if complete and uncompressed, compressed_bundle if
|
|
130
|
+
* complete and compressed, or chunked_artifact for a manifest of chunks to be
|
|
131
|
+
* submitted in subsequent messages.
|
|
132
|
+
*/
|
|
126
133
|
export interface MsgInstallBundle {
|
|
127
134
|
bundle: string;
|
|
128
135
|
submitter: Uint8Array;
|
|
129
|
-
/**
|
|
130
|
-
* Either bundle or compressed_bundle will be set.
|
|
131
|
-
* Default compression algorithm is gzip.
|
|
132
|
-
*/
|
|
136
|
+
/** Default compression algorithm is gzip. */
|
|
133
137
|
compressedBundle: Uint8Array;
|
|
134
|
-
/**
|
|
138
|
+
/** Total size in bytes of the bundle artifact. */
|
|
135
139
|
uncompressedSize: bigint;
|
|
140
|
+
/** Declaration of a chunked bundle. */
|
|
141
|
+
chunkedArtifact?: ChunkedArtifact;
|
|
136
142
|
}
|
|
137
143
|
export interface MsgInstallBundleProtoMsg {
|
|
138
144
|
typeUrl: '/agoric.swingset.MsgInstallBundle';
|
|
139
145
|
value: Uint8Array;
|
|
140
146
|
}
|
|
141
|
-
/**
|
|
147
|
+
/**
|
|
148
|
+
* MsgInstallBundle carries a signed bundle to SwingSet.
|
|
149
|
+
* Of the fields bundle, compressed_bundle, and chunked_artifact, exactly one
|
|
150
|
+
* must be present: bundle if complete and uncompressed, compressed_bundle if
|
|
151
|
+
* complete and compressed, or chunked_artifact for a manifest of chunks to be
|
|
152
|
+
* submitted in subsequent messages.
|
|
153
|
+
*/
|
|
142
154
|
export interface MsgInstallBundleSDKType {
|
|
143
155
|
bundle: string;
|
|
144
156
|
submitter: Uint8Array;
|
|
145
157
|
compressed_bundle: Uint8Array;
|
|
146
158
|
uncompressed_size: bigint;
|
|
159
|
+
chunked_artifact?: ChunkedArtifactSDKType;
|
|
147
160
|
}
|
|
148
161
|
/**
|
|
149
|
-
* MsgInstallBundleResponse is an empty acknowledgement that
|
|
150
|
-
* message has been queued for the SwingSet kernel's
|
|
162
|
+
* MsgInstallBundleResponse is either an empty acknowledgement that a bundle
|
|
163
|
+
* installation message has been queued for the SwingSet kernel's
|
|
164
|
+
* consideration, or for MsgInstallBundle requests that have a chunked artifact
|
|
165
|
+
* manifest instead of a compressed or uncompressed bundle: the identifier
|
|
166
|
+
* assigned for the chunked artifact for reference in subsequent MsgSendChunk
|
|
167
|
+
* messages.
|
|
151
168
|
*/
|
|
152
169
|
export interface MsgInstallBundleResponse {
|
|
170
|
+
/**
|
|
171
|
+
* The assigned identifier for a chunked artifact, if the caller is expected
|
|
172
|
+
* to call back with MsgSendChunk messages.
|
|
173
|
+
*/
|
|
174
|
+
chunkedArtifactId: bigint;
|
|
153
175
|
}
|
|
154
176
|
export interface MsgInstallBundleResponseProtoMsg {
|
|
155
177
|
typeUrl: '/agoric.swingset.MsgInstallBundleResponse';
|
|
156
178
|
value: Uint8Array;
|
|
157
179
|
}
|
|
158
180
|
/**
|
|
159
|
-
* MsgInstallBundleResponse is an empty acknowledgement that
|
|
160
|
-
* message has been queued for the SwingSet kernel's
|
|
181
|
+
* MsgInstallBundleResponse is either an empty acknowledgement that a bundle
|
|
182
|
+
* installation message has been queued for the SwingSet kernel's
|
|
183
|
+
* consideration, or for MsgInstallBundle requests that have a chunked artifact
|
|
184
|
+
* manifest instead of a compressed or uncompressed bundle: the identifier
|
|
185
|
+
* assigned for the chunked artifact for reference in subsequent MsgSendChunk
|
|
186
|
+
* messages.
|
|
161
187
|
*/
|
|
162
188
|
export interface MsgInstallBundleResponseSDKType {
|
|
189
|
+
chunked_artifact_id: bigint;
|
|
190
|
+
}
|
|
191
|
+
/**
|
|
192
|
+
* MsgSendChunk carries a chunk of an artifact through RPC to the chain.
|
|
193
|
+
* Individual chunks are addressed by the chunked artifact identifier and
|
|
194
|
+
* the zero-based index of the chunk among all chunks as mentioned in the
|
|
195
|
+
* manifest provided to MsgInstallBundle.
|
|
196
|
+
*/
|
|
197
|
+
export interface MsgSendChunk {
|
|
198
|
+
chunkedArtifactId: bigint;
|
|
199
|
+
submitter: Uint8Array;
|
|
200
|
+
chunkIndex: bigint;
|
|
201
|
+
chunkData: Uint8Array;
|
|
202
|
+
}
|
|
203
|
+
export interface MsgSendChunkProtoMsg {
|
|
204
|
+
typeUrl: '/agoric.swingset.MsgSendChunk';
|
|
205
|
+
value: Uint8Array;
|
|
206
|
+
}
|
|
207
|
+
/**
|
|
208
|
+
* MsgSendChunk carries a chunk of an artifact through RPC to the chain.
|
|
209
|
+
* Individual chunks are addressed by the chunked artifact identifier and
|
|
210
|
+
* the zero-based index of the chunk among all chunks as mentioned in the
|
|
211
|
+
* manifest provided to MsgInstallBundle.
|
|
212
|
+
*/
|
|
213
|
+
export interface MsgSendChunkSDKType {
|
|
214
|
+
chunked_artifact_id: bigint;
|
|
215
|
+
submitter: Uint8Array;
|
|
216
|
+
chunk_index: bigint;
|
|
217
|
+
chunk_data: Uint8Array;
|
|
218
|
+
}
|
|
219
|
+
/**
|
|
220
|
+
* MsgSendChunkResponse is an acknowledgement that a chunk has been received by
|
|
221
|
+
* the chain.
|
|
222
|
+
*/
|
|
223
|
+
export interface MsgSendChunkResponse {
|
|
224
|
+
chunkedArtifactId: bigint;
|
|
225
|
+
/** The current state of the chunk. */
|
|
226
|
+
chunk?: ChunkInfo;
|
|
227
|
+
}
|
|
228
|
+
export interface MsgSendChunkResponseProtoMsg {
|
|
229
|
+
typeUrl: '/agoric.swingset.MsgSendChunkResponse';
|
|
230
|
+
value: Uint8Array;
|
|
231
|
+
}
|
|
232
|
+
/**
|
|
233
|
+
* MsgSendChunkResponse is an acknowledgement that a chunk has been received by
|
|
234
|
+
* the chain.
|
|
235
|
+
*/
|
|
236
|
+
export interface MsgSendChunkResponseSDKType {
|
|
237
|
+
chunked_artifact_id: bigint;
|
|
238
|
+
chunk?: ChunkInfoSDKType;
|
|
163
239
|
}
|
|
164
240
|
export declare const MsgDeliverInbound: {
|
|
165
241
|
typeUrl: "/agoric.swingset.MsgDeliverInbound";
|
|
@@ -262,13 +338,35 @@ export declare const MsgInstallBundle: {
|
|
|
262
338
|
};
|
|
263
339
|
export declare const MsgInstallBundleResponse: {
|
|
264
340
|
typeUrl: "/agoric.swingset.MsgInstallBundleResponse";
|
|
265
|
-
encode(
|
|
341
|
+
encode(message: MsgInstallBundleResponse, writer?: BinaryWriter): BinaryWriter;
|
|
266
342
|
decode(input: BinaryReader | Uint8Array, length?: number): MsgInstallBundleResponse;
|
|
267
|
-
fromJSON(
|
|
268
|
-
toJSON(
|
|
269
|
-
fromPartial(
|
|
343
|
+
fromJSON(object: any): MsgInstallBundleResponse;
|
|
344
|
+
toJSON(message: MsgInstallBundleResponse): JsonSafe<MsgInstallBundleResponse>;
|
|
345
|
+
fromPartial(object: Partial<MsgInstallBundleResponse>): MsgInstallBundleResponse;
|
|
270
346
|
fromProtoMsg(message: MsgInstallBundleResponseProtoMsg): MsgInstallBundleResponse;
|
|
271
347
|
toProto(message: MsgInstallBundleResponse): Uint8Array;
|
|
272
348
|
toProtoMsg(message: MsgInstallBundleResponse): MsgInstallBundleResponseProtoMsg;
|
|
273
349
|
};
|
|
350
|
+
export declare const MsgSendChunk: {
|
|
351
|
+
typeUrl: "/agoric.swingset.MsgSendChunk";
|
|
352
|
+
encode(message: MsgSendChunk, writer?: BinaryWriter): BinaryWriter;
|
|
353
|
+
decode(input: BinaryReader | Uint8Array, length?: number): MsgSendChunk;
|
|
354
|
+
fromJSON(object: any): MsgSendChunk;
|
|
355
|
+
toJSON(message: MsgSendChunk): JsonSafe<MsgSendChunk>;
|
|
356
|
+
fromPartial(object: Partial<MsgSendChunk>): MsgSendChunk;
|
|
357
|
+
fromProtoMsg(message: MsgSendChunkProtoMsg): MsgSendChunk;
|
|
358
|
+
toProto(message: MsgSendChunk): Uint8Array;
|
|
359
|
+
toProtoMsg(message: MsgSendChunk): MsgSendChunkProtoMsg;
|
|
360
|
+
};
|
|
361
|
+
export declare const MsgSendChunkResponse: {
|
|
362
|
+
typeUrl: "/agoric.swingset.MsgSendChunkResponse";
|
|
363
|
+
encode(message: MsgSendChunkResponse, writer?: BinaryWriter): BinaryWriter;
|
|
364
|
+
decode(input: BinaryReader | Uint8Array, length?: number): MsgSendChunkResponse;
|
|
365
|
+
fromJSON(object: any): MsgSendChunkResponse;
|
|
366
|
+
toJSON(message: MsgSendChunkResponse): JsonSafe<MsgSendChunkResponse>;
|
|
367
|
+
fromPartial(object: Partial<MsgSendChunkResponse>): MsgSendChunkResponse;
|
|
368
|
+
fromProtoMsg(message: MsgSendChunkResponseProtoMsg): MsgSendChunkResponse;
|
|
369
|
+
toProto(message: MsgSendChunkResponse): Uint8Array;
|
|
370
|
+
toProtoMsg(message: MsgSendChunkResponse): MsgSendChunkResponseProtoMsg;
|
|
371
|
+
};
|
|
274
372
|
//# sourceMappingURL=msgs.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"msgs.d.ts","sourceRoot":"","sources":["../../../../src/codegen/agoric/swingset/msgs.ts"],"names":[],"mappings":"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
|
|
1
|
+
{"version":3,"file":"msgs.d.ts","sourceRoot":"","sources":["../../../../src/codegen/agoric/swingset/msgs.ts"],"names":[],"mappings":"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"}
|