@unicitylabs/sphere-sdk 0.6.11 → 0.6.12
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/core/index.cjs.map +1 -1
- package/dist/core/index.d.cts +8 -8
- package/dist/core/index.d.ts +8 -8
- package/dist/core/index.js.map +1 -1
- package/dist/impl/nodejs/index.d.cts +2 -2
- package/dist/impl/nodejs/index.d.ts +2 -2
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +8 -8
- package/dist/index.d.ts +8 -8
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
|
@@ -1540,8 +1540,8 @@ interface BaseProviders {
|
|
|
1540
1540
|
tokenStorage: TokenStorageProvider<TxfStorageDataBase>;
|
|
1541
1541
|
transport: TransportProvider;
|
|
1542
1542
|
oracle: OracleProvider;
|
|
1543
|
-
/** L1 configuration (for passing to Sphere.init) */
|
|
1544
|
-
l1?: L1Config;
|
|
1543
|
+
/** L1 configuration (for passing to Sphere.init). Pass null to disable L1 entirely. */
|
|
1544
|
+
l1?: L1Config | null;
|
|
1545
1545
|
/** Price provider (optional — enables fiat value display) */
|
|
1546
1546
|
price?: PriceProvider;
|
|
1547
1547
|
}
|
|
@@ -1540,8 +1540,8 @@ interface BaseProviders {
|
|
|
1540
1540
|
tokenStorage: TokenStorageProvider<TxfStorageDataBase>;
|
|
1541
1541
|
transport: TransportProvider;
|
|
1542
1542
|
oracle: OracleProvider;
|
|
1543
|
-
/** L1 configuration (for passing to Sphere.init) */
|
|
1544
|
-
l1?: L1Config;
|
|
1543
|
+
/** L1 configuration (for passing to Sphere.init). Pass null to disable L1 entirely. */
|
|
1544
|
+
l1?: L1Config | null;
|
|
1545
1545
|
/** Price provider (optional — enables fiat value display) */
|
|
1546
1546
|
price?: PriceProvider;
|
|
1547
1547
|
}
|