@agoric/orchestration 0.1.1-dev-b9091ce.0 → 0.1.1-dev-10ec2d9.0
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/package.json +16 -16
- package/src/examples/auto-stake-it.contract.d.ts +1 -1
- package/src/examples/basic-flows.contract.d.ts +1 -1
- package/src/examples/send-anywhere.contract.d.ts +1 -1
- package/src/examples/staking-combinations.contract.d.ts +1 -1
- package/src/examples/swap.contract.d.ts +1 -1
- package/src/examples/unbond.contract.d.ts +1 -1
- package/src/fixtures/query-flows.contract.d.ts +1 -1
- package/src/utils/start-helper.d.ts +2 -2
- package/src/vat-orchestration.d.ts +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@agoric/orchestration",
|
|
3
|
-
"version": "0.1.1-dev-
|
|
3
|
+
"version": "0.1.1-dev-10ec2d9.0+10ec2d9",
|
|
4
4
|
"description": "Chain abstraction for Agoric's orchestration clients",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "index.js",
|
|
@@ -33,19 +33,19 @@
|
|
|
33
33
|
},
|
|
34
34
|
"homepage": "https://github.com/Agoric/agoric-sdk#readme",
|
|
35
35
|
"dependencies": {
|
|
36
|
-
"@agoric/async-flow": "0.1.1-dev-
|
|
37
|
-
"@agoric/cosmic-proto": "0.4.1-dev-
|
|
38
|
-
"@agoric/ertp": "0.16.3-dev-
|
|
39
|
-
"@agoric/internal": "0.3.3-dev-
|
|
40
|
-
"@agoric/network": "0.1.1-dev-
|
|
41
|
-
"@agoric/notifier": "0.6.3-dev-
|
|
42
|
-
"@agoric/store": "0.9.3-dev-
|
|
43
|
-
"@agoric/time": "0.3.3-dev-
|
|
44
|
-
"@agoric/vat-data": "0.5.3-dev-
|
|
45
|
-
"@agoric/vats": "0.15.2-dev-
|
|
46
|
-
"@agoric/vow": "0.1.1-dev-
|
|
47
|
-
"@agoric/zoe": "0.26.3-dev-
|
|
48
|
-
"@agoric/zone": "0.2.3-dev-
|
|
36
|
+
"@agoric/async-flow": "0.1.1-dev-10ec2d9.0+10ec2d9",
|
|
37
|
+
"@agoric/cosmic-proto": "0.4.1-dev-10ec2d9.0+10ec2d9",
|
|
38
|
+
"@agoric/ertp": "0.16.3-dev-10ec2d9.0+10ec2d9",
|
|
39
|
+
"@agoric/internal": "0.3.3-dev-10ec2d9.0+10ec2d9",
|
|
40
|
+
"@agoric/network": "0.1.1-dev-10ec2d9.0+10ec2d9",
|
|
41
|
+
"@agoric/notifier": "0.6.3-dev-10ec2d9.0+10ec2d9",
|
|
42
|
+
"@agoric/store": "0.9.3-dev-10ec2d9.0+10ec2d9",
|
|
43
|
+
"@agoric/time": "0.3.3-dev-10ec2d9.0+10ec2d9",
|
|
44
|
+
"@agoric/vat-data": "0.5.3-dev-10ec2d9.0+10ec2d9",
|
|
45
|
+
"@agoric/vats": "0.15.2-dev-10ec2d9.0+10ec2d9",
|
|
46
|
+
"@agoric/vow": "0.1.1-dev-10ec2d9.0+10ec2d9",
|
|
47
|
+
"@agoric/zoe": "0.26.3-dev-10ec2d9.0+10ec2d9",
|
|
48
|
+
"@agoric/zone": "0.2.3-dev-10ec2d9.0+10ec2d9",
|
|
49
49
|
"@cosmjs/encoding": "^0.32.4",
|
|
50
50
|
"@endo/base64": "^1.0.9",
|
|
51
51
|
"@endo/errors": "^1.2.10",
|
|
@@ -56,7 +56,7 @@
|
|
|
56
56
|
"bs58": "^6.0.0"
|
|
57
57
|
},
|
|
58
58
|
"devDependencies": {
|
|
59
|
-
"@agoric/swingset-liveslots": "0.10.3-dev-
|
|
59
|
+
"@agoric/swingset-liveslots": "0.10.3-dev-10ec2d9.0+10ec2d9",
|
|
60
60
|
"@chain-registry/client": "^1.47.4",
|
|
61
61
|
"@cosmjs/amino": "^0.33.0",
|
|
62
62
|
"@cosmjs/proto-signing": "^0.33.0",
|
|
@@ -99,5 +99,5 @@
|
|
|
99
99
|
"typeCoverage": {
|
|
100
100
|
"atLeast": 97.7
|
|
101
101
|
},
|
|
102
|
-
"gitHead": "
|
|
102
|
+
"gitHead": "10ec2d9d92b0ecd194a22685d56c29d4de5dc878"
|
|
103
103
|
}
|
|
@@ -4,7 +4,7 @@ export const start: (zcf: ZCF<Record<string, unknown>>, privateArgs: Orchestrati
|
|
|
4
4
|
assetInfo?: [Denom, DenomDetail & {
|
|
5
5
|
brandKey?: string;
|
|
6
6
|
}][];
|
|
7
|
-
}, baggage:
|
|
7
|
+
}, baggage: Baggage) => Promise<{
|
|
8
8
|
publicFacet: import("@endo/exo").Guarded<{
|
|
9
9
|
makeAccountsInvitation(): Promise<globalThis.Invitation<import("@agoric/vow").Vow<import("@agoric/vow").Vow<{
|
|
10
10
|
publicSubscribers: {
|
|
@@ -4,7 +4,7 @@ export const start: (zcf: ZCF<Record<string, unknown>>, privateArgs: Orchestrati
|
|
|
4
4
|
assetInfo?: [Denom, DenomDetail & {
|
|
5
5
|
brandKey?: string;
|
|
6
6
|
}][];
|
|
7
|
-
}, baggage:
|
|
7
|
+
}, baggage: Baggage) => Promise<{
|
|
8
8
|
publicFacet: import("@endo/exo").Guarded<{
|
|
9
9
|
makeOrchAccountInvitation(): Promise<globalThis.Invitation<import("@agoric/vow").Vow<import("../utils/zoe-tools.js").ResolvedContinuingOfferResult>, {
|
|
10
10
|
chainName: string;
|
|
@@ -31,7 +31,7 @@ export const start: (zcf: globalThis.ZCF<Record<string, unknown>>, privateArgs:
|
|
|
31
31
|
chainInfo?: Record<string, CosmosChainInfo>;
|
|
32
32
|
marshaller: Marshaller;
|
|
33
33
|
storageNode: Remote<StorageNode>;
|
|
34
|
-
}, baggage:
|
|
34
|
+
}, baggage: Baggage) => Promise<{
|
|
35
35
|
publicFacet: import("@endo/exo").Guarded<{
|
|
36
36
|
makeSendInvitation(): Promise<globalThis.Invitation<Vow<undefined>, {
|
|
37
37
|
chainName: string;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
export const start: (zcf: ZCF<Record<string, unknown>>, privateArgs: OrchestrationPowers & {
|
|
2
2
|
marshaller: Marshaller;
|
|
3
|
-
}, baggage:
|
|
3
|
+
}, baggage: Baggage) => Promise<{
|
|
4
4
|
publicFacet: import("@endo/exo").Guarded<{
|
|
5
5
|
makeAccount(): Promise<Invitation<import("@agoric/vow").Vow<import("../utils/zoe-tools.js").ResolvedContinuingOfferResult>, {
|
|
6
6
|
chainName: string;
|
|
@@ -25,7 +25,7 @@ export const start: (zcf: globalThis.ZCF<Record<string, unknown>>, privateArgs:
|
|
|
25
25
|
assetInfo: [Denom, DenomDetail & {
|
|
26
26
|
brandKey?: string;
|
|
27
27
|
}][];
|
|
28
|
-
}, baggage:
|
|
28
|
+
}, baggage: Baggage) => Promise<{
|
|
29
29
|
publicFacet: import("@endo/exo").Guarded<{
|
|
30
30
|
makeSwapAndStakeInvitation(): Promise<globalThis.Invitation<import("@agoric/vow").Vow<void>, {
|
|
31
31
|
staked: Amount<"nat">;
|
|
@@ -5,7 +5,7 @@ export const start: (zcf: globalThis.ZCF<Record<string, unknown>>, privateArgs:
|
|
|
5
5
|
storageNode: Remote<StorageNode>;
|
|
6
6
|
marshaller: Marshaller;
|
|
7
7
|
timerService: Remote<TimerService>;
|
|
8
|
-
}, baggage:
|
|
8
|
+
}, baggage: Baggage) => Promise<{
|
|
9
9
|
publicFacet: import("@endo/exo").Guarded<{
|
|
10
10
|
makeUnbondAndTransferInvitation(): Promise<globalThis.Invitation<import("@agoric/vow").Vow<void>, undefined>>;
|
|
11
11
|
}>;
|
|
@@ -4,7 +4,7 @@ export const start: (zcf: ZCF<Record<string, unknown>>, privateArgs: Orchestrati
|
|
|
4
4
|
assetInfo?: [Denom, DenomDetail & {
|
|
5
5
|
brandKey?: string;
|
|
6
6
|
}][];
|
|
7
|
-
}, baggage:
|
|
7
|
+
}, baggage: Baggage) => Promise<{
|
|
8
8
|
publicFacet: import("@endo/exo").Guarded<{
|
|
9
9
|
makeSendICQQueryInvitation(): Promise<globalThis.Invitation<import("@agoric/vow").Vow<string>, {
|
|
10
10
|
chainName: string;
|
|
@@ -39,7 +39,7 @@ export function provideOrchestration(zcf: ZCF, baggage: Baggage, remotePowers: O
|
|
|
39
39
|
restart(eager?: boolean): void;
|
|
40
40
|
wake(): void;
|
|
41
41
|
getOutcome(): import("@agoric/vow").Vow<any>;
|
|
42
|
-
dump(): ([op: "doFulfill", vow: import("@agoric/vow").Vow<
|
|
42
|
+
dump(): ([op: "doFulfill", vow: import("@agoric/vow").Vow<Passable>, fulfillment: Passable] | [op: "doReject", vow: import("@agoric/vow").Vow<Passable>, reason: Passable] | [op: "doReturn", callIndex: number, result: Passable] | [op: "doThrow", callIndex: number, problem: Passable] | [op: "checkCall", target: Passable, optVerb: PropertyKey | undefined, args: Passable[], callIndex: number] | [op: "checkSendOnly", target: Passable, optVerb: PropertyKey | undefined, args: Passable[], callIndex: number] | [op: "checkSend", target: Passable, optVerb: PropertyKey | undefined, args: Passable[], callIndex: number])[];
|
|
43
43
|
getOptFatalProblem(): any;
|
|
44
44
|
};
|
|
45
45
|
admin: {
|
|
@@ -56,7 +56,7 @@ export function provideOrchestration(zcf: ZCF, baggage: Baggage, remotePowers: O
|
|
|
56
56
|
startEager?: boolean;
|
|
57
57
|
}) => import("@agoric/async-flow").HostOf<F>;
|
|
58
58
|
adminAsyncFlow: import("@endo/exo").Guarded<{
|
|
59
|
-
getFailures(): import("@endo/patterns").CopyMap<any,
|
|
59
|
+
getFailures(): import("@endo/patterns").CopyMap<any, Passable>;
|
|
60
60
|
wakeAll(): void;
|
|
61
61
|
getFlowForOutcomeVow(outcomeVow: any): any;
|
|
62
62
|
}>;
|
|
@@ -6,7 +6,7 @@ export function buildRootObject(vatPowers: VatPowers & {
|
|
|
6
6
|
makeAccount(chainId: string, hostConnectionId: import("@agoric/vats").IBCConnectionID, controllerConnectionId: import("@agoric/vats").IBCConnectionID, opts?: import("./utils/address.js").ICAChannelAddressOpts): import("@agoric/vow").Vow<import("./cosmos-api.js").IcaAccount>;
|
|
7
7
|
provideICQConnection(controllerConnectionId: import("@agoric/vats").IBCConnectionID, version?: string): import("@agoric/vow").Vow<import("./types.js").ICQConnection> | import("./types.js").ICQConnection;
|
|
8
8
|
}>;
|
|
9
|
-
} &
|
|
9
|
+
} & RemotableObject<`Alleged: ${string}`> & import("@endo/eventual-send").RemotableBrand<{}, {
|
|
10
10
|
/** @param {Partial<CosmosOrchestrationPowers>} [initialPowers] */
|
|
11
11
|
makeCosmosInterchainService(initialPowers?: Partial<CosmosOrchestrationPowers>): import("@endo/exo").Guarded<{
|
|
12
12
|
makeAccount(chainId: string, hostConnectionId: import("@agoric/vats").IBCConnectionID, controllerConnectionId: import("@agoric/vats").IBCConnectionID, opts?: import("./utils/address.js").ICAChannelAddressOpts): import("@agoric/vow").Vow<import("./cosmos-api.js").IcaAccount>;
|