@agoric/orchestration 0.1.1-dev-0282e58.0 → 0.1.1-dev-d492653.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 +15 -15
- package/src/examples/stakeIca.contract.d.ts +14 -17
- package/src/examples/stakeIca.contract.d.ts.map +1 -1
- package/src/examples/stakeIca.contract.js +1 -0
- package/src/examples/swapExample.contract.d.ts +2 -2
- package/src/examples/swapExample.contract.d.ts.map +1 -1
- package/src/examples/swapExample.contract.js +1 -1
- package/src/proposals/start-stakeAtom.d.ts.map +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-d492653.0+d492653",
|
|
4
4
|
"description": "Chain abstraction for Agoric's orchestration clients",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "index.js",
|
|
@@ -32,19 +32,19 @@
|
|
|
32
32
|
},
|
|
33
33
|
"homepage": "https://github.com/Agoric/agoric-sdk#readme",
|
|
34
34
|
"dependencies": {
|
|
35
|
-
"@agoric/assert": "0.6.1-dev-
|
|
36
|
-
"@agoric/cosmic-proto": "0.4.1-dev-
|
|
37
|
-
"@agoric/ertp": "0.16.3-dev-
|
|
38
|
-
"@agoric/internal": "0.3.3-dev-
|
|
39
|
-
"@agoric/network": "0.1.1-dev-
|
|
40
|
-
"@agoric/notifier": "0.6.3-dev-
|
|
41
|
-
"@agoric/store": "0.9.3-dev-
|
|
42
|
-
"@agoric/time": "0.3.3-dev-
|
|
43
|
-
"@agoric/vat-data": "0.5.3-dev-
|
|
44
|
-
"@agoric/vats": "0.15.2-dev-
|
|
45
|
-
"@agoric/vow": "0.1.1-dev-
|
|
46
|
-
"@agoric/zoe": "0.26.3-dev-
|
|
47
|
-
"@agoric/zone": "0.2.3-dev-
|
|
35
|
+
"@agoric/assert": "0.6.1-dev-d492653.0+d492653",
|
|
36
|
+
"@agoric/cosmic-proto": "0.4.1-dev-d492653.0+d492653",
|
|
37
|
+
"@agoric/ertp": "0.16.3-dev-d492653.0+d492653",
|
|
38
|
+
"@agoric/internal": "0.3.3-dev-d492653.0+d492653",
|
|
39
|
+
"@agoric/network": "0.1.1-dev-d492653.0+d492653",
|
|
40
|
+
"@agoric/notifier": "0.6.3-dev-d492653.0+d492653",
|
|
41
|
+
"@agoric/store": "0.9.3-dev-d492653.0+d492653",
|
|
42
|
+
"@agoric/time": "0.3.3-dev-d492653.0+d492653",
|
|
43
|
+
"@agoric/vat-data": "0.5.3-dev-d492653.0+d492653",
|
|
44
|
+
"@agoric/vats": "0.15.2-dev-d492653.0+d492653",
|
|
45
|
+
"@agoric/vow": "0.1.1-dev-d492653.0+d492653",
|
|
46
|
+
"@agoric/zoe": "0.26.3-dev-d492653.0+d492653",
|
|
47
|
+
"@agoric/zone": "0.2.3-dev-d492653.0+d492653",
|
|
48
48
|
"@endo/base64": "^1.0.5",
|
|
49
49
|
"@endo/far": "^1.1.2",
|
|
50
50
|
"@endo/marshal": "^1.5.0",
|
|
@@ -87,5 +87,5 @@
|
|
|
87
87
|
"typeCoverage": {
|
|
88
88
|
"atLeast": 97.1
|
|
89
89
|
},
|
|
90
|
-
"gitHead": "
|
|
90
|
+
"gitHead": "d49265372b3cdd681558791b0c780e1c3062bdcc"
|
|
91
91
|
}
|
|
@@ -1,18 +1,17 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
}
|
|
15
|
-
export namespace privateArgsShape { }
|
|
1
|
+
/**
|
|
2
|
+
* @import {Baggage} from '@agoric/vat-data';
|
|
3
|
+
* @import {IBCConnectionID} from '@agoric/vats';
|
|
4
|
+
* @import {TimerService} from '@agoric/time';
|
|
5
|
+
* @import {ICQConnection, OrchestrationService} from '../types.js';
|
|
6
|
+
*/
|
|
7
|
+
/** @type {ContractMeta<typeof start>} */
|
|
8
|
+
export const meta: ContractMeta<typeof start>;
|
|
9
|
+
export const privateArgsShape: {
|
|
10
|
+
orchestration: globalThis.Pattern;
|
|
11
|
+
storageNode: globalThis.Pattern;
|
|
12
|
+
marshaller: globalThis.Pattern;
|
|
13
|
+
timer: globalThis.Pattern;
|
|
14
|
+
} | undefined;
|
|
16
15
|
export function start(zcf: ZCF<StakeIcaTerms>, privateArgs: {
|
|
17
16
|
orchestration: import("@endo/exo").Guarded<{
|
|
18
17
|
makeAccount(chainId: string, hostConnectionId: `connection-${number}`, controllerConnectionId: `connection-${number}`): Promise<import("../cosmos-api.js").IcaAccount>;
|
|
@@ -93,8 +92,6 @@ export type StakeIcaTerms = {
|
|
|
93
92
|
bondDenom: string;
|
|
94
93
|
};
|
|
95
94
|
export type StakeAtomSF = typeof start;
|
|
96
|
-
import { StorageNodeShape } from '@agoric/internal';
|
|
97
|
-
import { TimerServiceShape } from '@agoric/time';
|
|
98
95
|
import type { TimerService } from '@agoric/time';
|
|
99
96
|
import type { Baggage } from '@agoric/vat-data';
|
|
100
97
|
//# sourceMappingURL=stakeIca.contract.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"stakeIca.contract.d.ts","sourceRoot":"","sources":["stakeIca.contract.js"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"stakeIca.contract.d.ts","sourceRoot":"","sources":["stakeIca.contract.js"],"names":[],"mappings":"AAYA;;;;;GAKG;AAEH,yCAAyC;AACzC,mBADW,YAAY,CAAC,OAAO,KAAK,CAAC,CAclC;AACH;;;;;cAAsD;AAqB/C,2BATI,GAAG,CAAC,aAAa,CAAC;;;;;;;;;iBAGX,WAAW;gBACZ,UAAU;;;;;;;;;;;;;;mGA0E8rF,OAAO,KAAK,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAHruF;;aAnFa,MAAM;;;eAGJ,MAAM;;0BAkFR,OAAO,KAAK;kCA5GK,cAAc;6BAFnB,kBAAkB"}
|
|
@@ -7,8 +7,8 @@
|
|
|
7
7
|
* @import {Baggage} from '@agoric/vat-data'
|
|
8
8
|
* @import {NameHub} from '@agoric/vats';
|
|
9
9
|
*/
|
|
10
|
-
/** @type {ContractMeta} */
|
|
11
|
-
export const meta: ContractMeta
|
|
10
|
+
/** @type {ContractMeta<typeof start>} */
|
|
11
|
+
export const meta: ContractMeta<typeof start>;
|
|
12
12
|
export function makeNatAmountShape(brand: Brand, min?: bigint | undefined): {
|
|
13
13
|
brand: globalThis.Brand;
|
|
14
14
|
value: import("@endo/patterns").Matcher;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"swapExample.contract.d.ts","sourceRoot":"","sources":["swapExample.contract.js"],"names":[],"mappings":"AAaA;;;;;;;;GAQG;AAEH,
|
|
1
|
+
{"version":3,"file":"swapExample.contract.d.ts","sourceRoot":"","sources":["swapExample.contract.js"],"names":[],"mappings":"AAaA;;;;;;;;GAQG;AAEH,yCAAyC;AACzC,mBADW,YAAY,CAAC,OAAO,KAAK,CAAC,CAWnC;AASK,0CAHI,KAAK;;;EAIsC;AAc/C,2BAXI,GAAG;;;;;8BANO,MACpB,KACA,CAAC;6BAec,QAAQ,KAAK,CAAC,mBAA4B,OACtD;6BAwBA,OAAM,KAAK,CACf;;;2BAqBgB,EAAE;;;uBAwDwvB,OAAO,sBAAsB,EAAE,SAAS;;;4BAAyqB,OAAO,sBAAsB,EAAE,SAAS,EAAE;;;;;;;;;;;;;;;;;gBA3Gp/C,UAAU;;;;oBA2CV,MAAM,CAAC,KAAK,CAAC;;;;;oBAAb,MAAM,CAAC,KAAK,CAAC;;;;GA+D7B;6BA5IyB,cAAc;4BAHf,kBAAkB;gCAHwB,aAAa;kCACjD,cAAc;6BAInB,kBAAkB;4CALuB,aAAa"}
|
|
@@ -21,7 +21,7 @@ import { prepareLocalChainAccountKit } from '../exos/local-chain-account-kit.js'
|
|
|
21
21
|
* @import {NameHub} from '@agoric/vats';
|
|
22
22
|
*/
|
|
23
23
|
|
|
24
|
-
/** @type {ContractMeta} */
|
|
24
|
+
/** @type {ContractMeta<typeof start>} */
|
|
25
25
|
export const meta = {
|
|
26
26
|
privateArgsShape: {
|
|
27
27
|
agoricNames: M.remotable('agoricNames'),
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"start-stakeAtom.d.ts","sourceRoot":"","sources":["start-stakeAtom.js"],"names":[],"mappings":"AAuBO,yOAVI,eAAe,GAAG;IAC5B,YAAgB,EAAE;QAClB,OAAa,EAAE;YACf,QAAgB,EAAE,YAAY,
|
|
1
|
+
{"version":3,"file":"start-stakeAtom.d.ts","sourceRoot":"","sources":["start-stakeAtom.js"],"names":[],"mappings":"AAuBO,yOAVI,eAAe,GAAG;IAC5B,YAAgB,EAAE;QAClB,OAAa,EAAE;YACf,QAAgB,EAAE,YAAY,OAqC3B,IAAE,aAAa,CACnB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;+GA0DmgH,OAAO,KAAK,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;eA9FtgH,CAAC;SACH,CAAC;KACH,CAAC;CACH,iBA2DH;AAGM;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EA4BN;mCAxG6C,+BAA+B"}
|