quiseos
Version:
EVM Networks & Node Providers Parameters Documentation
10 lines (7 loc) • 356 B
text/typescript
import { EndpointAuth } from '../enums'
const formatAuthEndpoint = (endpoint: string, privateKey: string, projectId?: string): string => {
endpoint = endpoint.replace(EndpointAuth.PrivateKey, privateKey)
if (projectId != null) endpoint = endpoint.replace(EndpointAuth.ProjectId, projectId)
return endpoint
}
export default formatAuthEndpoint