mirror of
https://github.com/BlueWallet/BlueWallet.git
synced 2024-11-19 18:00:17 +01:00
14 lines
333 B
TypeScript
14 lines
333 B
TypeScript
export const BitcoinUnit = {
|
|
BTC: 'BTC',
|
|
SATS: 'sats',
|
|
LOCAL_CURRENCY: 'local_currency',
|
|
MAX: 'MAX',
|
|
} as const;
|
|
export type BitcoinUnit = (typeof BitcoinUnit)[keyof typeof BitcoinUnit];
|
|
|
|
export const Chain = {
|
|
ONCHAIN: 'ONCHAIN',
|
|
OFFCHAIN: 'OFFCHAIN',
|
|
} as const;
|
|
export type Chain = (typeof Chain)[keyof typeof Chain];
|