File tree Expand file tree Collapse file tree 2 files changed +6
-2
lines changed Expand file tree Collapse file tree 2 files changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -24,7 +24,8 @@ ethereum-sepolia.publicnode.com,\
2424arbitrum-one-rpc.publicnode.com,\
2525base.llamarpc.com,\
2626rpc.lens.xyz,\
27- rpc.linea.build" \
27+ rpc.linea.build,\
28+ rpc.plasma.to" \
2829 -- \
2930 " $base_path /replace-owners.ts" \
3031 " $@ "
Original file line number Diff line number Diff line change @@ -10,7 +10,8 @@ export type SupportedNetworks =
1010 | "Arbitrum One"
1111 | "Base"
1212 | "Lens"
13- | "Linea" ;
13+ | "Linea"
14+ | "Plasma" ;
1415
1516export function getRpc ( network : SupportedNetworks ) : string {
1617 // For more information about the RPC nodes: https://chainlist.org/
@@ -39,6 +40,8 @@ export function getRpc(network: SupportedNetworks): string {
3940 return "https://rpc.lens.xyz" ;
4041 case "Linea" :
4142 return "https://rpc.linea.build" ;
43+ case "Plasma" :
44+ return "https://rpc.plasma.to" ;
4245 default :
4346 throw new Error ( `Invalid network ${ network } ` ) ;
4447 }
You can’t perform that action at this time.
0 commit comments