@agoric/fast-usdc 0.1.1-dev-3ba7ca7.0 → 0.1.1-dev-59b637f.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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@agoric/fast-usdc",
3
- "version": "0.1.1-dev-3ba7ca7.0+3ba7ca7",
3
+ "version": "0.1.1-dev-59b637f.0+59b637f",
4
4
  "description": "CLI and library for Fast USDC product",
5
5
  "type": "module",
6
6
  "files": [
@@ -21,9 +21,9 @@
21
21
  "lint:eslint": "eslint ."
22
22
  },
23
23
  "devDependencies": {
24
- "@agoric/swingset-liveslots": "0.10.3-dev-3ba7ca7.0+3ba7ca7",
25
- "@agoric/vats": "0.15.2-dev-3ba7ca7.0+3ba7ca7",
26
- "@agoric/zone": "0.2.3-dev-3ba7ca7.0+3ba7ca7",
24
+ "@agoric/swingset-liveslots": "0.10.3-dev-59b637f.0+59b637f",
25
+ "@agoric/vats": "0.15.2-dev-59b637f.0+59b637f",
26
+ "@agoric/zone": "0.2.3-dev-59b637f.0+59b637f",
27
27
  "@fast-check/ava": "^2.0.1",
28
28
  "ava": "^5.3.0",
29
29
  "c8": "^9.1.0",
@@ -31,15 +31,15 @@
31
31
  "ts-blank-space": "^0.4.1"
32
32
  },
33
33
  "dependencies": {
34
- "@agoric/client-utils": "0.1.1-dev-3ba7ca7.0+3ba7ca7",
35
- "@agoric/ertp": "0.16.3-dev-3ba7ca7.0+3ba7ca7",
36
- "@agoric/internal": "0.3.3-dev-3ba7ca7.0+3ba7ca7",
37
- "@agoric/notifier": "0.6.3-dev-3ba7ca7.0+3ba7ca7",
38
- "@agoric/orchestration": "0.1.1-dev-3ba7ca7.0+3ba7ca7",
39
- "@agoric/store": "0.9.3-dev-3ba7ca7.0+3ba7ca7",
40
- "@agoric/vat-data": "0.5.3-dev-3ba7ca7.0+3ba7ca7",
41
- "@agoric/vow": "0.1.1-dev-3ba7ca7.0+3ba7ca7",
42
- "@agoric/zoe": "0.26.3-dev-3ba7ca7.0+3ba7ca7",
34
+ "@agoric/client-utils": "0.1.1-dev-59b637f.0+59b637f",
35
+ "@agoric/ertp": "0.16.3-dev-59b637f.0+59b637f",
36
+ "@agoric/internal": "0.3.3-dev-59b637f.0+59b637f",
37
+ "@agoric/notifier": "0.6.3-dev-59b637f.0+59b637f",
38
+ "@agoric/orchestration": "0.1.1-dev-59b637f.0+59b637f",
39
+ "@agoric/store": "0.9.3-dev-59b637f.0+59b637f",
40
+ "@agoric/vat-data": "0.5.3-dev-59b637f.0+59b637f",
41
+ "@agoric/vow": "0.1.1-dev-59b637f.0+59b637f",
42
+ "@agoric/zoe": "0.26.3-dev-59b637f.0+59b637f",
43
43
  "@cosmjs/proto-signing": "^0.32.4",
44
44
  "@cosmjs/stargate": "^0.32.4",
45
45
  "@endo/base64": "^1.0.9",
@@ -77,5 +77,5 @@
77
77
  "publishConfig": {
78
78
  "access": "public"
79
79
  },
80
- "gitHead": "3ba7ca79fab3d11187ab59eba43f59b3f112b2c0"
80
+ "gitHead": "59b637f00caf53777371f824c5367a567eb26ec9"
81
81
  }
@@ -120,7 +120,6 @@ export const contract = async (zcf, privateArgs, zone, tools) => {
120
120
  testBorrow(amounts) {
121
121
  console.log('🚧🚧 UNTIL: borrow is integrated (#10388) 🚧🚧', amounts);
122
122
  const { zcfSeat: tmpAssetManagerSeat } = zcf.makeEmptySeatKit();
123
- // eslint-disable-next-line no-use-before-define
124
123
  poolKit.borrower.borrow(tmpAssetManagerSeat, amounts);
125
124
  return tmpAssetManagerSeat.getCurrentAllocation();
126
125
  },
@@ -141,7 +140,6 @@ export const contract = async (zcf, privateArgs, zone, tools) => {
141
140
  ),
142
141
  payments,
143
142
  );
144
- // eslint-disable-next-line no-use-before-define
145
143
  poolKit.repayer.repay(tmpAssetManagerSeat, amounts);
146
144
  return tmpAssetManagerSeat.getCurrentAllocation();
147
145
  },
@@ -164,15 +162,12 @@ export const contract = async (zcf, privateArgs, zone, tools) => {
164
162
  return makeTestInvitation();
165
163
  },
166
164
  makeDepositInvitation() {
167
- // eslint-disable-next-line no-use-before-define
168
165
  return poolKit.public.makeDepositInvitation();
169
166
  },
170
167
  makeWithdrawInvitation() {
171
- // eslint-disable-next-line no-use-before-define
172
168
  return poolKit.public.makeWithdrawInvitation();
173
169
  },
174
170
  getPublicTopics() {
175
- // eslint-disable-next-line no-use-before-define
176
171
  return poolKit.public.getPublicTopics();
177
172
  },
178
173
  });