@agoric/orchestration 0.3.0-u23.0 → 0.3.0-u23.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/index.d.ts +9 -0
- package/package.json +15 -15
- package/src/axelar-types.d.ts +53 -0
- package/src/axelar-types.d.ts.map +1 -0
- package/src/cctp-chain-info.d.ts +65 -0
- package/src/cctp-chain-info.d.ts.map +1 -0
- package/src/chain-capabilities.d.ts +12 -0
- package/src/chain-capabilities.d.ts.map +1 -0
- package/src/chain-info.d.ts +10267 -0
- package/src/chain-info.d.ts.map +1 -0
- package/src/cosmos-api.d.ts +437 -0
- package/src/cosmos-api.d.ts.map +1 -0
- package/src/ethereum-api.d.ts +9 -0
- package/src/ethereum-api.d.ts.map +1 -0
- package/src/examples/auto-stake-it-tap-kit.d.ts +50 -0
- package/src/examples/auto-stake-it-tap-kit.d.ts.map +1 -0
- package/src/examples/auto-stake-it.contract.d.ts +34 -0
- package/src/examples/auto-stake-it.contract.d.ts.map +1 -0
- package/src/examples/auto-stake-it.flows.d.ts +24 -0
- package/src/examples/auto-stake-it.flows.d.ts.map +1 -0
- package/src/examples/axelar-gmp-account-kit.d.ts +80 -0
- package/src/examples/axelar-gmp-account-kit.d.ts.map +1 -0
- package/src/examples/axelar-gmp.contract.d.ts +52 -0
- package/src/examples/axelar-gmp.contract.d.ts.map +1 -0
- package/src/examples/axelar-gmp.flows.d.ts +21 -0
- package/src/examples/axelar-gmp.flows.d.ts.map +1 -0
- package/src/examples/basic-flows.contract.d.ts +32 -0
- package/src/examples/basic-flows.contract.d.ts.map +1 -0
- package/src/examples/basic-flows.flows.d.ts +20 -0
- package/src/examples/basic-flows.flows.d.ts.map +1 -0
- package/src/examples/send-anywhere.contract.d.ts +60 -0
- package/src/examples/send-anywhere.contract.d.ts.map +1 -0
- package/src/examples/send-anywhere.flows.d.ts +576 -0
- package/src/examples/send-anywhere.flows.d.ts.map +1 -0
- package/src/examples/shared.flows.d.ts +4 -0
- package/src/examples/shared.flows.d.ts.map +1 -0
- package/src/examples/stake-bld.contract.d.ts +237 -0
- package/src/examples/stake-bld.contract.d.ts.map +1 -0
- package/src/examples/stake-ica.contract.d.ts +573 -0
- package/src/examples/stake-ica.contract.d.ts.map +1 -0
- package/src/examples/staking-combinations.contract.d.ts +19 -0
- package/src/examples/staking-combinations.contract.d.ts.map +1 -0
- package/src/examples/staking-combinations.flows.d.ts +32 -0
- package/src/examples/staking-combinations.flows.d.ts.map +1 -0
- package/src/examples/swap-anything.contract.d.ts +55 -0
- package/src/examples/swap-anything.contract.d.ts.map +1 -0
- package/src/examples/swap-anything.flows.d.ts +32 -0
- package/src/examples/swap-anything.flows.d.ts.map +1 -0
- package/src/examples/swap.contract.d.ts +56 -0
- package/src/examples/swap.contract.d.ts.map +1 -0
- package/src/examples/swap.flows.d.ts +12 -0
- package/src/examples/swap.flows.d.ts.map +1 -0
- package/src/examples/unbond.contract.d.ts +21 -0
- package/src/examples/unbond.contract.d.ts.map +1 -0
- package/src/examples/unbond.flows.d.ts +6 -0
- package/src/examples/unbond.flows.d.ts.map +1 -0
- package/src/exos/chain-hub-admin.d.ts +27 -0
- package/src/exos/chain-hub-admin.d.ts.map +1 -0
- package/src/exos/chain-hub.d.ts +225 -0
- package/src/exos/chain-hub.d.ts.map +1 -0
- package/src/exos/combine-invitation-makers.d.ts +7 -0
- package/src/exos/combine-invitation-makers.d.ts.map +1 -0
- package/src/exos/cosmos-interchain-service.d.ts +49 -0
- package/src/exos/cosmos-interchain-service.d.ts.map +1 -0
- package/src/exos/cosmos-orchestration-account.d.ts +950 -0
- package/src/exos/cosmos-orchestration-account.d.ts.map +1 -0
- package/src/exos/exo-interfaces.d.ts +27 -0
- package/src/exos/exo-interfaces.d.ts.map +1 -0
- package/src/exos/ibc-packet.d.ts +101 -0
- package/src/exos/ibc-packet.d.ts.map +1 -0
- package/src/exos/ica-account-kit.d.ts +98 -0
- package/src/exos/ica-account-kit.d.ts.map +1 -0
- package/src/exos/icq-connection-kit.d.ts +67 -0
- package/src/exos/icq-connection-kit.d.ts.map +1 -0
- package/src/exos/local-chain-facade.d.ts +1587 -0
- package/src/exos/local-chain-facade.d.ts.map +1 -0
- package/src/exos/local-orchestration-account.d.ts +405 -0
- package/src/exos/local-orchestration-account.d.ts.map +1 -0
- package/src/exos/orchestrator.d.ts +35857 -0
- package/src/exos/orchestrator.d.ts.map +1 -0
- package/src/exos/packet-tools.d.ts +63 -0
- package/src/exos/packet-tools.d.ts.map +1 -0
- package/src/exos/portfolio-holder-kit.d.ts +154 -0
- package/src/exos/portfolio-holder-kit.d.ts.map +1 -0
- package/src/exos/remote-chain-facade.d.ts +1549 -0
- package/src/exos/remote-chain-facade.d.ts.map +1 -0
- package/src/facade.d.ts +33 -0
- package/src/facade.d.ts.map +1 -0
- package/src/fetched-chain-info.d.ts +10275 -0
- package/src/fetched-chain-info.d.ts.map +1 -0
- package/src/fixtures/query-flows.contract.d.ts +33 -0
- package/src/fixtures/query-flows.contract.d.ts.map +1 -0
- package/src/fixtures/query-flows.flows.d.ts +20 -0
- package/src/fixtures/query-flows.flows.d.ts.map +1 -0
- package/src/orchestration-api.d.ts +315 -0
- package/src/orchestration-api.d.ts.map +1 -0
- package/src/typeGuards.d.ts +163 -0
- package/src/typeGuards.d.ts.map +1 -0
- package/src/types.d.ts +25 -0
- package/src/types.d.ts.map +1 -0
- package/src/utils/abitype.d.ts +6 -0
- package/src/utils/abitype.d.ts.map +1 -0
- package/src/utils/address.d.ts +44 -0
- package/src/utils/address.d.ts.map +1 -0
- package/src/utils/agd-lib.d.ts +58 -0
- package/src/utils/agd-lib.d.ts.map +1 -0
- package/src/utils/amounts.d.ts +11 -0
- package/src/utils/amounts.d.ts.map +1 -0
- package/src/utils/asset.d.ts +6 -0
- package/src/utils/asset.d.ts.map +1 -0
- package/src/utils/axelar-static-config.d.ts +34 -0
- package/src/utils/axelar-static-config.d.ts.map +1 -0
- package/src/utils/chain-hub-helper.d.ts +14 -0
- package/src/utils/chain-hub-helper.d.ts.map +1 -0
- package/src/utils/chain-info.d.ts +5 -0
- package/src/utils/chain-info.d.ts.map +1 -0
- package/src/utils/codecs.d.ts +145 -0
- package/src/utils/codecs.d.ts.map +1 -0
- package/src/utils/cosmos.d.ts +61 -0
- package/src/utils/cosmos.d.ts.map +1 -0
- package/src/utils/denomHash.d.ts +7 -0
- package/src/utils/denomHash.d.ts.map +1 -0
- package/src/utils/exo-helpers.d.ts +156 -0
- package/src/utils/exo-helpers.d.ts.map +1 -0
- package/src/utils/gmp.d.ts +30 -0
- package/src/utils/gmp.d.ts.map +1 -0
- package/src/utils/orc.d.ts +17 -0
- package/src/utils/orc.d.ts.map +1 -0
- package/src/utils/orchestrationAccount.d.ts +91 -0
- package/src/utils/orchestrationAccount.d.ts.map +1 -0
- package/src/utils/packet.d.ts +57 -0
- package/src/utils/packet.d.ts.map +1 -0
- package/src/utils/permit2/signatureTransfer.d.ts +221 -0
- package/src/utils/permit2/signatureTransfer.d.ts.map +1 -0
- package/src/utils/permit2/signatureTransferHelpers.d.ts +334 -0
- package/src/utils/permit2/signatureTransferHelpers.d.ts.map +1 -0
- package/src/utils/permit2.d.ts +11 -0
- package/src/utils/permit2.d.ts.map +1 -0
- package/src/utils/progress.d.ts +41 -0
- package/src/utils/progress.d.ts.map +1 -0
- package/src/utils/registry.d.ts +6 -0
- package/src/utils/registry.d.ts.map +1 -0
- package/src/utils/start-helper.d.ts +129 -0
- package/src/utils/start-helper.d.ts.map +1 -0
- package/src/utils/time.d.ts +38 -0
- package/src/utils/time.d.ts.map +1 -0
- package/src/utils/viem-utils/hashTypedData.d.ts +21 -0
- package/src/utils/viem-utils/hashTypedData.d.ts.map +1 -0
- package/src/utils/viem-utils/types.d.ts +6 -0
- package/src/utils/viem-utils/types.d.ts.map +1 -0
- package/src/utils/viem.d.ts +11 -0
- package/src/utils/viem.d.ts.map +1 -0
- package/src/utils/zcf-tools.d.ts +19 -0
- package/src/utils/zcf-tools.d.ts.map +1 -0
- package/src/utils/zoe-tools.d.ts +19 -0
- package/src/utils/zoe-tools.d.ts.map +1 -0
- package/src/vat-orchestration.d.ts +21 -0
- package/src/vat-orchestration.d.ts.map +1 -0
- package/tools/contract-tests.d.ts +1832 -0
- package/tools/contract-tests.d.ts.map +1 -0
- package/tools/ibc-mock-fixtures.d.ts +49 -0
- package/tools/ibc-mock-fixtures.d.ts.map +1 -0
- package/tools/ibc-mocks.d.ts +168 -0
- package/tools/ibc-mocks.d.ts.map +1 -0
- package/tools/make-test-address.d.ts +3 -0
- package/tools/make-test-address.d.ts.map +1 -0
- package/tools/network-fakes.d.ts +143 -0
- package/tools/network-fakes.d.ts.map +1 -0
- package/tools/protobuf-decoder.d.ts +19 -0
- package/tools/protobuf-decoder.d.ts.map +1 -0
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"cosmos-orchestration-account.d.ts","sourceRoot":"","sources":["cosmos-orchestration-account.js"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
import type { IBCConnectionID } from '@agoric/network/ibc';
|
|
2
|
+
import type { Vow } from '@agoric/vow';
|
|
3
|
+
import type { IcaAccount } from '../cosmos-api.js';
|
|
4
|
+
import type { ICAChannelAddressOpts } from '../utils/address.js';
|
|
5
|
+
import type { ICQConnection } from './icq-connection-kit.js';
|
|
6
|
+
/**
|
|
7
|
+
* Authority to make a Cosmos interchain account or an interchain query connection.
|
|
8
|
+
*/
|
|
9
|
+
export interface CosmosInterchainService {
|
|
10
|
+
/**
|
|
11
|
+
* @param {string} chainId
|
|
12
|
+
* @param {IBCConnectionID} hostConnectionId the counterparty
|
|
13
|
+
* connection_id
|
|
14
|
+
* @param {IBCConnectionID} controllerConnectionId self connection_id
|
|
15
|
+
* @param {ICAChannelAddressOpts} [opts] optional to configure the
|
|
16
|
+
* channel address, such as version and ordering
|
|
17
|
+
* @returns {Vow<IcaAccount>}
|
|
18
|
+
*/
|
|
19
|
+
makeAccount(chainId: string, hostConnectionId: IBCConnectionID, controllerConnectionId: IBCConnectionID, opts?: ICAChannelAddressOpts | undefined): Vow<IcaAccount>;
|
|
20
|
+
/**
|
|
21
|
+
* @param {IBCConnectionID} controllerConnectionId
|
|
22
|
+
* @param {string} [version]
|
|
23
|
+
* @returns {Vow<ICQConnection> | ICQConnection}
|
|
24
|
+
*/
|
|
25
|
+
provideICQConnection(controllerConnectionId: IBCConnectionID, version?: string | undefined): Vow<ICQConnection> | ICQConnection;
|
|
26
|
+
}
|
|
27
|
+
//# sourceMappingURL=exo-interfaces.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"exo-interfaces.d.ts","sourceRoot":"","sources":["exo-interfaces.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,qBAAqB,CAAC;AAC3D,OAAO,KAAK,EAAE,GAAG,EAAE,MAAM,aAAa,CAAC;AACvC,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,kBAAkB,CAAC;AACnD,OAAO,KAAK,EAAE,qBAAqB,EAAE,MAAM,qBAAqB,CAAC;AACjE,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,yBAAyB,CAAC;AAE7D;;GAEG;AACH,MAAM,WAAW,uBAAuB;IACtC;;;;;;;;OAQG;IACH,WAAW,CACT,OAAO,EAAE,MAAM,EACf,gBAAgB,EAAE,eAAe,EACjC,sBAAsB,EAAE,eAAe,EACvC,IAAI,CAAC,EAAE,qBAAqB,GAAG,SAAS,GACvC,GAAG,CAAC,UAAU,CAAC,CAAC;IACnB;;;;OAIG;IACH,oBAAoB,CAClB,sBAAsB,EAAE,eAAe,EACvC,OAAO,CAAC,EAAE,MAAM,GAAG,SAAS,GAC3B,GAAG,CAAC,aAAa,CAAC,GAAG,aAAa,CAAC;CACvC"}
|
|
@@ -0,0 +1,101 @@
|
|
|
1
|
+
export const ICS20_TRANSFER_SUCCESS_BYTES: "\u0001";
|
|
2
|
+
export const ICS20_TRANSFER_SUCCESS_RESULT: string;
|
|
3
|
+
export function createSequencePattern(sequence: any): Pattern;
|
|
4
|
+
export function prepareIBCTransferSender(zone: Zone, { watch, makeIBCReplyKit }: VowTools & {
|
|
5
|
+
makeIBCReplyKit: MakeIBCReplyKit;
|
|
6
|
+
}): (...args: Parameters<(txExecutor: {
|
|
7
|
+
executeTx: LocalChainAccount["executeTx"];
|
|
8
|
+
}, transferMsg: import("@agoric/cosmic-proto/ibc/applications/transfer/v1/tx.js").MsgTransfer & {
|
|
9
|
+
'@type': "/ibc.applications.transfer.v1.MsgTransfer";
|
|
10
|
+
}) => import("@endo/exo").GuardedKit<{
|
|
11
|
+
public: {
|
|
12
|
+
/**
|
|
13
|
+
* @param {Vow<
|
|
14
|
+
* IBCEvent<'acknowledgementPacket'> | IBCEvent<'timeoutPacket'>
|
|
15
|
+
* >} match
|
|
16
|
+
* @param {PacketOptions} opts
|
|
17
|
+
*/
|
|
18
|
+
sendPacket(match: Vow<IBCEvent<"acknowledgementPacket"> | IBCEvent<"timeoutPacket">>, opts: PacketOptions): Vow<{
|
|
19
|
+
resultV: Vow<string>;
|
|
20
|
+
eventPattern: import("@endo/patterns").Matcher;
|
|
21
|
+
}>;
|
|
22
|
+
};
|
|
23
|
+
responseWatcher: {
|
|
24
|
+
/**
|
|
25
|
+
* Wait for successfully sending the transfer packet.
|
|
26
|
+
*
|
|
27
|
+
* @param {[
|
|
28
|
+
* JsonSafe<
|
|
29
|
+
* ResponseTo<
|
|
30
|
+
* TypedJson<'/ibc.applications.transfer.v1.MsgTransfer'>
|
|
31
|
+
* >
|
|
32
|
+
* >,
|
|
33
|
+
* ]} response
|
|
34
|
+
* @param {{
|
|
35
|
+
* opts: PacketOptions;
|
|
36
|
+
* match: Vow<
|
|
37
|
+
* IBCEvent<'acknowledgementPacket'> | IBCEvent<'timeoutPacket'>
|
|
38
|
+
* >;
|
|
39
|
+
* }} ctx
|
|
40
|
+
*/
|
|
41
|
+
onFulfilled([{ sequence }]: [JsonSafe<ResponseTo<TypedJson<"/ibc.applications.transfer.v1.MsgTransfer">>>], ctx: {
|
|
42
|
+
opts: PacketOptions;
|
|
43
|
+
match: Vow<IBCEvent<"acknowledgementPacket"> | IBCEvent<"timeoutPacket">>;
|
|
44
|
+
}): {
|
|
45
|
+
resultV: Vow<string>;
|
|
46
|
+
eventPattern: import("@endo/patterns").Matcher;
|
|
47
|
+
};
|
|
48
|
+
};
|
|
49
|
+
verifyTransferSuccess: {
|
|
50
|
+
onFulfilled(ackData: any): string;
|
|
51
|
+
};
|
|
52
|
+
}>>) => import("@endo/exo").Guarded<{
|
|
53
|
+
/**
|
|
54
|
+
* @param {Vow<
|
|
55
|
+
* IBCEvent<'acknowledgementPacket'> | IBCEvent<'timeoutPacket'>
|
|
56
|
+
* >} match
|
|
57
|
+
* @param {PacketOptions} opts
|
|
58
|
+
*/
|
|
59
|
+
sendPacket(match: Vow<IBCEvent<"acknowledgementPacket"> | IBCEvent<"timeoutPacket">>, opts: PacketOptions): Vow<{
|
|
60
|
+
resultV: Vow<string>;
|
|
61
|
+
eventPattern: import("@endo/patterns").Matcher;
|
|
62
|
+
}>;
|
|
63
|
+
}>;
|
|
64
|
+
export function prepareIBCReplyKit(zone: Zone, vowTools: VowTools): <E extends IBCEvent<"acknowledgementPacket"> | IBCEvent<"timeoutPacket"> = IBCEvent<"acknowledgementPacket"> | IBCEvent<"timeoutPacket">>(replyPacketPattern: Pattern, matchV: Vow<E>, opts: PacketOptions) => {
|
|
65
|
+
eventPattern: import("@endo/patterns").Matcher;
|
|
66
|
+
resultV: Vow<string>;
|
|
67
|
+
};
|
|
68
|
+
export function prepareIBCTools(zone: Zone, vowTools: VowTools): {
|
|
69
|
+
makeIBCTransferSender: (txExecutor: {
|
|
70
|
+
executeTx: LocalChainAccount["executeTx"];
|
|
71
|
+
}, transferMsg: import("@agoric/cosmic-proto/ibc/applications/transfer/v1/tx.js").MsgTransfer & {
|
|
72
|
+
'@type': "/ibc.applications.transfer.v1.MsgTransfer";
|
|
73
|
+
}) => import("@endo/exo").Guarded<{
|
|
74
|
+
/**
|
|
75
|
+
* @param {Vow<
|
|
76
|
+
* IBCEvent<'acknowledgementPacket'> | IBCEvent<'timeoutPacket'>
|
|
77
|
+
* >} match
|
|
78
|
+
* @param {PacketOptions} opts
|
|
79
|
+
*/
|
|
80
|
+
sendPacket(match: Vow<IBCEvent<"acknowledgementPacket"> | IBCEvent<"timeoutPacket">>, opts: PacketOptions): Vow<{
|
|
81
|
+
resultV: Vow<string>;
|
|
82
|
+
eventPattern: import("@endo/patterns").Matcher;
|
|
83
|
+
}>;
|
|
84
|
+
}>;
|
|
85
|
+
makeIBCReplyKit: <E extends IBCEvent<"acknowledgementPacket"> | IBCEvent<"timeoutPacket"> = IBCEvent<"acknowledgementPacket"> | IBCEvent<"timeoutPacket">>(replyPacketPattern: Pattern, matchV: Vow<E>, opts: PacketOptions) => {
|
|
86
|
+
eventPattern: import("@endo/patterns").Matcher;
|
|
87
|
+
resultV: Vow<string>;
|
|
88
|
+
};
|
|
89
|
+
};
|
|
90
|
+
export type MakeIBCReplyKit = ReturnType<typeof prepareIBCReplyKit>;
|
|
91
|
+
import type { Pattern } from '@endo/patterns';
|
|
92
|
+
import type { Zone } from '@agoric/base-zone';
|
|
93
|
+
import type { VowTools } from '@agoric/vow';
|
|
94
|
+
import type { IBCEvent } from '@agoric/vats';
|
|
95
|
+
import type { Vow } from '@agoric/vow';
|
|
96
|
+
import type { PacketOptions } from './packet-tools.js';
|
|
97
|
+
import type { LocalChainAccount } from '@agoric/vats/src/localchain.js';
|
|
98
|
+
import type { TypedJson } from '@agoric/cosmic-proto';
|
|
99
|
+
import type { ResponseTo } from '@agoric/cosmic-proto';
|
|
100
|
+
import type { JsonSafe } from '@agoric/cosmic-proto';
|
|
101
|
+
//# sourceMappingURL=ibc-packet.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ibc-packet.d.ts","sourceRoot":"","sources":["ibc-packet.js"],"names":[],"mappings":"AAUA,2CAA4C,QAAM,CAAC;AACnD,mDAAgF;AAwBzE,gDAHI,GAAG,GACD,OAAO,CAgCnB;AAOM,+CAHI,IAAI,8BACJ,QAAQ,GAAG;IAAE,eAAe,EAAE,eAAe,CAAA;CAAE,IA6IhD,GAAG,MAFA,UAAU;eAzHH,iBAAiB,CAAC,WAAW,CAAC;;;;;QAU1C;;;;;WAKG;0BAJQ,IACV,SAAa,uBAAuB,CAAC,GAAG,SAAS,eAAe,CAAC,CAC9D,QACO,aAAa;;;;;;QAYxB;;;;;;;;;;;;;;;;WAgBG;oCAbQ,CACV,SACA,WACA,UAAkB,2CAA2C,CAAC,CACvD,CACF,CACF,OACO;YACN,IAAI,EAAE,aAAa,CAAC;YACpB,KAAK,EAAE,IACX,SAAe,uBAAuB,CAAC,GAAG,SAAS,eAAe,CAAC,CAC9D,CAAC;SACH;;;;;;;;GAkFK;IAjHT;;;;;OAKG;sBAJQ,IACV,SAAa,uBAAuB,CAAC,GAAG,SAAS,eAAe,CAAC,CAC9D,QACO,aAAa;;;;GA8G/B;AAaM,yCAHI,IAAI,YACJ,QAAQ,IAqC6D,CAAC,SAAjE,SAAS,uBAAuB,CAAC,GAAG,SAAS,eAAe,CAAE,sFACjE,OAAO,UACP,IAAI,CAAC,CAAC,QACN,aAAa;;;EAmBzB;AAQM,sCAHI,IAAI,YACJ,QAAQ;;mBAxMC,iBAAiB,CAAC,WAAW,CAAC;;;;QAU1C;;;;;WAKG;0BAJQ,IACV,SAAa,uBAAuB,CAAC,GAAG,SAAS,eAAe,CAAC,CAC9D,QACO,aAAa;;;;;sBA8JgD,CAAC,SAAjE,SAAS,uBAAuB,CAAC,GAAG,SAAS,eAAe,CAAE,sFACjE,OAAO,UACP,IAAI,CAAC,CAAC,QACN,aAAa;;;;EAkCzB;8BAba,UAAU,CAAC,OAAO,kBAAkB,CAAC;6BA5QpB,gBAAgB;0BAOxB,mBAAmB;8BAJV,aAAa;8BACP,cAAc;yBADpB,aAAa;mCAGb,mBAAmB;uCADf,gCAAgC;+BAJlB,sBAAsB;gCAAtB,sBAAsB;8BAAtB,sBAAsB"}
|
|
@@ -0,0 +1,98 @@
|
|
|
1
|
+
export const IcaAccountI: import("@endo/patterns").InterfaceGuard<{
|
|
2
|
+
getAddress: import("@endo/patterns").MethodGuard;
|
|
3
|
+
getLocalAddress: import("@endo/patterns").MethodGuard;
|
|
4
|
+
getRemoteAddress: import("@endo/patterns").MethodGuard;
|
|
5
|
+
getPort: import("@endo/patterns").MethodGuard;
|
|
6
|
+
executeTx: import("@endo/patterns").MethodGuard;
|
|
7
|
+
executeEncodedTx: import("@endo/patterns").MethodGuard;
|
|
8
|
+
deactivate: import("@endo/patterns").MethodGuard;
|
|
9
|
+
reactivate: import("@endo/patterns").MethodGuard;
|
|
10
|
+
}>;
|
|
11
|
+
export function prepareIcaAccountKit(zone: Zone, { watch, asVow }: VowTools): (chainId: string, port: Port, requestedRemoteAddress: string) => import("@endo/exo").GuardedKit<{
|
|
12
|
+
parseTxPacketWatcher: {
|
|
13
|
+
/** @param {string} ack */
|
|
14
|
+
onFulfilled(ack: string): string;
|
|
15
|
+
};
|
|
16
|
+
account: {
|
|
17
|
+
/** @returns {CosmosChainAddress} */
|
|
18
|
+
getAddress(): CosmosChainAddress;
|
|
19
|
+
getLocalAddress(): `/ibc-port/${string}`;
|
|
20
|
+
getRemoteAddress(): `/${string}ibc-port/${string}/ordered/${string}` | `/${string}ibc-port/${string}/unordered/${string}`;
|
|
21
|
+
getPort(): Port;
|
|
22
|
+
executeTx(): Vow<never>;
|
|
23
|
+
/**
|
|
24
|
+
* Submit a transaction on behalf of the remote account for execution on
|
|
25
|
+
* the remote chain.
|
|
26
|
+
*
|
|
27
|
+
* Set `relativeTimeoutNs` to provide a timeout for the IBC packet.
|
|
28
|
+
*
|
|
29
|
+
* `TxBody` fields like `timeoutHeight` and `memo` can be set, but these
|
|
30
|
+
* typically do not affect IBC app protocols like PFM, ICA.
|
|
31
|
+
*
|
|
32
|
+
* @param {AnyJson[]} msgs
|
|
33
|
+
* @param {CosmosActionOptions['txOpts'] & CosmosActionOptions} [opts]
|
|
34
|
+
* @returns {Vow<string>} - base64 encoded bytes string. Can be decoded
|
|
35
|
+
* using the corresponding `Msg*Response` object.
|
|
36
|
+
* @throws {Error} if packet fails to send or an error is returned
|
|
37
|
+
*/
|
|
38
|
+
executeEncodedTx(msgs: AnyJson[], opts?: CosmosActionOptions["txOpts"] & CosmosActionOptions): Vow<string>;
|
|
39
|
+
deactivate(): Vow<void>;
|
|
40
|
+
reactivate(): Vow<void>;
|
|
41
|
+
};
|
|
42
|
+
connectionHandler: {
|
|
43
|
+
/**
|
|
44
|
+
* @param {Remote<Connection>} connection
|
|
45
|
+
* @param {LocalIbcAddress} localAddr
|
|
46
|
+
* @param {RemoteIbcAddress} remoteAddr
|
|
47
|
+
*/
|
|
48
|
+
onOpen(connection: Remote<Connection>, localAddr: LocalIbcAddress, remoteAddr: RemoteIbcAddress): Promise<void>;
|
|
49
|
+
/**
|
|
50
|
+
* This handler fires any time the connection (channel) closes. This
|
|
51
|
+
* could be due to external factors (e.g. a packet timeout), or a holder
|
|
52
|
+
* initiated action (`.deactivate()`).
|
|
53
|
+
*
|
|
54
|
+
* Here, if a connection is opened again, we clear the connection and
|
|
55
|
+
* addresses from state as they will change - a new channel will be
|
|
56
|
+
* established if the connection is reopened.
|
|
57
|
+
*
|
|
58
|
+
* If the holder did not initiate the closure, a new connection is
|
|
59
|
+
* established using the original requested remote address. This will
|
|
60
|
+
* result in a new channelID but the ChainAddress will be preserved.
|
|
61
|
+
*
|
|
62
|
+
* @param {Remote<Connection>} _connection
|
|
63
|
+
* @param {unknown} reason
|
|
64
|
+
* @see {@link https://docs.cosmos.network/v0.45/ibc/overview.html#:~:text=In%20ORDERED%20channels%2C%20a%20timeout%20of%20a%20single%20packet%20in%20the%20channel%20closes%20the%20channel.}
|
|
65
|
+
*/
|
|
66
|
+
onClose(_connection: Remote<Connection>, reason: unknown): Promise<void>;
|
|
67
|
+
};
|
|
68
|
+
}>;
|
|
69
|
+
/**
|
|
70
|
+
* Internal to the IcaAccountKit exo
|
|
71
|
+
*/
|
|
72
|
+
export type State = {
|
|
73
|
+
chainId: string;
|
|
74
|
+
port: Port;
|
|
75
|
+
connection: Remote<Connection> | undefined;
|
|
76
|
+
localAddress: LocalIbcAddress | undefined;
|
|
77
|
+
requestedRemoteAddress: string;
|
|
78
|
+
remoteAddress: RemoteIbcAddress | undefined;
|
|
79
|
+
chainAddress: (CosmosChainAddress | {
|
|
80
|
+
value: typeof UNPARSABLE_CHAIN_ADDRESS;
|
|
81
|
+
}) | undefined;
|
|
82
|
+
isInitiatingClose: boolean;
|
|
83
|
+
};
|
|
84
|
+
export type IcaAccountKit = ReturnType<ReturnType<typeof prepareIcaAccountKit>>;
|
|
85
|
+
import type { Zone } from '@agoric/base-zone';
|
|
86
|
+
import type { VowTools } from '@agoric/vow';
|
|
87
|
+
import type { Port } from '@agoric/network';
|
|
88
|
+
import type { CosmosChainAddress } from '../types.js';
|
|
89
|
+
import type { Vow } from '@agoric/vow';
|
|
90
|
+
import type { AnyJson } from '@agoric/cosmic-proto';
|
|
91
|
+
import type { CosmosActionOptions } from '../types.js';
|
|
92
|
+
import type { Connection } from '@agoric/network';
|
|
93
|
+
import type { Remote } from '@agoric/vow';
|
|
94
|
+
import type { LocalIbcAddress } from '@agoric/network/ibc';
|
|
95
|
+
import type { RemoteIbcAddress } from '@agoric/network/ibc';
|
|
96
|
+
declare const UNPARSABLE_CHAIN_ADDRESS: "UNPARSABLE_CHAIN_ADDRESS";
|
|
97
|
+
export {};
|
|
98
|
+
//# sourceMappingURL=ica-account-kit.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ica-account-kit.d.ts","sourceRoot":"","sources":["ica-account-kit.js"],"names":[],"mappings":"AA8BA;;;;;;;;;GAWG;AA4BI,2CAJI,IAAI,oBACJ,QAAQ;;QAiCX,0BAA0B;yBAAd,MAAM;;;QAMlB,oCAAoC;sBAAtB,kBAAkB;;;;;QA0BhC;;;;;;;;;;;;;;WAcG;+BALQ,OAAO,EAAE,SACT,mBAAmB,CAAC,QAAQ,CAAC,GAAG,mBAAmB,GACjD,IAAI,MAAM,CAAC;;;;;QAgDxB;;;;WAIG;2BAHQ,OAAO,UAAU,CAAC,aAClB,eAAe,cACf,gBAAgB;QAiB3B;;;;;;;;;;;;;;;;WAgBG;6BAHQ,OAAO,UAAU,CAAC,UAClB,OAAO;;GAkBvB;;;;oBApMU;IACR,OAAO,EAAE,MAAM,CAAC;IAChB,IAAI,EAAE,IAAI,CAAC;IACX,UAAU,EAAE,OAAO,UAAU,CAAC,GAAG,SAAS,CAAC;IAC3C,YAAY,EAAE,eAAe,GAAG,SAAS,CAAC;IAC1C,sBAAsB,EAAE,MAAM,CAAC;IAC/B,aAAa,EAAE,gBAAgB,GAAG,SAAS,CAAC;IAC5C,YAAY,EACR,CAAC,kBAAkB,GAAG;QAAE,KAAK,EAAE,OAAO,wBAAwB,CAAA;KAAE,CAAC,GACjE,SAAS,CAAC;IACd,iBAAiB,EAAE,OAAO,CAAC;CAC5B;4BA2LU,UAAU,CAAC,UAAU,CAAC,OAAO,oBAAoB,CAAC,CAAC;0BAnO1C,mBAAmB;8BAEU,aAAa;0BADV,iBAAiB;wCAKF,aAAa;yBAJ/B,aAAa;6BACvC,sBAAsB;yCAGsB,aAAa;gCAL5B,iBAAiB;4BACpB,aAAa;qCAGb,qBAAqB;sCAArB,qBAAqB;AAMzE,wCAAiC,0BAA0B,CAAC"}
|
|
@@ -0,0 +1,67 @@
|
|
|
1
|
+
export const ICQConnectionI: import("@endo/patterns").InterfaceGuard<{
|
|
2
|
+
getLocalAddress: import("@endo/patterns").MethodGuard;
|
|
3
|
+
getRemoteAddress: import("@endo/patterns").MethodGuard;
|
|
4
|
+
query: import("@endo/patterns").MethodGuard;
|
|
5
|
+
}>;
|
|
6
|
+
export function prepareICQConnectionKit(zone: Zone, { watch, asVow }: VowTools): (port: Port) => import("@endo/exo").GuardedKit<{
|
|
7
|
+
connection: {
|
|
8
|
+
getLocalAddress(): `/ibc-port/${string}`;
|
|
9
|
+
getRemoteAddress(): `/${string}ibc-port/${string}/ordered/${string}` | `/${string}ibc-port/${string}/unordered/${string}`;
|
|
10
|
+
/**
|
|
11
|
+
* Vow rejects if packet fails to send or an error is returned
|
|
12
|
+
*
|
|
13
|
+
* @param {JsonSafe<RequestQuery>[]} msgs
|
|
14
|
+
* @returns {Vow<JsonSafe<ResponseQuery>[]>}
|
|
15
|
+
*/
|
|
16
|
+
query(msgs: JsonSafe<RequestQuery>[]): Vow<JsonSafe<ResponseQuery>[]>;
|
|
17
|
+
};
|
|
18
|
+
parseQueryPacketWatcher: {
|
|
19
|
+
/** @param {string} ack packet acknowledgement string */
|
|
20
|
+
onFulfilled(ack: string): {
|
|
21
|
+
code: number;
|
|
22
|
+
log: string;
|
|
23
|
+
info: string;
|
|
24
|
+
index: string;
|
|
25
|
+
key: string;
|
|
26
|
+
value: string;
|
|
27
|
+
proofOps?: {
|
|
28
|
+
ops: {
|
|
29
|
+
type: string;
|
|
30
|
+
key: string;
|
|
31
|
+
data: string;
|
|
32
|
+
}[];
|
|
33
|
+
} | undefined;
|
|
34
|
+
height: string;
|
|
35
|
+
codespace: string;
|
|
36
|
+
}[];
|
|
37
|
+
};
|
|
38
|
+
connectionHandler: {
|
|
39
|
+
/**
|
|
40
|
+
* @param {Remote<Connection>} connection
|
|
41
|
+
* @param {LocalIbcAddress} localAddr
|
|
42
|
+
* @param {RemoteIbcAddress} remoteAddr
|
|
43
|
+
*/
|
|
44
|
+
onOpen(connection: Remote<Connection>, localAddr: LocalIbcAddress, remoteAddr: RemoteIbcAddress): Promise<void>;
|
|
45
|
+
onClose(_connection: any, reason: any): Promise<void>;
|
|
46
|
+
};
|
|
47
|
+
}>;
|
|
48
|
+
export type ICQConnectionKitState = {
|
|
49
|
+
port: Port;
|
|
50
|
+
connection: Remote<Connection> | undefined;
|
|
51
|
+
localAddress: LocalIbcAddress | undefined;
|
|
52
|
+
remoteAddress: RemoteIbcAddress | undefined;
|
|
53
|
+
};
|
|
54
|
+
export type ICQConnectionKit = ReturnType<ReturnType<typeof prepareICQConnectionKit>>;
|
|
55
|
+
export type ICQConnection = ICQConnectionKit["connection"];
|
|
56
|
+
import type { Zone } from '@agoric/base-zone';
|
|
57
|
+
import type { VowTools } from '@agoric/vow';
|
|
58
|
+
import type { Port } from '@agoric/network';
|
|
59
|
+
import type { RequestQuery } from '@agoric/cosmic-proto/tendermint/abci/types.js';
|
|
60
|
+
import type { JsonSafe } from '@agoric/cosmic-proto';
|
|
61
|
+
import type { ResponseQuery } from '@agoric/cosmic-proto/tendermint/abci/types.js';
|
|
62
|
+
import type { Vow } from '@agoric/vow';
|
|
63
|
+
import type { Connection } from '@agoric/network';
|
|
64
|
+
import type { Remote } from '@agoric/vow';
|
|
65
|
+
import type { LocalIbcAddress } from '@agoric/network/ibc';
|
|
66
|
+
import type { RemoteIbcAddress } from '@agoric/network/ibc';
|
|
67
|
+
//# sourceMappingURL=icq-connection-kit.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"icq-connection-kit.d.ts","sourceRoot":"","sources":["icq-connection-kit.js"],"names":[],"mappings":"AAoBA;;;;GAIG;AA8BI,8CAJI,IAAI,oBACJ,QAAQ;;;;QAqCX;;;;;WAKG;oBAFQ,SAAS,YAAY,CAAC,EAAE,GACtB,IAAI,SAAS,aAAa,CAAC,EAAE,CAAC;;;QAc3C,wDAAwD;yBAA5C,MAAM;;;;;;;;;;;;;;;;;;;QAMlB;;;;WAIG;2BAHQ,OAAO,UAAU,CAAC,aAClB,eAAe,cACf,gBAAgB;;;GAahC;oCArGU;IACR,IAAI,EAAE,IAAI,CAAC;IACX,UAAU,EAAE,OAAO,UAAU,CAAC,GAAG,SAAS,CAAC;IAC3C,YAAY,EAAE,eAAe,GAAG,SAAS,CAAC;IAC1C,aAAa,EAAE,gBAAgB,GAAG,SAAS,CAAC;CAC7C;+BAkGU,UAAU,CAAC,UAAU,CAAC,OAAO,uBAAuB,CAAC,CAAC;4BACtD,gBAAgB,CAAC,YAAY,CAAC;0BAzHrB,mBAAmB;8BAEF,aAAa;0BADlB,iBAAiB;kCAGN,+CAA+C;8BADlE,sBAAsB;mCACH,+CAA+C;yBAFrD,aAAa;gCADlB,iBAAiB;4BACZ,aAAa;qCAGD,qBAAqB;sCAArB,qBAAqB"}
|