@agoric/ertp 0.16.3-dev-81776f3.0 → 0.16.3-dev-a2db142.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 +7 -7
- package/src/issuerKit.d.ts +3 -3
- package/src/issuerKit.d.ts.map +1 -1
- package/src/payment.d.ts +1 -1
- package/src/payment.d.ts.map +1 -1
- package/src/paymentLedger.d.ts +1 -1
- package/src/paymentLedger.d.ts.map +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@agoric/ertp",
|
|
3
|
-
"version": "0.16.3-dev-
|
|
3
|
+
"version": "0.16.3-dev-a2db142.0+a2db142",
|
|
4
4
|
"description": "Electronic Rights Transfer Protocol (ERTP). A smart contract framework for exchanging electronic rights",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "src/index.js",
|
|
@@ -39,11 +39,11 @@
|
|
|
39
39
|
},
|
|
40
40
|
"homepage": "https://github.com/Agoric/agoric-sdk#readme",
|
|
41
41
|
"dependencies": {
|
|
42
|
-
"@agoric/assert": "0.6.1-dev-
|
|
43
|
-
"@agoric/notifier": "0.6.3-dev-
|
|
44
|
-
"@agoric/store": "0.9.3-dev-
|
|
45
|
-
"@agoric/swingset-vat": "0.32.3-dev-
|
|
46
|
-
"@agoric/vat-data": "0.5.3-dev-
|
|
42
|
+
"@agoric/assert": "0.6.1-dev-a2db142.0+a2db142",
|
|
43
|
+
"@agoric/notifier": "0.6.3-dev-a2db142.0+a2db142",
|
|
44
|
+
"@agoric/store": "0.9.3-dev-a2db142.0+a2db142",
|
|
45
|
+
"@agoric/swingset-vat": "0.32.3-dev-a2db142.0+a2db142",
|
|
46
|
+
"@agoric/vat-data": "0.5.3-dev-a2db142.0+a2db142",
|
|
47
47
|
"@endo/eventual-send": "^0.17.3",
|
|
48
48
|
"@endo/far": "^0.2.19",
|
|
49
49
|
"@endo/marshal": "^0.8.6",
|
|
@@ -79,5 +79,5 @@
|
|
|
79
79
|
"publishConfig": {
|
|
80
80
|
"access": "public"
|
|
81
81
|
},
|
|
82
|
-
"gitHead": "
|
|
82
|
+
"gitHead": "a2db1428393bcca3175179f9cfe76c92a4eb1b3f"
|
|
83
83
|
}
|
package/src/issuerKit.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
export function prepareIssuerKit<K extends AssetKind>(issuerBaggage: MapStore<string,
|
|
2
|
-
export function hasIssuer(baggage: MapStore<string,
|
|
3
|
-
export function makeDurableIssuerKit<K extends AssetKind>(issuerBaggage: MapStore<string,
|
|
1
|
+
export function prepareIssuerKit<K extends AssetKind>(issuerBaggage: MapStore<string, any>, optShutdownWithFailure?: import("@agoric/swingset-vat").ShutdownWithFailure | undefined): IssuerKit<K>;
|
|
2
|
+
export function hasIssuer(baggage: MapStore<string, any>): any;
|
|
3
|
+
export function makeDurableIssuerKit<K extends AssetKind>(issuerBaggage: MapStore<string, any>, name: string, assetKind?: K | undefined, displayInfo?: AdditionalDisplayInfo | undefined, optShutdownWithFailure?: import("@agoric/swingset-vat").ShutdownWithFailure | undefined, { elementShape }?: Partial<{
|
|
4
4
|
elementShape: Pattern;
|
|
5
5
|
}> | undefined): IssuerKit<K>;
|
|
6
6
|
export function makeIssuerKit<K extends AssetKind = "nat">(name: string, assetKind?: K | undefined, displayInfo?: AdditionalDisplayInfo | undefined, optShutdownWithFailure?: import("@agoric/swingset-vat").ShutdownWithFailure | undefined, { elementShape }?: Partial<{
|
package/src/issuerKit.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"issuerKit.d.ts","sourceRoot":"","sources":["issuerKit.js"],"names":[],"mappings":"AA2FO,
|
|
1
|
+
{"version":3,"file":"issuerKit.d.ts","sourceRoot":"","sources":["issuerKit.js"],"names":[],"mappings":"AA2FO,mMAMN;AASM,+DAAsD;AA+BtD,sGAbI,MAAM;kBAhBqB,OAAO;8BAyC5C;AA6BM,iEAbI,MAAM;kBAzDqB,OAAO;8BAqF1C;sBArLW,OAAO,kBAAkB,EAAE,OAAO;;UAKlC,MAAM;eACN,CAAC;iBACD,qBAAqB;kBACrB,OAAO;;kCAwFP,QAAQ;IAAE,YAAY,EAAE,OAAO,CAAA;CAAE,CAAC"}
|
package/src/payment.d.ts
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
export function preparePaymentKind<K extends AssetKind>(issuerBaggage: MapStore<string,
|
|
1
|
+
export function preparePaymentKind<K extends AssetKind>(issuerBaggage: MapStore<string, any>, name: string, brand: Brand<K>, PaymentI: InterfaceGuard): () => Payment<K>;
|
|
2
2
|
export type Baggage = import('@agoric/vat-data').Baggage;
|
|
3
3
|
//# sourceMappingURL=payment.d.ts.map
|
package/src/payment.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"payment.d.ts","sourceRoot":"","sources":["payment.js"],"names":[],"mappings":"AAeO,
|
|
1
|
+
{"version":3,"file":"payment.d.ts","sourceRoot":"","sources":["payment.js"],"names":[],"mappings":"AAeO,oGALI,MAAM,6BAEN,cAAc,oBAgBxB;sBAvBa,OAAO,kBAAkB,EAAE,OAAO"}
|
package/src/paymentLedger.d.ts
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
export function preparePaymentLedger<K extends AssetKind>(issuerBaggage: MapStore<string,
|
|
1
|
+
export function preparePaymentLedger<K extends AssetKind>(issuerBaggage: MapStore<string, any>, name: string, assetKind: K, displayInfo: DisplayInfo<K>, elementShape: Pattern, optShutdownWithFailure?: import("@agoric/swingset-vat").ShutdownWithFailure | undefined): PaymentLedger<K>;
|
|
2
2
|
export type Baggage = import('@agoric/vat-data').Baggage;
|
|
3
3
|
//# sourceMappingURL=paymentLedger.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"paymentLedger.d.ts","sourceRoot":"","sources":["paymentLedger.js"],"names":[],"mappings":"AAoFO,
|
|
1
|
+
{"version":3,"file":"paymentLedger.d.ts","sourceRoot":"","sources":["paymentLedger.js"],"names":[],"mappings":"AAoFO,sGAPI,MAAM,2DAGN,OAAO,6GA2UjB;sBA1Ya,OAAO,kBAAkB,EAAE,OAAO"}
|