@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,576 @@
|
|
|
1
|
+
export function makeNobleAccount(orch: Orchestrator): Promise<import("../orchestration-api.js").OrchestrationAccount<{
|
|
2
|
+
readonly bech32Prefix: "noble";
|
|
3
|
+
readonly chainId: "noble-1";
|
|
4
|
+
readonly icqEnabled: false;
|
|
5
|
+
readonly namespace: "cosmos";
|
|
6
|
+
readonly reference: "noble-1";
|
|
7
|
+
readonly connections: {
|
|
8
|
+
readonly 'agoric-3': {
|
|
9
|
+
readonly id: "connection-38";
|
|
10
|
+
readonly client_id: "07-tendermint-32";
|
|
11
|
+
readonly counterparty: {
|
|
12
|
+
readonly client_id: "07-tendermint-77";
|
|
13
|
+
readonly connection_id: "connection-72";
|
|
14
|
+
};
|
|
15
|
+
readonly state: 3;
|
|
16
|
+
readonly transferChannel: {
|
|
17
|
+
readonly channelId: "channel-21";
|
|
18
|
+
readonly portId: "transfer";
|
|
19
|
+
readonly counterPartyChannelId: "channel-62";
|
|
20
|
+
readonly counterPartyPortId: "transfer";
|
|
21
|
+
readonly ordering: 0;
|
|
22
|
+
readonly state: 3;
|
|
23
|
+
readonly version: "ics20-1";
|
|
24
|
+
};
|
|
25
|
+
};
|
|
26
|
+
readonly 'beezee-1': {
|
|
27
|
+
readonly id: "connection-107";
|
|
28
|
+
readonly client_id: "07-tendermint-112";
|
|
29
|
+
readonly counterparty: {
|
|
30
|
+
readonly client_id: "07-tendermint-9";
|
|
31
|
+
readonly connection_id: "connection-3";
|
|
32
|
+
};
|
|
33
|
+
readonly state: 3;
|
|
34
|
+
readonly transferChannel: {
|
|
35
|
+
readonly channelId: "channel-95";
|
|
36
|
+
readonly portId: "transfer";
|
|
37
|
+
readonly counterPartyChannelId: "channel-3";
|
|
38
|
+
readonly counterPartyPortId: "transfer";
|
|
39
|
+
readonly ordering: 0;
|
|
40
|
+
readonly state: 3;
|
|
41
|
+
readonly version: "ics20-1";
|
|
42
|
+
};
|
|
43
|
+
};
|
|
44
|
+
readonly 'core-1': {
|
|
45
|
+
readonly id: "connection-59";
|
|
46
|
+
readonly client_id: "07-tendermint-61";
|
|
47
|
+
readonly counterparty: {
|
|
48
|
+
readonly client_id: "07-tendermint-160";
|
|
49
|
+
readonly connection_id: "connection-198";
|
|
50
|
+
};
|
|
51
|
+
readonly state: 3;
|
|
52
|
+
readonly transferChannel: {
|
|
53
|
+
readonly channelId: "channel-36";
|
|
54
|
+
readonly portId: "transfer";
|
|
55
|
+
readonly counterPartyChannelId: "channel-132";
|
|
56
|
+
readonly counterPartyPortId: "transfer";
|
|
57
|
+
readonly ordering: 0;
|
|
58
|
+
readonly state: 3;
|
|
59
|
+
readonly version: "ics20-1";
|
|
60
|
+
};
|
|
61
|
+
};
|
|
62
|
+
readonly 'coreum-mainnet-1': {
|
|
63
|
+
readonly id: "connection-72";
|
|
64
|
+
readonly client_id: "07-tendermint-71";
|
|
65
|
+
readonly counterparty: {
|
|
66
|
+
readonly client_id: "07-tendermint-32";
|
|
67
|
+
readonly connection_id: "connection-21";
|
|
68
|
+
};
|
|
69
|
+
readonly state: 3;
|
|
70
|
+
readonly transferChannel: {
|
|
71
|
+
readonly channelId: "channel-49";
|
|
72
|
+
readonly portId: "transfer";
|
|
73
|
+
readonly counterPartyChannelId: "channel-19";
|
|
74
|
+
readonly counterPartyPortId: "transfer";
|
|
75
|
+
readonly ordering: 0;
|
|
76
|
+
readonly state: 3;
|
|
77
|
+
readonly version: "ics20-1";
|
|
78
|
+
};
|
|
79
|
+
};
|
|
80
|
+
readonly 'cosmoshub-4': {
|
|
81
|
+
readonly id: "connection-12";
|
|
82
|
+
readonly client_id: "07-tendermint-4";
|
|
83
|
+
readonly counterparty: {
|
|
84
|
+
readonly client_id: "07-tendermint-1116";
|
|
85
|
+
readonly connection_id: "connection-790";
|
|
86
|
+
};
|
|
87
|
+
readonly state: 3;
|
|
88
|
+
readonly transferChannel: {
|
|
89
|
+
readonly channelId: "channel-4";
|
|
90
|
+
readonly portId: "transfer";
|
|
91
|
+
readonly counterPartyChannelId: "channel-536";
|
|
92
|
+
readonly counterPartyPortId: "transfer";
|
|
93
|
+
readonly ordering: 0;
|
|
94
|
+
readonly state: 3;
|
|
95
|
+
readonly version: "ics20-1";
|
|
96
|
+
};
|
|
97
|
+
};
|
|
98
|
+
readonly 'crescent-1': {
|
|
99
|
+
readonly id: "connection-1";
|
|
100
|
+
readonly client_id: "07-tendermint-1";
|
|
101
|
+
readonly counterparty: {
|
|
102
|
+
readonly client_id: "07-tendermint-68";
|
|
103
|
+
readonly connection_id: "connection-63";
|
|
104
|
+
};
|
|
105
|
+
readonly state: 3;
|
|
106
|
+
readonly transferChannel: {
|
|
107
|
+
readonly channelId: "channel-0";
|
|
108
|
+
readonly portId: "transfer";
|
|
109
|
+
readonly counterPartyChannelId: "channel-38";
|
|
110
|
+
readonly counterPartyPortId: "transfer";
|
|
111
|
+
readonly ordering: 0;
|
|
112
|
+
readonly state: 3;
|
|
113
|
+
readonly version: "ics20-1";
|
|
114
|
+
};
|
|
115
|
+
};
|
|
116
|
+
readonly 'dydx-mainnet-1': {
|
|
117
|
+
readonly id: "connection-57";
|
|
118
|
+
readonly client_id: "07-tendermint-59";
|
|
119
|
+
readonly counterparty: {
|
|
120
|
+
readonly client_id: "07-tendermint-0";
|
|
121
|
+
readonly connection_id: "connection-0";
|
|
122
|
+
};
|
|
123
|
+
readonly state: 3;
|
|
124
|
+
readonly transferChannel: {
|
|
125
|
+
readonly channelId: "channel-33";
|
|
126
|
+
readonly portId: "transfer";
|
|
127
|
+
readonly counterPartyChannelId: "channel-0";
|
|
128
|
+
readonly counterPartyPortId: "transfer";
|
|
129
|
+
readonly ordering: 0;
|
|
130
|
+
readonly state: 3;
|
|
131
|
+
readonly version: "ics20-1";
|
|
132
|
+
};
|
|
133
|
+
};
|
|
134
|
+
readonly 'dymension_1100-1': {
|
|
135
|
+
readonly id: "connection-80";
|
|
136
|
+
readonly client_id: "07-tendermint-79";
|
|
137
|
+
readonly counterparty: {
|
|
138
|
+
readonly client_id: "07-tendermint-14";
|
|
139
|
+
readonly connection_id: "connection-7";
|
|
140
|
+
};
|
|
141
|
+
readonly state: 3;
|
|
142
|
+
readonly transferChannel: {
|
|
143
|
+
readonly channelId: "channel-62";
|
|
144
|
+
readonly portId: "transfer";
|
|
145
|
+
readonly counterPartyChannelId: "channel-6";
|
|
146
|
+
readonly counterPartyPortId: "transfer";
|
|
147
|
+
readonly ordering: 0;
|
|
148
|
+
readonly state: 3;
|
|
149
|
+
readonly version: "ics20-1";
|
|
150
|
+
};
|
|
151
|
+
};
|
|
152
|
+
readonly 'evmos_9001-2': {
|
|
153
|
+
readonly id: "connection-19";
|
|
154
|
+
readonly client_id: "07-tendermint-12";
|
|
155
|
+
readonly counterparty: {
|
|
156
|
+
readonly client_id: "07-tendermint-106";
|
|
157
|
+
readonly connection_id: "connection-63";
|
|
158
|
+
};
|
|
159
|
+
readonly state: 3;
|
|
160
|
+
readonly transferChannel: {
|
|
161
|
+
readonly channelId: "channel-7";
|
|
162
|
+
readonly portId: "transfer";
|
|
163
|
+
readonly counterPartyChannelId: "channel-64";
|
|
164
|
+
readonly counterPartyPortId: "transfer";
|
|
165
|
+
readonly ordering: 0;
|
|
166
|
+
readonly state: 3;
|
|
167
|
+
readonly version: "ics20-1";
|
|
168
|
+
};
|
|
169
|
+
};
|
|
170
|
+
readonly 'haqq_11235-1': {
|
|
171
|
+
readonly id: "connection-56";
|
|
172
|
+
readonly client_id: "07-tendermint-58";
|
|
173
|
+
readonly counterparty: {
|
|
174
|
+
readonly client_id: "07-tendermint-4";
|
|
175
|
+
readonly connection_id: "connection-4";
|
|
176
|
+
};
|
|
177
|
+
readonly state: 3;
|
|
178
|
+
readonly transferChannel: {
|
|
179
|
+
readonly channelId: "channel-32";
|
|
180
|
+
readonly portId: "transfer";
|
|
181
|
+
readonly counterPartyChannelId: "channel-4";
|
|
182
|
+
readonly counterPartyPortId: "transfer";
|
|
183
|
+
readonly ordering: 0;
|
|
184
|
+
readonly state: 3;
|
|
185
|
+
readonly version: "ics20-1";
|
|
186
|
+
};
|
|
187
|
+
};
|
|
188
|
+
readonly 'injective-1': {
|
|
189
|
+
readonly id: "connection-55";
|
|
190
|
+
readonly client_id: "07-tendermint-57";
|
|
191
|
+
readonly counterparty: {
|
|
192
|
+
readonly client_id: "07-tendermint-212";
|
|
193
|
+
readonly connection_id: "connection-195";
|
|
194
|
+
};
|
|
195
|
+
readonly state: 3;
|
|
196
|
+
readonly transferChannel: {
|
|
197
|
+
readonly channelId: "channel-31";
|
|
198
|
+
readonly portId: "transfer";
|
|
199
|
+
readonly counterPartyChannelId: "channel-148";
|
|
200
|
+
readonly counterPartyPortId: "transfer";
|
|
201
|
+
readonly ordering: 0;
|
|
202
|
+
readonly state: 3;
|
|
203
|
+
readonly version: "ics20-1";
|
|
204
|
+
};
|
|
205
|
+
};
|
|
206
|
+
readonly 'juno-1': {
|
|
207
|
+
readonly id: "connection-8";
|
|
208
|
+
readonly client_id: "07-tendermint-3";
|
|
209
|
+
readonly counterparty: {
|
|
210
|
+
readonly client_id: "07-tendermint-334";
|
|
211
|
+
readonly connection_id: "connection-322";
|
|
212
|
+
};
|
|
213
|
+
readonly state: 3;
|
|
214
|
+
readonly transferChannel: {
|
|
215
|
+
readonly channelId: "channel-3";
|
|
216
|
+
readonly portId: "transfer";
|
|
217
|
+
readonly counterPartyChannelId: "channel-224";
|
|
218
|
+
readonly counterPartyPortId: "transfer";
|
|
219
|
+
readonly ordering: 0;
|
|
220
|
+
readonly state: 3;
|
|
221
|
+
readonly version: "ics20-1";
|
|
222
|
+
};
|
|
223
|
+
};
|
|
224
|
+
readonly 'kaiyo-1': {
|
|
225
|
+
readonly id: "connection-4";
|
|
226
|
+
readonly client_id: "07-tendermint-2";
|
|
227
|
+
readonly counterparty: {
|
|
228
|
+
readonly client_id: "07-tendermint-95";
|
|
229
|
+
readonly connection_id: "connection-65";
|
|
230
|
+
};
|
|
231
|
+
readonly state: 3;
|
|
232
|
+
readonly transferChannel: {
|
|
233
|
+
readonly channelId: "channel-2";
|
|
234
|
+
readonly portId: "transfer";
|
|
235
|
+
readonly counterPartyChannelId: "channel-62";
|
|
236
|
+
readonly counterPartyPortId: "transfer";
|
|
237
|
+
readonly ordering: 0;
|
|
238
|
+
readonly state: 3;
|
|
239
|
+
readonly version: "ics20-1";
|
|
240
|
+
};
|
|
241
|
+
};
|
|
242
|
+
readonly 'kava_2222-10': {
|
|
243
|
+
readonly id: "connection-102";
|
|
244
|
+
readonly client_id: "07-tendermint-107";
|
|
245
|
+
readonly counterparty: {
|
|
246
|
+
readonly client_id: "07-tendermint-172";
|
|
247
|
+
readonly connection_id: "connection-214";
|
|
248
|
+
};
|
|
249
|
+
readonly state: 3;
|
|
250
|
+
readonly transferChannel: {
|
|
251
|
+
readonly channelId: "channel-88";
|
|
252
|
+
readonly portId: "transfer";
|
|
253
|
+
readonly counterPartyChannelId: "channel-151";
|
|
254
|
+
readonly counterPartyPortId: "transfer";
|
|
255
|
+
readonly ordering: 0;
|
|
256
|
+
readonly state: 3;
|
|
257
|
+
readonly version: "ics20-1";
|
|
258
|
+
};
|
|
259
|
+
};
|
|
260
|
+
readonly 'lava-mainnet-1': {
|
|
261
|
+
readonly id: "connection-115";
|
|
262
|
+
readonly client_id: "07-tendermint-120";
|
|
263
|
+
readonly counterparty: {
|
|
264
|
+
readonly client_id: "07-tendermint-11";
|
|
265
|
+
readonly connection_id: "connection-15";
|
|
266
|
+
};
|
|
267
|
+
readonly state: 3;
|
|
268
|
+
readonly transferChannel: {
|
|
269
|
+
readonly channelId: "channel-105";
|
|
270
|
+
readonly portId: "transfer";
|
|
271
|
+
readonly counterPartyChannelId: "channel-9";
|
|
272
|
+
readonly counterPartyPortId: "transfer";
|
|
273
|
+
readonly ordering: 0;
|
|
274
|
+
readonly state: 3;
|
|
275
|
+
readonly version: "ics20-1";
|
|
276
|
+
};
|
|
277
|
+
};
|
|
278
|
+
readonly 'migaloo-1': {
|
|
279
|
+
readonly id: "connection-28";
|
|
280
|
+
readonly client_id: "07-tendermint-19";
|
|
281
|
+
readonly counterparty: {
|
|
282
|
+
readonly client_id: "07-tendermint-113";
|
|
283
|
+
readonly connection_id: "connection-89";
|
|
284
|
+
};
|
|
285
|
+
readonly state: 3;
|
|
286
|
+
readonly transferChannel: {
|
|
287
|
+
readonly channelId: "channel-14";
|
|
288
|
+
readonly portId: "transfer";
|
|
289
|
+
readonly counterPartyChannelId: "channel-60";
|
|
290
|
+
readonly counterPartyPortId: "transfer";
|
|
291
|
+
readonly ordering: 0;
|
|
292
|
+
readonly state: 3;
|
|
293
|
+
readonly version: "ics20-1";
|
|
294
|
+
};
|
|
295
|
+
};
|
|
296
|
+
readonly 'neutron-1': {
|
|
297
|
+
readonly id: "connection-34";
|
|
298
|
+
readonly client_id: "07-tendermint-25";
|
|
299
|
+
readonly counterparty: {
|
|
300
|
+
readonly client_id: "07-tendermint-40";
|
|
301
|
+
readonly connection_id: "connection-31";
|
|
302
|
+
};
|
|
303
|
+
readonly state: 3;
|
|
304
|
+
readonly transferChannel: {
|
|
305
|
+
readonly channelId: "channel-18";
|
|
306
|
+
readonly portId: "transfer";
|
|
307
|
+
readonly counterPartyChannelId: "channel-30";
|
|
308
|
+
readonly counterPartyPortId: "transfer";
|
|
309
|
+
readonly ordering: 0;
|
|
310
|
+
readonly state: 3;
|
|
311
|
+
readonly version: "ics20-1";
|
|
312
|
+
};
|
|
313
|
+
};
|
|
314
|
+
readonly 'omniflixhub-1': {
|
|
315
|
+
readonly id: "connection-65";
|
|
316
|
+
readonly client_id: "07-tendermint-68";
|
|
317
|
+
readonly counterparty: {
|
|
318
|
+
readonly client_id: "07-tendermint-51";
|
|
319
|
+
readonly connection_id: "connection-49";
|
|
320
|
+
};
|
|
321
|
+
readonly state: 3;
|
|
322
|
+
readonly transferChannel: {
|
|
323
|
+
readonly channelId: "channel-44";
|
|
324
|
+
readonly portId: "transfer";
|
|
325
|
+
readonly counterPartyChannelId: "channel-38";
|
|
326
|
+
readonly counterPartyPortId: "transfer";
|
|
327
|
+
readonly ordering: 0;
|
|
328
|
+
readonly state: 3;
|
|
329
|
+
readonly version: "ics20-1";
|
|
330
|
+
};
|
|
331
|
+
};
|
|
332
|
+
readonly 'osmosis-1': {
|
|
333
|
+
readonly id: "connection-2";
|
|
334
|
+
readonly client_id: "07-tendermint-0";
|
|
335
|
+
readonly counterparty: {
|
|
336
|
+
readonly client_id: "07-tendermint-2704";
|
|
337
|
+
readonly connection_id: "connection-2241";
|
|
338
|
+
};
|
|
339
|
+
readonly state: 3;
|
|
340
|
+
readonly transferChannel: {
|
|
341
|
+
readonly channelId: "channel-1";
|
|
342
|
+
readonly portId: "transfer";
|
|
343
|
+
readonly counterPartyChannelId: "channel-750";
|
|
344
|
+
readonly counterPartyPortId: "transfer";
|
|
345
|
+
readonly ordering: 0;
|
|
346
|
+
readonly state: 3;
|
|
347
|
+
readonly version: "ics20-1";
|
|
348
|
+
};
|
|
349
|
+
};
|
|
350
|
+
readonly 'pacific-1': {
|
|
351
|
+
readonly id: "connection-61";
|
|
352
|
+
readonly client_id: "07-tendermint-64";
|
|
353
|
+
readonly counterparty: {
|
|
354
|
+
readonly client_id: "07-tendermint-45";
|
|
355
|
+
readonly connection_id: "connection-77";
|
|
356
|
+
};
|
|
357
|
+
readonly state: 3;
|
|
358
|
+
readonly transferChannel: {
|
|
359
|
+
readonly channelId: "channel-39";
|
|
360
|
+
readonly portId: "transfer";
|
|
361
|
+
readonly counterPartyChannelId: "channel-45";
|
|
362
|
+
readonly counterPartyPortId: "transfer";
|
|
363
|
+
readonly ordering: 0;
|
|
364
|
+
readonly state: 3;
|
|
365
|
+
readonly version: "ics20-1";
|
|
366
|
+
};
|
|
367
|
+
};
|
|
368
|
+
readonly 'phoenix-1': {
|
|
369
|
+
readonly id: "connection-54";
|
|
370
|
+
readonly client_id: "07-tendermint-56";
|
|
371
|
+
readonly counterparty: {
|
|
372
|
+
readonly client_id: "07-tendermint-367";
|
|
373
|
+
readonly connection_id: "connection-302";
|
|
374
|
+
};
|
|
375
|
+
readonly state: 3;
|
|
376
|
+
readonly transferChannel: {
|
|
377
|
+
readonly channelId: "channel-30";
|
|
378
|
+
readonly portId: "transfer";
|
|
379
|
+
readonly counterPartyChannelId: "channel-253";
|
|
380
|
+
readonly counterPartyPortId: "transfer";
|
|
381
|
+
readonly ordering: 0;
|
|
382
|
+
readonly state: 3;
|
|
383
|
+
readonly version: "ics20-1";
|
|
384
|
+
};
|
|
385
|
+
};
|
|
386
|
+
readonly 'pio-mainnet-1': {
|
|
387
|
+
readonly id: "connection-37";
|
|
388
|
+
readonly client_id: "07-tendermint-30";
|
|
389
|
+
readonly counterparty: {
|
|
390
|
+
readonly client_id: "07-tendermint-36";
|
|
391
|
+
readonly connection_id: "connection-13";
|
|
392
|
+
};
|
|
393
|
+
readonly state: 3;
|
|
394
|
+
readonly transferChannel: {
|
|
395
|
+
readonly channelId: "channel-20";
|
|
396
|
+
readonly portId: "transfer";
|
|
397
|
+
readonly counterPartyChannelId: "channel-10";
|
|
398
|
+
readonly counterPartyPortId: "transfer";
|
|
399
|
+
readonly ordering: 0;
|
|
400
|
+
readonly state: 3;
|
|
401
|
+
readonly version: "ics20-1";
|
|
402
|
+
};
|
|
403
|
+
};
|
|
404
|
+
readonly 'planq_7070-2': {
|
|
405
|
+
readonly id: "connection-95";
|
|
406
|
+
readonly client_id: "07-tendermint-103";
|
|
407
|
+
readonly counterparty: {
|
|
408
|
+
readonly client_id: "07-tendermint-567";
|
|
409
|
+
readonly connection_id: "connection-490";
|
|
410
|
+
};
|
|
411
|
+
readonly state: 3;
|
|
412
|
+
readonly transferChannel: {
|
|
413
|
+
readonly channelId: "channel-82";
|
|
414
|
+
readonly portId: "transfer";
|
|
415
|
+
readonly counterPartyChannelId: "channel-63";
|
|
416
|
+
readonly counterPartyPortId: "transfer";
|
|
417
|
+
readonly ordering: 0;
|
|
418
|
+
readonly state: 3;
|
|
419
|
+
readonly version: "ics20-1";
|
|
420
|
+
};
|
|
421
|
+
};
|
|
422
|
+
readonly 'pryzm-1': {
|
|
423
|
+
readonly id: "connection-92";
|
|
424
|
+
readonly client_id: "07-tendermint-100";
|
|
425
|
+
readonly counterparty: {
|
|
426
|
+
readonly client_id: "07-tendermint-5";
|
|
427
|
+
readonly connection_id: "connection-5";
|
|
428
|
+
};
|
|
429
|
+
readonly state: 3;
|
|
430
|
+
readonly transferChannel: {
|
|
431
|
+
readonly channelId: "channel-79";
|
|
432
|
+
readonly portId: "transfer";
|
|
433
|
+
readonly counterPartyChannelId: "channel-5";
|
|
434
|
+
readonly counterPartyPortId: "transfer";
|
|
435
|
+
readonly ordering: 0;
|
|
436
|
+
readonly state: 3;
|
|
437
|
+
readonly version: "ics20-1";
|
|
438
|
+
};
|
|
439
|
+
};
|
|
440
|
+
readonly 'secret-4': {
|
|
441
|
+
readonly id: "connection-33";
|
|
442
|
+
readonly client_id: "07-tendermint-24";
|
|
443
|
+
readonly counterparty: {
|
|
444
|
+
readonly client_id: "07-tendermint-170";
|
|
445
|
+
readonly connection_id: "connection-127";
|
|
446
|
+
};
|
|
447
|
+
readonly state: 3;
|
|
448
|
+
readonly transferChannel: {
|
|
449
|
+
readonly channelId: "channel-17";
|
|
450
|
+
readonly portId: "transfer";
|
|
451
|
+
readonly counterPartyChannelId: "channel-88";
|
|
452
|
+
readonly counterPartyPortId: "transfer";
|
|
453
|
+
readonly ordering: 0;
|
|
454
|
+
readonly state: 3;
|
|
455
|
+
readonly version: "ics20-1";
|
|
456
|
+
};
|
|
457
|
+
};
|
|
458
|
+
readonly 'shido_9008-1': {
|
|
459
|
+
readonly id: "connection-99";
|
|
460
|
+
readonly client_id: "07-tendermint-106";
|
|
461
|
+
readonly counterparty: {
|
|
462
|
+
readonly client_id: "07-tendermint-9";
|
|
463
|
+
readonly connection_id: "connection-11";
|
|
464
|
+
};
|
|
465
|
+
readonly state: 3;
|
|
466
|
+
readonly transferChannel: {
|
|
467
|
+
readonly channelId: "channel-87";
|
|
468
|
+
readonly portId: "transfer";
|
|
469
|
+
readonly counterPartyChannelId: "channel-5";
|
|
470
|
+
readonly counterPartyPortId: "transfer";
|
|
471
|
+
readonly ordering: 0;
|
|
472
|
+
readonly state: 3;
|
|
473
|
+
readonly version: "ics20-1";
|
|
474
|
+
};
|
|
475
|
+
};
|
|
476
|
+
readonly 'stargaze-1': {
|
|
477
|
+
readonly id: "connection-25";
|
|
478
|
+
readonly client_id: "07-tendermint-16";
|
|
479
|
+
readonly counterparty: {
|
|
480
|
+
readonly client_id: "07-tendermint-287";
|
|
481
|
+
readonly connection_id: "connection-214";
|
|
482
|
+
};
|
|
483
|
+
readonly state: 3;
|
|
484
|
+
readonly transferChannel: {
|
|
485
|
+
readonly channelId: "channel-11";
|
|
486
|
+
readonly portId: "transfer";
|
|
487
|
+
readonly counterPartyChannelId: "channel-204";
|
|
488
|
+
readonly counterPartyPortId: "transfer";
|
|
489
|
+
readonly ordering: 0;
|
|
490
|
+
readonly state: 3;
|
|
491
|
+
readonly version: "ics20-1";
|
|
492
|
+
};
|
|
493
|
+
};
|
|
494
|
+
readonly 'titan_18888-1': {
|
|
495
|
+
readonly id: "connection-109";
|
|
496
|
+
readonly client_id: "07-tendermint-114";
|
|
497
|
+
readonly counterparty: {
|
|
498
|
+
readonly client_id: "07-tendermint-1";
|
|
499
|
+
readonly connection_id: "connection-0";
|
|
500
|
+
};
|
|
501
|
+
readonly state: 3;
|
|
502
|
+
readonly transferChannel: {
|
|
503
|
+
readonly channelId: "channel-99";
|
|
504
|
+
readonly portId: "transfer";
|
|
505
|
+
readonly counterPartyChannelId: "channel-0";
|
|
506
|
+
readonly counterPartyPortId: "transfer";
|
|
507
|
+
readonly ordering: 0;
|
|
508
|
+
readonly state: 3;
|
|
509
|
+
readonly version: "ics20-1";
|
|
510
|
+
};
|
|
511
|
+
};
|
|
512
|
+
readonly 'umee-1': {
|
|
513
|
+
readonly id: "connection-74";
|
|
514
|
+
readonly client_id: "07-tendermint-73";
|
|
515
|
+
readonly counterparty: {
|
|
516
|
+
readonly client_id: "07-tendermint-248";
|
|
517
|
+
readonly connection_id: "connection-210";
|
|
518
|
+
};
|
|
519
|
+
readonly state: 3;
|
|
520
|
+
readonly transferChannel: {
|
|
521
|
+
readonly channelId: "channel-51";
|
|
522
|
+
readonly portId: "transfer";
|
|
523
|
+
readonly counterPartyChannelId: "channel-120";
|
|
524
|
+
readonly counterPartyPortId: "transfer";
|
|
525
|
+
readonly ordering: 0;
|
|
526
|
+
readonly state: 3;
|
|
527
|
+
readonly version: "ics20-1";
|
|
528
|
+
};
|
|
529
|
+
};
|
|
530
|
+
readonly 'vota-ash': {
|
|
531
|
+
readonly id: "connection-106";
|
|
532
|
+
readonly client_id: "07-tendermint-111";
|
|
533
|
+
readonly counterparty: {
|
|
534
|
+
readonly client_id: "07-tendermint-23";
|
|
535
|
+
readonly connection_id: "connection-29";
|
|
536
|
+
};
|
|
537
|
+
readonly state: 3;
|
|
538
|
+
readonly transferChannel: {
|
|
539
|
+
readonly channelId: "channel-94";
|
|
540
|
+
readonly portId: "transfer";
|
|
541
|
+
readonly counterPartyChannelId: "channel-14";
|
|
542
|
+
readonly counterPartyPortId: "transfer";
|
|
543
|
+
readonly ordering: 0;
|
|
544
|
+
readonly state: 3;
|
|
545
|
+
readonly version: "ics20-1";
|
|
546
|
+
};
|
|
547
|
+
};
|
|
548
|
+
};
|
|
549
|
+
} & {
|
|
550
|
+
pfmEnabled: boolean;
|
|
551
|
+
icqEnabled: boolean;
|
|
552
|
+
icaEnabled: boolean;
|
|
553
|
+
cctpDestinationDomain?: number;
|
|
554
|
+
}>>;
|
|
555
|
+
export function sendIt(orch: Orchestrator, { chainHub, sharedLocalAccountP, log, nobleAccountP, USDC, zoeTools: { localTransfer, withdrawToSeat }, }: {
|
|
556
|
+
chainHub: GuestInterface<ChainHub>;
|
|
557
|
+
sharedLocalAccountP: Promise<GuestInterface<LocalOrchestrationAccountKit["holder"]>>;
|
|
558
|
+
nobleAccountP: Promise<GuestInterface<CosmosOrchestrationAccountKit["holder"]>>;
|
|
559
|
+
zoeTools: GuestInterface<ZoeTools>;
|
|
560
|
+
log: GuestOf<(msg: string) => Vow<void>>;
|
|
561
|
+
USDC: Brand;
|
|
562
|
+
}, seat: ZCFSeat, offerArgs: {
|
|
563
|
+
chainName: string;
|
|
564
|
+
destAddr: string;
|
|
565
|
+
}): Promise<undefined>;
|
|
566
|
+
import type { Orchestrator } from '../types.js';
|
|
567
|
+
import type { ChainHub } from '../types.js';
|
|
568
|
+
import type { GuestInterface } from '@agoric/async-flow';
|
|
569
|
+
import type { LocalOrchestrationAccountKit } from '../exos/local-orchestration-account.js';
|
|
570
|
+
import type { CosmosOrchestrationAccountKit } from '../exos/cosmos-orchestration-account.js';
|
|
571
|
+
import type { ZoeTools } from '../utils/zoe-tools.js';
|
|
572
|
+
import type { Vow } from '@agoric/vow';
|
|
573
|
+
import type { GuestOf } from '@agoric/async-flow';
|
|
574
|
+
import type { Brand } from '@agoric/ertp';
|
|
575
|
+
import type { ZCFSeat } from '@agoric/zoe';
|
|
576
|
+
//# sourceMappingURL=send-anywhere.flows.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"send-anywhere.flows.d.ts","sourceRoot":"","sources":["send-anywhere.flows.js"],"names":[],"mappings":"AAyBO,uCAFI,YAAY;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IAKtB;AA0BM,6BAXI,YAAY,6GAEpB;IAAsC,QAAQ,EAAtC,eAAe,QAAQ,CAAC;IAC6C,mBAAmB,EAAxF,OAAO,CAAC,eAAe,4BAA4B,CAAC,QAAQ,CAAC,CAAC,CAAC;IACO,aAAa,EAAnF,OAAO,CAAC,eAAe,6BAA6B,CAAC,QAAQ,CAAC,CAAC,CAAC;IAClC,QAAQ,EAAtC,eAAe,QAAQ,CAAC;IACiB,GAAG,EAA5C,QAAQ,CAAC,GAAG,EAAE,MAAM,KAAK,IAAI,IAAI,CAAC,CAAC;IACxB,IAAI,EAAf,KAAK;CACb,QAAQ,OAAO,aACP;IAAE,SAAS,EAAE,MAAM,CAAC;IAAC,QAAQ,EAAE,MAAM,CAAA;CAAE,sBA4GjD;kCArJ2F,aAAa;8BAAb,aAAa;oCAN/D,oBAAoB;kDAIf,wCAAwC;mDAIvC,yCAAyC;8BAH9D,uBAAuB;yBAF5B,aAAa;6BAHO,oBAAoB;2BAEtC,cAAc;6BADK,aAAa"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"shared.flows.d.ts","sourceRoot":"","sources":["shared.flows.js"],"names":[],"mappings":"AAgBO,uCAHI,YAAY,GACV,OAAO,CAAC,mBAAmB,CAAC,CAKxC;kCAXsE,aAAa;yCAAb,aAAa"}
|