File tree Expand file tree Collapse file tree 3 files changed +7
-3
lines changed Expand file tree Collapse file tree 3 files changed +7
-3
lines changed Original file line number Diff line number Diff line change 1- FROM --platform=linux/amd64 mcr.microsoft.com/vscode/devcontainers/base:0 -bullseye
1+ FROM --platform=linux/amd64 mcr.microsoft.com/vscode/devcontainers/base:1 -bullseye
22
33ENV DENO_INSTALL=/deno
44RUN mkdir -p /deno \
Original file line number Diff line number Diff line change @@ -20,7 +20,8 @@ rpc.mevblocker.io,\
2020rpc.gnosischain.com,\
2121ethereum-sepolia.publicnode.com,\
2222arbitrum-one-rpc.publicnode.com,\
23- base.llamarpc.com" \
23+ base.llamarpc.com,\
24+ rpc.lens.xyz" \
2425 -- \
2526 " $base_path /replace-owners.ts" \
2627 " $@ "
Original file line number Diff line number Diff line change @@ -8,7 +8,8 @@ export type SupportedNetworks =
88 | "Optimism"
99 | "Avalanche"
1010 | "Arbitrum One"
11- | "Base" ;
11+ | "Base"
12+ | "Lens" ;
1213
1314export function getRpc ( network : SupportedNetworks ) : string {
1415 // For more information about the RPC nodes: https://chainlist.org/
@@ -33,6 +34,8 @@ export function getRpc(network: SupportedNetworks): string {
3334 return "https://mainnet.optimism.io"
3435 case "Avalanche" :
3536 return "https://api.avax.network/ext/bc/C/rpc"
37+ case "Lens" :
38+ return "https://rpc.lens.xyz" ;
3639 default :
3740 throw new Error ( `Invalid network ${ network } ` ) ;
3841 }
You can’t perform that action at this time.
0 commit comments