datahaven/test/utils/service-mappings.ts
Ahmad Kaouk 2cc1a4d3f0
test: port ethereum tests from moonbeam (#278)
Co-authored-by: Steve Degosserie <723552+stiiifff@users.noreply.github.com>
2025-11-22 10:02:05 +01:00

39 lines
753 B
TypeScript

export interface ServiceMapping {
service: string;
containerPattern: string;
internalPort: number;
protocol: string;
}
export interface ServiceInfo {
service: string;
port: string;
url: string;
}
export const StandardServiceMappings: ServiceMapping[] = [
{
service: "reth-1-rpc",
containerPattern: "el-1-reth-lodestar",
internalPort: 8545,
protocol: "tcp"
},
{
service: "reth-2-rpc",
containerPattern: "el-2-reth-lodestar",
internalPort: 8545,
protocol: "tcp"
},
{
service: "blockscout-backend",
containerPattern: "blockscout--",
internalPort: 4000,
protocol: "tcp"
},
{
service: "dora",
containerPattern: "dora--",
internalPort: 8080,
protocol: "tcp"
}
];