mirror of
https://github.com/BlueWallet/BlueWallet.git
synced 2024-11-19 09:50:15 +01:00
14 lines
329 B
TypeScript
14 lines
329 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];
|