@agoric/ertp 0.16.3-dev-f5f34f4.0 → 0.16.3-dev-3c22e86.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/amountMath.d.ts +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-3c22e86.0+3c22e86",
|
|
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-3c22e86.0+3c22e86",
|
|
43
|
+
"@agoric/notifier": "0.6.3-dev-3c22e86.0+3c22e86",
|
|
44
|
+
"@agoric/store": "0.9.3-dev-3c22e86.0+3c22e86",
|
|
45
|
+
"@agoric/swingset-vat": "0.32.3-dev-3c22e86.0+3c22e86",
|
|
46
|
+
"@agoric/vat-data": "0.5.3-dev-3c22e86.0+3c22e86",
|
|
47
47
|
"@endo/eventual-send": "^0.17.2",
|
|
48
48
|
"@endo/far": "^0.2.18",
|
|
49
49
|
"@endo/marshal": "^0.8.5",
|
|
@@ -79,5 +79,5 @@
|
|
|
79
79
|
"publishConfig": {
|
|
80
80
|
"access": "public"
|
|
81
81
|
},
|
|
82
|
-
"gitHead": "
|
|
82
|
+
"gitHead": "3c22e864350b333eb1bc0f5f5c64be0ff528a7e7"
|
|
83
83
|
}
|
package/src/amountMath.d.ts
CHANGED
|
@@ -3,7 +3,7 @@ export namespace AmountMath {
|
|
|
3
3
|
export function make<K extends AssetKind>(brand: Brand<K>, allegedValue: AssetValueForKind<K>): Amount<K>;
|
|
4
4
|
export function coerce<K extends AssetKind>(brand: Brand<K>, allegedAmount: Amount<K>): Amount<K>;
|
|
5
5
|
export function getValue<K extends AssetKind>(brand: Brand<K>, amount: Amount<K>): AssetValueForKind<K>;
|
|
6
|
-
export
|
|
6
|
+
export let makeEmpty: {
|
|
7
7
|
(brand: Brand<AssetKind>): Amount<"nat">;
|
|
8
8
|
<K extends AssetKind>(brand: Brand<AssetKind>, assetKind: K): Amount<K>;
|
|
9
9
|
};
|