@sats-connect/core 0.7.0-d838b5c → 0.7.0-f22f1e4
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/dist/index.d.mts +2 -2
- package/dist/index.d.ts +2 -2
- package/dist/index.js +1 -1
- package/dist/index.mjs +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -1827,7 +1827,7 @@ declare const addNetworkParamsSchema: v.VariantSchema<"chain", [v.ObjectSchema<{
|
|
|
1827
1827
|
readonly name: v.StringSchema<undefined>;
|
|
1828
1828
|
readonly rpcUrl: v.StringSchema<undefined>;
|
|
1829
1829
|
readonly rpcFallbackUrl: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1830
|
-
readonly indexerUrl: v.StringSchema<undefined>;
|
|
1830
|
+
readonly indexerUrl: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1831
1831
|
readonly blockExplorerUrl: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1832
1832
|
}, undefined>, v.ObjectSchema<{
|
|
1833
1833
|
readonly chain: v.LiteralSchema<"stacks", undefined>;
|
|
@@ -1851,7 +1851,7 @@ declare const addNetworkRequestMessageSchema: v.ObjectSchema<{
|
|
|
1851
1851
|
readonly name: v.StringSchema<undefined>;
|
|
1852
1852
|
readonly rpcUrl: v.StringSchema<undefined>;
|
|
1853
1853
|
readonly rpcFallbackUrl: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1854
|
-
readonly indexerUrl: v.StringSchema<undefined>;
|
|
1854
|
+
readonly indexerUrl: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1855
1855
|
readonly blockExplorerUrl: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1856
1856
|
}, undefined>, v.ObjectSchema<{
|
|
1857
1857
|
readonly chain: v.LiteralSchema<"stacks", undefined>;
|
package/dist/index.d.ts
CHANGED
|
@@ -1827,7 +1827,7 @@ declare const addNetworkParamsSchema: v.VariantSchema<"chain", [v.ObjectSchema<{
|
|
|
1827
1827
|
readonly name: v.StringSchema<undefined>;
|
|
1828
1828
|
readonly rpcUrl: v.StringSchema<undefined>;
|
|
1829
1829
|
readonly rpcFallbackUrl: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1830
|
-
readonly indexerUrl: v.StringSchema<undefined>;
|
|
1830
|
+
readonly indexerUrl: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1831
1831
|
readonly blockExplorerUrl: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1832
1832
|
}, undefined>, v.ObjectSchema<{
|
|
1833
1833
|
readonly chain: v.LiteralSchema<"stacks", undefined>;
|
|
@@ -1851,7 +1851,7 @@ declare const addNetworkRequestMessageSchema: v.ObjectSchema<{
|
|
|
1851
1851
|
readonly name: v.StringSchema<undefined>;
|
|
1852
1852
|
readonly rpcUrl: v.StringSchema<undefined>;
|
|
1853
1853
|
readonly rpcFallbackUrl: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1854
|
-
readonly indexerUrl: v.StringSchema<undefined>;
|
|
1854
|
+
readonly indexerUrl: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1855
1855
|
readonly blockExplorerUrl: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1856
1856
|
}, undefined>, v.ObjectSchema<{
|
|
1857
1857
|
readonly chain: v.LiteralSchema<"stacks", undefined>;
|
package/dist/index.js
CHANGED
|
@@ -673,7 +673,7 @@ var addNetworkParamsSchema = v7.variant("chain", [
|
|
|
673
673
|
name: v7.string(),
|
|
674
674
|
rpcUrl: v7.string(),
|
|
675
675
|
rpcFallbackUrl: v7.optional(v7.string()),
|
|
676
|
-
indexerUrl: v7.string(),
|
|
676
|
+
indexerUrl: v7.optional(v7.string()),
|
|
677
677
|
blockExplorerUrl: v7.optional(v7.string())
|
|
678
678
|
}),
|
|
679
679
|
v7.object({
|
package/dist/index.mjs
CHANGED
|
@@ -460,7 +460,7 @@ var addNetworkParamsSchema = v7.variant("chain", [
|
|
|
460
460
|
name: v7.string(),
|
|
461
461
|
rpcUrl: v7.string(),
|
|
462
462
|
rpcFallbackUrl: v7.optional(v7.string()),
|
|
463
|
-
indexerUrl: v7.string(),
|
|
463
|
+
indexerUrl: v7.optional(v7.string()),
|
|
464
464
|
blockExplorerUrl: v7.optional(v7.string())
|
|
465
465
|
}),
|
|
466
466
|
v7.object({
|