@dfinity/oisy-wallet-signer
Version:
A library designed to facilitate communication between a dApp and the OISY Wallet on the Internet Computer.
12 lines (11 loc) • 447 B
TypeScript
import * as z from 'zod';
export declare const IcrcAccountSchema: z.ZodObject<{
owner: z.ZodString;
subaccount: z.ZodOptional<z.ZodString>;
}, z.core.$strict>;
export type IcrcAccount = z.infer<typeof IcrcAccountSchema>;
export declare const IcrcAccountsSchema: z.ZodArray<z.ZodObject<{
owner: z.ZodString;
subaccount: z.ZodOptional<z.ZodString>;
}, z.core.$strict>>;
export type IcrcAccounts = z.infer<typeof IcrcAccountsSchema>;