/** * Represents strings which are valid Ethereum addresses. * * @since 1.0.0 */ import { Branded } from 'schemata-ts/brand'; import * as PB from 'schemata-ts/PatternBuilder'; import { SchemaExt } from 'schemata-ts/SchemaExt'; interface EthereumAddressBrand { readonly EthereumAddress: unique symbol; } /** * Represents strings which are valid Ethereum addresses. * * @since 1.0.0 * @category Model */ export declare type EthereumAddress = Branded; /** * @since 1.0.0 * @category Pattern */ export declare type EthereumAddressS = SchemaExt; /** * @since 1.0.0 * @category Pattern */ export declare const ethereumAddress: PB.Pattern; /** * Represents strings which are valid Ethereum addresses. * * @since 1.0.0 * @category Schema */ export declare const EthereumAddress: EthereumAddressS; export {}; //# sourceMappingURL=EthereumAddress.d.ts.map