@agoric/wallet 0.19.0-u19.2 → 0.19.0-u21.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/api/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@agoric/wallet-backend",
3
- "version": "0.15.0-u19.2",
3
+ "version": "0.15.0-u21.0",
4
4
  "description": "Wallet backend",
5
5
  "type": "module",
6
6
  "scripts": {
@@ -8,34 +8,34 @@
8
8
  "build:bundles": "node scripts/build-bundles.js",
9
9
  "test": "ava",
10
10
  "test:xs": "exit 0",
11
- "lint": "run-s --continue-on-error lint:*",
11
+ "lint": "yarn run -T run-s --continue-on-error 'lint:*'",
12
12
  "lint-fix": "yarn lint:eslint --fix",
13
- "lint:types": "tsc",
14
- "lint:eslint": "eslint ."
13
+ "lint:types": "yarn run -T tsc",
14
+ "lint:eslint": "yarn run -T eslint ."
15
15
  },
16
16
  "devDependencies": {
17
- "@agoric/vats": "^0.16.0-u19.2",
18
- "@endo/bundle-source": "^3.5.1",
19
- "@endo/far": "^1.1.10",
20
- "@endo/init": "^1.1.8",
17
+ "@agoric/vats": "workspace:*",
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-u19.2",
25
- "@agoric/ertp": "^0.16.3-u19.2",
26
- "@agoric/internal": "^0.4.0-u19.2",
27
- "@agoric/notifier": "^0.7.0-u19.2",
28
- "@agoric/smart-wallet": "^0.5.4-u19.2",
29
- "@agoric/store": "^0.9.3-u19.0",
30
- "@agoric/time": "^0.3.3-u19.0",
31
- "@agoric/vat-data": "^0.5.3-u19.2",
32
- "@agoric/zoe": "^0.27.0-u19.2",
33
- "@agoric/zone": "^0.3.0-u19.2",
34
- "@endo/errors": "^1.2.9",
35
- "@endo/eventual-send": "^1.3.0",
36
- "@endo/marshal": "^1.6.3",
37
- "@endo/nat": "^5.0.14",
38
- "@endo/promise-kit": "^1.1.9",
24
+ "@agoric/cache": "^0.3.3-u21.0",
25
+ "@agoric/ertp": "^0.16.3-u21.0",
26
+ "@agoric/internal": "^0.4.0-u21.0",
27
+ "@agoric/notifier": "^0.7.0-u21.0",
28
+ "@agoric/smart-wallet": "^0.5.4-u21.0",
29
+ "@agoric/store": "^0.9.3-u21.0",
30
+ "@agoric/time": "^0.3.3-u21.0",
31
+ "@agoric/vat-data": "^0.5.3-u21.0",
32
+ "@agoric/zoe": "^0.27.0-u21.0",
33
+ "@agoric/zone": "^0.3.0-u21.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": "f0ae74b84cb6de3724bfdcd18b4bea7e8199dee1"
68
+ "gitHead": "e4dd46857133403d584bcf822a81817b355532f9"
69
69
  }
@@ -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,IssuerRecord>} */
23
+ /** @type {WeakMapStore<Brand, ZoeIssuerRecord>} */
24
24
  const brandToIssuerRecord = makeScalarWeakMapStore('brand');
25
- /** @type {WeakMapStore<Issuer,IssuerRecord>} */
25
+ /** @type {WeakMapStore<Issuer, ZoeIssuerRecord>} */
26
26
  const issuerToIssuerRecord = makeScalarWeakMapStore('issuer');
27
27
 
28
28
  /** @type {IssuerTable} */
@@ -161,11 +161,11 @@
161
161
  /**
162
162
  * @typedef {object} IssuerTable
163
163
  * @property {(brand: Brand) => boolean} hasByBrand
164
- * @property {(brand: Brand) => IssuerRecord} getByBrand
164
+ * @property {(brand: Brand) => ZoeIssuerRecord} getByBrand
165
165
  * @property {(issuer: Issuer) => boolean} hasByIssuer
166
- * @property {(issuer: Issuer) => IssuerRecord} getByIssuer
166
+ * @property {(issuer: Issuer) => ZoeIssuerRecord} getByIssuer
167
167
  * @property {(issuerP: ERef<Issuer>,
168
168
  * addMeta?: (x: any) => any
169
- * ) => Promise<IssuerRecord>} initIssuer
170
- * @property {(issuerRecord: IssuerRecord) => void } initIssuerByRecord
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-u19.2",
3
+ "version": "0.19.0-u21.0",
4
4
  "type": "module",
5
5
  "main": "index.js",
6
6
  "license": "Apache-2.0",
@@ -19,14 +19,12 @@
19
19
  "build": "exit 0"
20
20
  },
21
21
  "dependencies": {
22
- "@agoric/internal": "^0.4.0-u19.2",
22
+ "@agoric/internal": "workspace:*",
23
23
  "@agoric/wallet-ui": "0.1.3-solo.0",
24
- "babel-eslint": "^10.0.3",
25
- "eslint-plugin-eslint-comments": "^3.1.2",
26
24
  "import-meta-resolve": "^4.1.0"
27
25
  },
28
26
  "publishConfig": {
29
27
  "access": "public"
30
28
  },
31
- "gitHead": "f0ae74b84cb6de3724bfdcd18b4bea7e8199dee1"
29
+ "gitHead": "e4dd46857133403d584bcf822a81817b355532f9"
32
30
  }