(buffer: Uint8Array)
| 66 | }; |
| 67 | |
| 68 | export const toBlobString = (buffer: Uint8Array): string => { |
| 69 | return Array.from(buffer) |
| 70 | .map(byte => `\\${byte.toString(16).padStart(2, '0')}`) |
| 71 | .join(''); |
| 72 | }; |
| 73 | |
| 74 | export const assertReplicaIsHealthy = async (network: string): Promise<void> => { |
| 75 | const ping: { replica_health_status?: string } = JSON.parse( |
no test coverage detected