@agoric/fast-usdc 0.1.1-dev-b1e63c2.0 → 0.1.1-dev-36f6b6e.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 +15 -15
- package/src/fast-usdc.contract.js +6 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@agoric/fast-usdc",
|
|
3
|
-
"version": "0.1.1-dev-
|
|
3
|
+
"version": "0.1.1-dev-36f6b6e.0+36f6b6e",
|
|
4
4
|
"description": "CLI and library for Fast USDC product",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"files": [
|
|
@@ -23,9 +23,9 @@
|
|
|
23
23
|
"lint:eslint": "eslint ."
|
|
24
24
|
},
|
|
25
25
|
"devDependencies": {
|
|
26
|
-
"@agoric/swingset-liveslots": "0.10.3-dev-
|
|
27
|
-
"@agoric/vats": "0.15.2-dev-
|
|
28
|
-
"@agoric/zone": "0.2.3-dev-
|
|
26
|
+
"@agoric/swingset-liveslots": "0.10.3-dev-36f6b6e.0+36f6b6e",
|
|
27
|
+
"@agoric/vats": "0.15.2-dev-36f6b6e.0+36f6b6e",
|
|
28
|
+
"@agoric/zone": "0.2.3-dev-36f6b6e.0+36f6b6e",
|
|
29
29
|
"@fast-check/ava": "^2.0.1",
|
|
30
30
|
"ava": "^5.3.0",
|
|
31
31
|
"c8": "^10.1.2",
|
|
@@ -33,16 +33,16 @@
|
|
|
33
33
|
"ts-blank-space": "^0.4.4"
|
|
34
34
|
},
|
|
35
35
|
"dependencies": {
|
|
36
|
-
"@agoric/client-utils": "0.1.1-dev-
|
|
37
|
-
"@agoric/cosmic-proto": "0.4.1-dev-
|
|
38
|
-
"@agoric/ertp": "0.16.3-dev-
|
|
39
|
-
"@agoric/internal": "0.3.3-dev-
|
|
40
|
-
"@agoric/notifier": "0.6.3-dev-
|
|
41
|
-
"@agoric/orchestration": "0.1.1-dev-
|
|
42
|
-
"@agoric/store": "0.9.3-dev-
|
|
43
|
-
"@agoric/vat-data": "0.5.3-dev-
|
|
44
|
-
"@agoric/vow": "0.1.1-dev-
|
|
45
|
-
"@agoric/zoe": "0.26.3-dev-
|
|
36
|
+
"@agoric/client-utils": "0.1.1-dev-36f6b6e.0+36f6b6e",
|
|
37
|
+
"@agoric/cosmic-proto": "0.4.1-dev-36f6b6e.0+36f6b6e",
|
|
38
|
+
"@agoric/ertp": "0.16.3-dev-36f6b6e.0+36f6b6e",
|
|
39
|
+
"@agoric/internal": "0.3.3-dev-36f6b6e.0+36f6b6e",
|
|
40
|
+
"@agoric/notifier": "0.6.3-dev-36f6b6e.0+36f6b6e",
|
|
41
|
+
"@agoric/orchestration": "0.1.1-dev-36f6b6e.0+36f6b6e",
|
|
42
|
+
"@agoric/store": "0.9.3-dev-36f6b6e.0+36f6b6e",
|
|
43
|
+
"@agoric/vat-data": "0.5.3-dev-36f6b6e.0+36f6b6e",
|
|
44
|
+
"@agoric/vow": "0.1.1-dev-36f6b6e.0+36f6b6e",
|
|
45
|
+
"@agoric/zoe": "0.26.3-dev-36f6b6e.0+36f6b6e",
|
|
46
46
|
"@cosmjs/proto-signing": "^0.32.4",
|
|
47
47
|
"@cosmjs/stargate": "^0.32.4",
|
|
48
48
|
"@endo/base64": "^1.0.9",
|
|
@@ -82,5 +82,5 @@
|
|
|
82
82
|
"publishConfig": {
|
|
83
83
|
"access": "public"
|
|
84
84
|
},
|
|
85
|
-
"gitHead": "
|
|
85
|
+
"gitHead": "36f6b6ee97589b9e0cc9d784b2386951666d4698"
|
|
86
86
|
}
|
|
@@ -175,7 +175,12 @@ export const contract = async (zcf, privateArgs, zone, tools) => {
|
|
|
175
175
|
trace('connectToNoble', agoricChainId, nobleChainId, agoricToNoble);
|
|
176
176
|
chainHub.updateConnection(agoricChainId, nobleChainId, agoricToNoble);
|
|
177
177
|
// v1 has `NobleAccount` which we don't expect to ever settle.
|
|
178
|
-
|
|
178
|
+
// Including the connection_id in the zone key lets us use
|
|
179
|
+
// this before and after null-upgrade in multichain-testing.
|
|
180
|
+
const nobleAccountV = zone.makeOnce(
|
|
181
|
+
`NobleICA-${agoricToNoble.counterparty.connection_id}`,
|
|
182
|
+
() => makeNobleAccount(),
|
|
183
|
+
);
|
|
179
184
|
|
|
180
185
|
return vowTools.when(nobleAccountV, nobleAccount => {
|
|
181
186
|
trace('nobleAccount', nobleAccount);
|