@agoric/wallet 0.19.0-u19.2 → 0.19.0-u20.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/CHANGELOG.md +1 -17
- package/api/CHANGELOG.md +1 -17
- package/api/bundles/bundle-wallet-js-meta.json +281 -271
- package/api/bundles/bundle-wallet.js +1 -1
- package/api/package.json +21 -21
- package/api/src/issuerTable.js +2 -2
- package/api/src/types-ambient.js +4 -4
- package/package.json +3 -3
package/api/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@agoric/wallet-backend",
|
|
3
|
-
"version": "0.15.0-
|
|
3
|
+
"version": "0.15.0-u20.0",
|
|
4
4
|
"description": "Wallet backend",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"scripts": {
|
|
@@ -14,28 +14,28 @@
|
|
|
14
14
|
"lint:eslint": "eslint ."
|
|
15
15
|
},
|
|
16
16
|
"devDependencies": {
|
|
17
|
-
"@agoric/vats": "^0.16.0-
|
|
18
|
-
"@endo/bundle-source": "^
|
|
19
|
-
"@endo/far": "^1.1.
|
|
20
|
-
"@endo/init": "^1.1.
|
|
17
|
+
"@agoric/vats": "^0.16.0-u20.0",
|
|
18
|
+
"@endo/bundle-source": "^4.0.0",
|
|
19
|
+
"@endo/far": "^1.1.11",
|
|
20
|
+
"@endo/init": "^1.1.9",
|
|
21
21
|
"ava": "^5.3.0"
|
|
22
22
|
},
|
|
23
23
|
"dependencies": {
|
|
24
|
-
"@agoric/cache": "^0.3.3-
|
|
25
|
-
"@agoric/ertp": "^0.16.3-
|
|
26
|
-
"@agoric/internal": "^0.4.0-
|
|
27
|
-
"@agoric/notifier": "^0.7.0-
|
|
28
|
-
"@agoric/smart-wallet": "^0.5.4-
|
|
29
|
-
"@agoric/store": "^0.9.3-
|
|
30
|
-
"@agoric/time": "^0.3.3-
|
|
31
|
-
"@agoric/vat-data": "^0.5.3-
|
|
32
|
-
"@agoric/zoe": "^0.27.0-
|
|
33
|
-
"@agoric/zone": "^0.3.0-
|
|
34
|
-
"@endo/errors": "^1.2.
|
|
35
|
-
"@endo/eventual-send": "^1.3.
|
|
36
|
-
"@endo/marshal": "^1.6.
|
|
37
|
-
"@endo/nat": "^5.0
|
|
38
|
-
"@endo/promise-kit": "^1.1.
|
|
24
|
+
"@agoric/cache": "^0.3.3-u20.0",
|
|
25
|
+
"@agoric/ertp": "^0.16.3-u20.0",
|
|
26
|
+
"@agoric/internal": "^0.4.0-u20.0",
|
|
27
|
+
"@agoric/notifier": "^0.7.0-u20.0",
|
|
28
|
+
"@agoric/smart-wallet": "^0.5.4-u20.0",
|
|
29
|
+
"@agoric/store": "^0.9.3-u20.0",
|
|
30
|
+
"@agoric/time": "^0.3.3-u20.0",
|
|
31
|
+
"@agoric/vat-data": "^0.5.3-u20.0",
|
|
32
|
+
"@agoric/zoe": "^0.27.0-u20.0",
|
|
33
|
+
"@agoric/zone": "^0.3.0-u20.0",
|
|
34
|
+
"@endo/errors": "^1.2.10",
|
|
35
|
+
"@endo/eventual-send": "^1.3.1",
|
|
36
|
+
"@endo/marshal": "^1.6.4",
|
|
37
|
+
"@endo/nat": "^5.1.0",
|
|
38
|
+
"@endo/promise-kit": "^1.1.10",
|
|
39
39
|
"import-meta-resolve": "^4.1.0"
|
|
40
40
|
},
|
|
41
41
|
"keywords": [],
|
|
@@ -65,5 +65,5 @@
|
|
|
65
65
|
"typeCoverage": {
|
|
66
66
|
"atLeast": 0
|
|
67
67
|
},
|
|
68
|
-
"gitHead": "
|
|
68
|
+
"gitHead": "8e4207fa19dabf76c1f91f8779b5b5b93570ecea"
|
|
69
69
|
}
|
package/api/src/issuerTable.js
CHANGED
|
@@ -20,9 +20,9 @@ import './internal-types.js';
|
|
|
20
20
|
* remote calls to get the brand and AmountMath and save them.
|
|
21
21
|
*/
|
|
22
22
|
const makeIssuerTable = () => {
|
|
23
|
-
/** @type {WeakMapStore<Brand,
|
|
23
|
+
/** @type {WeakMapStore<Brand, ZoeIssuerRecord>} */
|
|
24
24
|
const brandToIssuerRecord = makeScalarWeakMapStore('brand');
|
|
25
|
-
/** @type {WeakMapStore<Issuer,
|
|
25
|
+
/** @type {WeakMapStore<Issuer, ZoeIssuerRecord>} */
|
|
26
26
|
const issuerToIssuerRecord = makeScalarWeakMapStore('issuer');
|
|
27
27
|
|
|
28
28
|
/** @type {IssuerTable} */
|
package/api/src/types-ambient.js
CHANGED
|
@@ -161,11 +161,11 @@
|
|
|
161
161
|
/**
|
|
162
162
|
* @typedef {object} IssuerTable
|
|
163
163
|
* @property {(brand: Brand) => boolean} hasByBrand
|
|
164
|
-
* @property {(brand: Brand) =>
|
|
164
|
+
* @property {(brand: Brand) => ZoeIssuerRecord} getByBrand
|
|
165
165
|
* @property {(issuer: Issuer) => boolean} hasByIssuer
|
|
166
|
-
* @property {(issuer: Issuer) =>
|
|
166
|
+
* @property {(issuer: Issuer) => ZoeIssuerRecord} getByIssuer
|
|
167
167
|
* @property {(issuerP: ERef<Issuer>,
|
|
168
168
|
* addMeta?: (x: any) => any
|
|
169
|
-
* ) => Promise<
|
|
170
|
-
* @property {(issuerRecord:
|
|
169
|
+
* ) => Promise<ZoeIssuerRecord>} initIssuer
|
|
170
|
+
* @property {(issuerRecord: ZoeIssuerRecord) => void } initIssuerByRecord
|
|
171
171
|
*/
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@agoric/wallet",
|
|
3
|
-
"version": "0.19.0-
|
|
3
|
+
"version": "0.19.0-u20.0",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -19,7 +19,7 @@
|
|
|
19
19
|
"build": "exit 0"
|
|
20
20
|
},
|
|
21
21
|
"dependencies": {
|
|
22
|
-
"@agoric/internal": "^0.4.0-
|
|
22
|
+
"@agoric/internal": "^0.4.0-u20.0",
|
|
23
23
|
"@agoric/wallet-ui": "0.1.3-solo.0",
|
|
24
24
|
"babel-eslint": "^10.0.3",
|
|
25
25
|
"eslint-plugin-eslint-comments": "^3.1.2",
|
|
@@ -28,5 +28,5 @@
|
|
|
28
28
|
"publishConfig": {
|
|
29
29
|
"access": "public"
|
|
30
30
|
},
|
|
31
|
-
"gitHead": "
|
|
31
|
+
"gitHead": "8e4207fa19dabf76c1f91f8779b5b5b93570ecea"
|
|
32
32
|
}
|