import { Bytes } from './bytes.js'; type SubaccountBytes32 = Bytes; type SubaccountNameBytes12 = Bytes; interface Subaccount { subaccountOwner: string; /** * If the subaccount is not a valid UTF-8 string, it will be the hex representation of the bytes */ subaccountName: string; } export type { Subaccount, SubaccountBytes32, SubaccountNameBytes12 };