UNPKG

@kadena/kadena-cli

Version:

Kadena CLI tool to interact with the Kadena blockchain (manage keys, transactions, etc.)

9 lines 258 B
import { z } from 'zod'; export const accountSchema = z.object({ alias: z.string(), name: z.string(), fungible: z.string(), publicKeys: z.array(z.string()).nonempty(), predicate: z.string(), }); //# sourceMappingURL=account.schemas.js.map