/** * This module provides utility functions for working with knowledge graph * images in TypeScript. * * @since 0.0.6 */ import type { Op } from '@geoprotocol/grc-20'; type MakeAccountReturnType = { accountId: string; ops: Op[]; }; /** * Returns the ops to create an entity representing an Account. * * @example * ```ts * const { accountId, ops } = Account.make('0x1234'); * console.log(accountId); // 'gw9uTVTnJdhtczyuzBkL3X' * console.log(ops); // [...] * ``` * * @param address – Ethereum address * @returns accountId – base58 encoded v4 uuid representing the account entity: {@link MakeAccountReturnType} * @returns ops – The ops for the Account entity: {@link MakeAccountReturnType} */ export declare function make(address: string): MakeAccountReturnType; export {}; //# sourceMappingURL=account.d.ts.map