Paid currency api support

This commit is contained in:
softsimon
2024-04-12 14:06:12 +09:00
parent 061d341d8b
commit 55c4d4d03d
7 changed files with 16 additions and 5 deletions

View File

@@ -154,6 +154,7 @@ interface IConfig {
},
FIAT_PRICE: {
ENABLED: boolean;
PAID: boolean;
API_KEY: string;
},
}
@@ -310,6 +311,7 @@ const defaults: IConfig = {
},
'FIAT_PRICE': {
'ENABLED': true,
'PAID': false,
'API_KEY': '',
},
};