@agoric/fast-usdc 0.1.1-dev-2ce7c93.0.2ce7c93 → 0.1.1-dev-192500d.0.192500d

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 +3 -2
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@agoric/fast-usdc",
3
- "version": "0.1.1-dev-2ce7c93.0.2ce7c93",
3
+ "version": "0.1.1-dev-192500d.0.192500d",
4
4
  "description": "CLI and library for Fast USDC product",
5
5
  "type": "module",
6
6
  "files": [
@@ -27,13 +27,13 @@
27
27
  "ts-blank-space": "^0.6.2"
28
28
  },
29
29
  "dependencies": {
30
- "@agoric/client-utils": "0.1.1-dev-2ce7c93.0.2ce7c93",
31
- "@agoric/cosmic-proto": "0.4.1-dev-2ce7c93.0.2ce7c93",
32
- "@agoric/ertp": "0.16.3-dev-2ce7c93.0.2ce7c93",
33
- "@agoric/internal": "0.3.3-dev-2ce7c93.0.2ce7c93",
34
- "@agoric/notifier": "0.6.3-dev-2ce7c93.0.2ce7c93",
35
- "@agoric/orchestration": "0.1.1-dev-2ce7c93.0.2ce7c93",
36
- "@agoric/zoe": "0.26.3-dev-2ce7c93.0.2ce7c93",
30
+ "@agoric/client-utils": "0.1.1-dev-192500d.0.192500d",
31
+ "@agoric/cosmic-proto": "0.4.1-dev-192500d.0.192500d",
32
+ "@agoric/ertp": "0.16.3-dev-192500d.0.192500d",
33
+ "@agoric/internal": "0.3.3-dev-192500d.0.192500d",
34
+ "@agoric/notifier": "0.6.3-dev-192500d.0.192500d",
35
+ "@agoric/orchestration": "0.1.1-dev-192500d.0.192500d",
36
+ "@agoric/zoe": "0.26.3-dev-192500d.0.192500d",
37
37
  "@cosmjs/proto-signing": "^0.36.0",
38
38
  "@cosmjs/stargate": "^0.36.0",
39
39
  "@endo/base64": "^1.0.12",
@@ -79,5 +79,5 @@
79
79
  "engines": {
80
80
  "node": "^20.9 || ^22.11"
81
81
  },
82
- "gitHead": "2ce7c9393faeade1792021c863b464b58945477c"
82
+ "gitHead": "192500d7a565f6b43c468a28996d24375e4ff5c7"
83
83
  }
package/src/types.ts CHANGED
@@ -188,8 +188,9 @@ export type AddressHook = {
188
188
  export type ChainHubChainInfo<N extends KnownNamespace = KnownNamespace> =
189
189
  N extends 'cosmos' ? CosmosChainInfo : BaseChainInfoWithChainId<N>;
190
190
 
191
- interface BaseChainInfoWithChainId<N extends KnownNamespace = KnownNamespace>
192
- extends BaseChainInfo<N> {
191
+ interface BaseChainInfoWithChainId<
192
+ N extends KnownNamespace = KnownNamespace,
193
+ > extends BaseChainInfo<N> {
193
194
  chainId: string;
194
195
  }
195
196