@agoric/fast-usdc 0.1.1-dev-84adeef.0 → 0.1.1-dev-8234e6b.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 +9 -9
- package/src/type-guards.js +1 -0
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-8234e6b.0+8234e6b",
|
|
4
4
|
"description": "CLI and library for Fast USDC product",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"files": [
|
|
@@ -29,13 +29,13 @@
|
|
|
29
29
|
"ts-blank-space": "^0.4.4"
|
|
30
30
|
},
|
|
31
31
|
"dependencies": {
|
|
32
|
-
"@agoric/client-utils": "0.1.1-dev-
|
|
33
|
-
"@agoric/cosmic-proto": "0.4.1-dev-
|
|
34
|
-
"@agoric/ertp": "0.16.3-dev-
|
|
35
|
-
"@agoric/internal": "0.3.3-dev-
|
|
36
|
-
"@agoric/notifier": "0.6.3-dev-
|
|
37
|
-
"@agoric/orchestration": "0.1.1-dev-
|
|
38
|
-
"@agoric/zoe": "0.26.3-dev-
|
|
32
|
+
"@agoric/client-utils": "0.1.1-dev-8234e6b.0+8234e6b",
|
|
33
|
+
"@agoric/cosmic-proto": "0.4.1-dev-8234e6b.0+8234e6b",
|
|
34
|
+
"@agoric/ertp": "0.16.3-dev-8234e6b.0+8234e6b",
|
|
35
|
+
"@agoric/internal": "0.3.3-dev-8234e6b.0+8234e6b",
|
|
36
|
+
"@agoric/notifier": "0.6.3-dev-8234e6b.0+8234e6b",
|
|
37
|
+
"@agoric/orchestration": "0.1.1-dev-8234e6b.0+8234e6b",
|
|
38
|
+
"@agoric/zoe": "0.26.3-dev-8234e6b.0+8234e6b",
|
|
39
39
|
"@cosmjs/proto-signing": "^0.33.0",
|
|
40
40
|
"@cosmjs/stargate": "^0.33.0",
|
|
41
41
|
"@endo/base64": "^1.0.9",
|
|
@@ -75,5 +75,5 @@
|
|
|
75
75
|
"publishConfig": {
|
|
76
76
|
"access": "public"
|
|
77
77
|
},
|
|
78
|
-
"gitHead": "
|
|
78
|
+
"gitHead": "8234e6b481082ec4ed3d647798b6ba09318d6b4b"
|
|
79
79
|
}
|
package/src/type-guards.js
CHANGED
|
@@ -110,6 +110,7 @@ harden(AddressHookShape);
|
|
|
110
110
|
|
|
111
111
|
const NatAmountShape = { brand: BrandShape, value: M.nat() };
|
|
112
112
|
|
|
113
|
+
/** @type {TypedPattern<FeeConfig['destinationOverrides']>} */
|
|
113
114
|
export const DestinationOverridesShape = M.recordOf(
|
|
114
115
|
M.string(),
|
|
115
116
|
M.splitRecord(
|