Files
protocol/contracts/test-utils/src/address_utils.ts

10 lines
214 B
TypeScript

import { constants } from './constants';
import { hexRandom } from './hex_utils';
/**
* Generates a random address.
*/
export function randomAddress(): string {
return hexRandom(constants.ADDRESS_LENGTH);
}