@agoric/zoe 0.26.3-dev-353daca.0 → 0.26.3-dev-dd37e03.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/bundles/bundle-contractFacet-js-meta.json +247 -242
- package/bundles/bundle-contractFacet.js +1 -1
- package/package.json +14 -14
- package/src/contractSupport/priceQuote.d.ts +3 -3
- package/src/contractSupport/priceQuote.d.ts.map +1 -1
- package/src/internal-types.d.ts +1 -1
- package/tools/fakePriceAuthority.d.ts +1 -1
- package/tools/test-utils.d.ts +3 -3
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@agoric/zoe",
|
|
3
|
-
"version": "0.26.3-dev-
|
|
3
|
+
"version": "0.26.3-dev-dd37e03.0+dd37e03",
|
|
4
4
|
"description": "Zoe: the Smart Contract Framework for Offer Enforcement",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./src/zoeService/zoe.js",
|
|
@@ -43,17 +43,17 @@
|
|
|
43
43
|
},
|
|
44
44
|
"homepage": "https://github.com/Agoric/agoric-sdk#readme",
|
|
45
45
|
"dependencies": {
|
|
46
|
-
"@agoric/base-zone": "0.1.1-dev-
|
|
47
|
-
"@agoric/ertp": "0.16.3-dev-
|
|
48
|
-
"@agoric/internal": "0.3.3-dev-
|
|
49
|
-
"@agoric/notifier": "0.6.3-dev-
|
|
50
|
-
"@agoric/store": "0.9.3-dev-
|
|
51
|
-
"@agoric/swingset-liveslots": "0.10.3-dev-
|
|
52
|
-
"@agoric/swingset-vat": "0.32.3-dev-
|
|
53
|
-
"@agoric/time": "0.3.3-dev-
|
|
54
|
-
"@agoric/vat-data": "0.5.3-dev-
|
|
55
|
-
"@agoric/vow": "0.1.1-dev-
|
|
56
|
-
"@agoric/zone": "0.2.3-dev-
|
|
46
|
+
"@agoric/base-zone": "0.1.1-dev-dd37e03.0+dd37e03",
|
|
47
|
+
"@agoric/ertp": "0.16.3-dev-dd37e03.0+dd37e03",
|
|
48
|
+
"@agoric/internal": "0.3.3-dev-dd37e03.0+dd37e03",
|
|
49
|
+
"@agoric/notifier": "0.6.3-dev-dd37e03.0+dd37e03",
|
|
50
|
+
"@agoric/store": "0.9.3-dev-dd37e03.0+dd37e03",
|
|
51
|
+
"@agoric/swingset-liveslots": "0.10.3-dev-dd37e03.0+dd37e03",
|
|
52
|
+
"@agoric/swingset-vat": "0.32.3-dev-dd37e03.0+dd37e03",
|
|
53
|
+
"@agoric/time": "0.3.3-dev-dd37e03.0+dd37e03",
|
|
54
|
+
"@agoric/vat-data": "0.5.3-dev-dd37e03.0+dd37e03",
|
|
55
|
+
"@agoric/vow": "0.1.1-dev-dd37e03.0+dd37e03",
|
|
56
|
+
"@agoric/zone": "0.2.3-dev-dd37e03.0+dd37e03",
|
|
57
57
|
"@endo/bundle-source": "^3.4.1",
|
|
58
58
|
"@endo/captp": "^4.4.0",
|
|
59
59
|
"@endo/common": "^1.2.6",
|
|
@@ -70,7 +70,7 @@
|
|
|
70
70
|
"yargs-parser": "^21.1.1"
|
|
71
71
|
},
|
|
72
72
|
"devDependencies": {
|
|
73
|
-
"@agoric/kmarshal": "0.1.1-dev-
|
|
73
|
+
"@agoric/kmarshal": "0.1.1-dev-dd37e03.0+dd37e03",
|
|
74
74
|
"@endo/init": "^1.1.5",
|
|
75
75
|
"ava": "^5.3.0",
|
|
76
76
|
"c8": "^9.1.0",
|
|
@@ -100,5 +100,5 @@
|
|
|
100
100
|
"typeCoverage": {
|
|
101
101
|
"atLeast": 85.01
|
|
102
102
|
},
|
|
103
|
-
"gitHead": "
|
|
103
|
+
"gitHead": "dd37e031ae967a86d806c32849e8878890b47dfc"
|
|
104
104
|
}
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
export function getPriceDescription(quote: PriceQuote): PriceDescription;
|
|
2
|
-
export function getAmountIn(quote: PriceQuote): import("@agoric/ertp
|
|
3
|
-
export function getAmountOut(quote: PriceQuote): import("@agoric/ertp
|
|
2
|
+
export function getAmountIn(quote: PriceQuote): import("@agoric/ertp").NatAmount;
|
|
3
|
+
export function getAmountOut(quote: PriceQuote): import("@agoric/ertp").NatAmount;
|
|
4
4
|
/** @type {(quote: PriceQuote) => import('@agoric/time').Timestamp} */
|
|
5
5
|
export const getTimestamp: (quote: PriceQuote) => import("@agoric/time").Timestamp;
|
|
6
|
-
export function unitAmount(brand: Brand<"nat">): Promise<import("@agoric/ertp
|
|
6
|
+
export function unitAmount(brand: Brand<"nat">): Promise<import("@agoric/ertp").NatAmount>;
|
|
7
7
|
import type { PriceQuote } from '@agoric/zoe/tools/types.js';
|
|
8
8
|
import type { PriceDescription } from '@agoric/zoe/tools/types.js';
|
|
9
9
|
//# sourceMappingURL=priceQuote.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"priceQuote.d.ts","sourceRoot":"","sources":["priceQuote.js"],"names":[],"mappings":"AAoBO,2CAHI,UAAU,GACR,gBAAgB,CAM5B;AAGM,mCADK,UAAU,
|
|
1
|
+
{"version":3,"file":"priceQuote.d.ts","sourceRoot":"","sources":["priceQuote.js"],"names":[],"mappings":"AAoBO,2CAHI,UAAU,GACR,gBAAgB,CAM5B;AAGM,mCADK,UAAU,oCACiD;AAEhE,oCADK,UAAU,oCACmD;AACzE,sEAAsE;AACtE,2BADW,CAAC,KAAK,EAAE,UAAU,KAAK,OAAO,cAAc,EAAE,SAAS,CACQ;AAGnE,kCADK,KAAK,CAAC,KAAK,CAAC,6CAMvB;gCA/B4F,4BAA4B;sCAA5B,4BAA4B"}
|
package/src/internal-types.d.ts
CHANGED
|
@@ -92,7 +92,7 @@ type RegisterFeeMint = (keyword: Keyword, allegedFeeMintAccess: FeeMintAccess) =
|
|
|
92
92
|
type WrapIssuerKitWithZoeMint = (keyword: Keyword, localIssuerKit: IssuerKit) => any;
|
|
93
93
|
type MakeZoeMint = (keyword: Keyword, assetKind?: globalThis.AssetKind | undefined, displayInfo?: globalThis.AdditionalDisplayInfo | undefined, options?: Partial<{
|
|
94
94
|
elementShape: Pattern;
|
|
95
|
-
recoverySetsOption: import("@agoric/ertp
|
|
95
|
+
recoverySetsOption: import("@agoric/ertp").RecoverySetsOption;
|
|
96
96
|
}> | undefined) => ZoeMint;
|
|
97
97
|
type MakeNoEscrowSeat = (initialAllocation: Allocation, proposal: ProposalRecord, exitObj: ExitObj, seatHandle: SeatHandle) => UserSeat;
|
|
98
98
|
type ReplaceAllocations = (seatHandleAllocations: SeatHandleAllocation[]) => any;
|
|
@@ -25,7 +25,7 @@ export type FakePriceAuthorityOptions = {
|
|
|
25
25
|
timer: import("@agoric/time").TimerService;
|
|
26
26
|
quoteInterval?: import("@agoric/time").RelativeTime | undefined;
|
|
27
27
|
quoteMint?: globalThis.ERef<globalThis.Mint<"set">> | undefined;
|
|
28
|
-
unitAmountIn?: import("@agoric/ertp
|
|
28
|
+
unitAmountIn?: import("@agoric/ertp").NatAmount | undefined;
|
|
29
29
|
};
|
|
30
30
|
import type { PriceAuthority } from '@agoric/zoe/tools/types.js';
|
|
31
31
|
//# sourceMappingURL=fakePriceAuthority.d.ts.map
|
package/tools/test-utils.d.ts
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
export function withAmountUtils(kit: Pick<IssuerKit<"nat">, "brand" | "issuer" | "mint">): {
|
|
2
2
|
/** @param {NatValue} v */
|
|
3
|
-
make: (v: NatValue) => import("@agoric/ertp
|
|
4
|
-
makeEmpty: () => import("@agoric/ertp
|
|
3
|
+
make: (v: NatValue) => import("@agoric/ertp").NatAmount;
|
|
4
|
+
makeEmpty: () => import("@agoric/ertp").NatAmount;
|
|
5
5
|
/**
|
|
6
6
|
* @param {NatValue} n
|
|
7
7
|
* @param {NatValue} [d]
|
|
8
8
|
*/
|
|
9
9
|
makeRatio: (n: NatValue, d?: bigint | undefined) => Ratio;
|
|
10
10
|
/** @param {number} n */
|
|
11
|
-
units: (n: number) => import("@agoric/ertp
|
|
11
|
+
units: (n: number) => import("@agoric/ertp").NatAmount;
|
|
12
12
|
/** The intact Exo remotable */
|
|
13
13
|
issuerKit: Pick<globalThis.IssuerKit<"nat">, "brand" | "issuer" | "mint">;
|
|
14
14
|
brand: globalThis.Brand<"nat">;
|