@agoric/fast-usdc 0.1.1-dev-4841c87.0 → 0.1.1-dev-04140c1.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.
Files changed (2) hide show
  1. package/package.json +9 -9
  2. package/src/types.ts +1 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@agoric/fast-usdc",
3
- "version": "0.1.1-dev-4841c87.0+4841c87",
3
+ "version": "0.1.1-dev-04140c1.0+04140c1",
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-4841c87.0+4841c87",
33
- "@agoric/cosmic-proto": "0.4.1-dev-4841c87.0+4841c87",
34
- "@agoric/ertp": "0.16.3-dev-4841c87.0+4841c87",
35
- "@agoric/internal": "0.3.3-dev-4841c87.0+4841c87",
36
- "@agoric/notifier": "0.6.3-dev-4841c87.0+4841c87",
37
- "@agoric/orchestration": "0.1.1-dev-4841c87.0+4841c87",
38
- "@agoric/zoe": "0.26.3-dev-4841c87.0+4841c87",
32
+ "@agoric/client-utils": "0.1.1-dev-04140c1.0+04140c1",
33
+ "@agoric/cosmic-proto": "0.4.1-dev-04140c1.0+04140c1",
34
+ "@agoric/ertp": "0.16.3-dev-04140c1.0+04140c1",
35
+ "@agoric/internal": "0.3.3-dev-04140c1.0+04140c1",
36
+ "@agoric/notifier": "0.6.3-dev-04140c1.0+04140c1",
37
+ "@agoric/orchestration": "0.1.1-dev-04140c1.0+04140c1",
38
+ "@agoric/zoe": "0.26.3-dev-04140c1.0+04140c1",
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": "4841c8738923019bcbd3e4d41900381ba677d55f"
78
+ "gitHead": "04140c18f9ad898cb4461e246c0065eddabb35ab"
79
79
  }
package/src/types.ts CHANGED
@@ -165,7 +165,7 @@ export type FastUSDCConfig = {
165
165
  feeConfig: FeeConfig;
166
166
  feedPolicy: FeedPolicy;
167
167
  noNoble: boolean; // support a3p-integration, which has no noble chain
168
- chainInfo: Record<string, ChainHubChainInfo & Passable>;
168
+ chainInfo: Record<string, ChainHubChainInfo>;
169
169
  assetInfo: [Denom, DenomDetail & { brandKey?: string }][];
170
170
  } & CopyRecord;
171
171