@vleap/warps-adapter-evm 0.2.0-beta.57 → 0.2.0-beta.58
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.js +4 -4
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +5 -5
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -1822,7 +1822,7 @@ var EthereumAdapter = createEvmAdapter(WarpChainName10.Ethereum, {
|
|
|
1822
1822
|
});
|
|
1823
1823
|
|
|
1824
1824
|
// src/adapters.ts
|
|
1825
|
-
import {
|
|
1825
|
+
import { withAdapterFallback } from "@vleap/warps";
|
|
1826
1826
|
|
|
1827
1827
|
// src/chains/somnia.ts
|
|
1828
1828
|
import { WarpChainName as WarpChainName11 } from "@vleap/warps";
|
|
@@ -1877,10 +1877,10 @@ var SomniaAdapter = createEvmAdapter(WarpChainName11.Somnia, {
|
|
|
1877
1877
|
|
|
1878
1878
|
// src/adapters.ts
|
|
1879
1879
|
var getAllEvmAdapters = (fallbackFactory) => [
|
|
1880
|
-
|
|
1881
|
-
|
|
1882
|
-
|
|
1883
|
-
|
|
1880
|
+
withAdapterFallback(EthereumAdapter, fallbackFactory),
|
|
1881
|
+
withAdapterFallback(BaseAdapter, fallbackFactory),
|
|
1882
|
+
withAdapterFallback(ArbitrumAdapter, fallbackFactory),
|
|
1883
|
+
withAdapterFallback(SomniaAdapter, fallbackFactory)
|
|
1884
1884
|
];
|
|
1885
1885
|
export {
|
|
1886
1886
|
ArbitrumAdapter,
|