import { Brand } from 'effect'; /** * A plain hex-encoded contract address, 32 bytes in length. * * @category models */ export type ContractAddress = Brand.Branded; export declare const ContractAddress: Brand.Brand.Constructor & Brand.Brand<"ContractAddress">>; /** * Creates a buffer representing the raw bytes of a contract address. * * @param self The {@link ContractAddress} for which raw bytes are required. * @returns A `Uint8Array` representing the raw bytes of `self`. * * @category constructors */ export declare const asBytes: (self: ContractAddress) => Uint8Array; //# sourceMappingURL=ContractAddress.d.ts.map