@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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@agoric/orchestration",
3
- "version": "0.1.1-dev-b9091ce.0+b9091ce",
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-b9091ce.0+b9091ce",
37
- "@agoric/cosmic-proto": "0.4.1-dev-b9091ce.0+b9091ce",
38
- "@agoric/ertp": "0.16.3-dev-b9091ce.0+b9091ce",
39
- "@agoric/internal": "0.3.3-dev-b9091ce.0+b9091ce",
40
- "@agoric/network": "0.1.1-dev-b9091ce.0+b9091ce",
41
- "@agoric/notifier": "0.6.3-dev-b9091ce.0+b9091ce",
42
- "@agoric/store": "0.9.3-dev-b9091ce.0+b9091ce",
43
- "@agoric/time": "0.3.3-dev-b9091ce.0+b9091ce",
44
- "@agoric/vat-data": "0.5.3-dev-b9091ce.0+b9091ce",
45
- "@agoric/vats": "0.15.2-dev-b9091ce.0+b9091ce",
46
- "@agoric/vow": "0.1.1-dev-b9091ce.0+b9091ce",
47
- "@agoric/zoe": "0.26.3-dev-b9091ce.0+b9091ce",
48
- "@agoric/zone": "0.2.3-dev-b9091ce.0+b9091ce",
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-b9091ce.0+b9091ce",
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": "b9091ce4718c00fc3981445b2d76afb1c0134540"
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: import("@agoric/vat-data").Baggage) => Promise<{
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: import("@agoric/vat-data").Baggage) => Promise<{
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: import("@agoric/vat-data").Baggage) => Promise<{
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: import("@agoric/vat-data").Baggage) => Promise<{
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: import("@agoric/vat-data").Baggage) => Promise<{
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: import("@agoric/vat-data").Baggage) => Promise<{
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: import("@agoric/vat-data").Baggage) => Promise<{
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<import("@endo/pass-style").Passable>, fulfillment: import("@endo/pass-style").Passable] | [op: "doReject", vow: import("@agoric/vow").Vow<import("@endo/pass-style").Passable>, reason: import("@endo/pass-style").Passable] | [op: "doReturn", callIndex: number, result: import("@endo/pass-style").Passable] | [op: "doThrow", callIndex: number, problem: import("@endo/pass-style").Passable] | [op: "checkCall", target: import("@endo/pass-style").Passable, optVerb: PropertyKey | undefined, args: import("@endo/pass-style").Passable[], callIndex: number] | [op: "checkSendOnly", target: import("@endo/pass-style").Passable, optVerb: PropertyKey | undefined, args: import("@endo/pass-style").Passable[], callIndex: number] | [op: "checkSend", target: import("@endo/pass-style").Passable, optVerb: PropertyKey | undefined, args: import("@endo/pass-style").Passable[], callIndex: number])[];
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, import("@endo/pass-style").Passable>;
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
- } & import("@endo/pass-style").RemotableObject<`Alleged: ${string}`> & import("@endo/eventual-send").RemotableBrand<{}, {
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>;