hive-keychain-commons
Version:
Platform-agnostic functions used in Hive Keychain mobile and extensions
12 lines (11 loc) • 485 B
TypeScript
export declare enum TransferWarning {
PRIVATE_KEY_IN_MEMO = "private_key_in_memo",
PHISHING = "phishing",
EXCHANGE_DEPOSIT = "exchange_deposit",
EXCHANGE_MEMO = "exchange_memo",
EXCHANGE_RECURRENT = "exchange_recurrent",
EXCHANGE_VSC = "EXCHANGE_VSC"
}
export declare const TransferUtils: {
getTransferWarning: (account: string, currency: string, memo: any, phisingAccounts: any, isRecurrent?: boolean, isOnVsc?: boolean) => TransferWarning | undefined;
};