You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
283 B
12 lines
283 B
export type Account = {
|
|
id?: number;
|
|
publicKey: string;
|
|
mnemonic: string;
|
|
identity: string;
|
|
dateCreated: number;
|
|
};
|
|
|
|
// mark encrypted field by starting with a $ character
|
|
export const accountsSchema = {
|
|
accounts: "++id, publicKey, $mnemonic, $identity, dateCreated",
|
|
};
|
|
|