Invoices can be created

- Transactions can now be tracked
This commit is contained in:
2020-12-25 13:28:19 +01:00
parent 0ffbe170dd
commit 16194dca8f
15 changed files with 968 additions and 531 deletions

View File

@@ -1,5 +1,6 @@
export enum CryptoUnits {
BITCOIN = 'BTC',
BITCOINCASH = 'BCH',
ETHEREUM = 'ETH',
LITECOIN = 'LTC',
DOGECOIN = 'DOGE',
@@ -26,11 +27,4 @@ export enum PaymentStatus {
* The payment is completed and the crypto is now available.
*/
DONE = 2
}
export interface SellItem {
price: {
unit: number,
currency:
}
}