@elytro/cli 0.5.0 → 0.5.1
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 +11 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -521,6 +521,7 @@ var PUBLIC_RPC = {
|
|
|
521
521
|
1: "https://ethereum-rpc.publicnode.com",
|
|
522
522
|
10: "https://optimism-rpc.publicnode.com",
|
|
523
523
|
42161: "https://arbitrum-one-rpc.publicnode.com",
|
|
524
|
+
8453: "https://base-rpc.publicnode.com",
|
|
524
525
|
11155111: "https://ethereum-sepolia-rpc.publicnode.com",
|
|
525
526
|
11155420: "https://optimism-sepolia-rpc.publicnode.com"
|
|
526
527
|
};
|
|
@@ -528,6 +529,7 @@ var PUBLIC_BUNDLER = {
|
|
|
528
529
|
1: "https://public.pimlico.io/v2/1/rpc",
|
|
529
530
|
10: "https://public.pimlico.io/v2/10/rpc",
|
|
530
531
|
42161: "https://public.pimlico.io/v2/42161/rpc",
|
|
532
|
+
8453: "https://public.pimlico.io/v2/8453/rpc",
|
|
531
533
|
11155111: "https://public.pimlico.io/v2/11155111/rpc",
|
|
532
534
|
11155420: "https://public.pimlico.io/v2/11155420/rpc"
|
|
533
535
|
};
|
|
@@ -541,6 +543,7 @@ var ALCHEMY_NETWORK = {
|
|
|
541
543
|
1: "eth-mainnet",
|
|
542
544
|
10: "opt-mainnet",
|
|
543
545
|
42161: "arb-mainnet",
|
|
546
|
+
8453: "base-mainnet",
|
|
544
547
|
11155111: "eth-sepolia",
|
|
545
548
|
11155420: "opt-sepolia"
|
|
546
549
|
};
|
|
@@ -548,6 +551,7 @@ var PIMLICO_SLUG = {
|
|
|
548
551
|
1: "ethereum",
|
|
549
552
|
10: "optimism",
|
|
550
553
|
42161: "arbitrum",
|
|
554
|
+
8453: "base",
|
|
551
555
|
11155111: "sepolia",
|
|
552
556
|
11155420: "optimism-sepolia"
|
|
553
557
|
};
|
|
@@ -584,6 +588,12 @@ var CHAIN_META = [
|
|
|
584
588
|
nativeCurrency: { name: "Ether", symbol: "ETH", decimals: 18 },
|
|
585
589
|
blockExplorer: "https://arbiscan.io"
|
|
586
590
|
},
|
|
591
|
+
{
|
|
592
|
+
id: 8453,
|
|
593
|
+
name: "Base",
|
|
594
|
+
nativeCurrency: { name: "Ether", symbol: "ETH", decimals: 18 },
|
|
595
|
+
blockExplorer: "https://basescan.org"
|
|
596
|
+
},
|
|
587
597
|
{
|
|
588
598
|
id: 11155111,
|
|
589
599
|
name: "Sepolia",
|
|
@@ -4228,7 +4238,7 @@ import { execSync } from "child_process";
|
|
|
4228
4238
|
import { createRequire } from "module";
|
|
4229
4239
|
function resolveVersion() {
|
|
4230
4240
|
if (true) {
|
|
4231
|
-
return "0.5.
|
|
4241
|
+
return "0.5.1";
|
|
4232
4242
|
}
|
|
4233
4243
|
try {
|
|
4234
4244
|
const require2 = createRequire(import.meta.url);
|