@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.
- package/package.json +9 -9
- 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-
|
|
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-
|
|
31
|
-
"@agoric/cosmic-proto": "0.4.1-dev-
|
|
32
|
-
"@agoric/ertp": "0.16.3-dev-
|
|
33
|
-
"@agoric/internal": "0.3.3-dev-
|
|
34
|
-
"@agoric/notifier": "0.6.3-dev-
|
|
35
|
-
"@agoric/orchestration": "0.1.1-dev-
|
|
36
|
-
"@agoric/zoe": "0.26.3-dev-
|
|
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": "
|
|
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<
|
|
192
|
-
extends
|
|
191
|
+
interface BaseChainInfoWithChainId<
|
|
192
|
+
N extends KnownNamespace = KnownNamespace,
|
|
193
|
+
> extends BaseChainInfo<N> {
|
|
193
194
|
chainId: string;
|
|
194
195
|
}
|
|
195
196
|
|