summaryrefslogtreecommitdiff
path: root/src/types/walletTypes.ts
diff options
context:
space:
mode:
authorFlorian Dold <florian.dold@gmail.com>2020-07-09 18:56:18 +0530
committerFlorian Dold <florian.dold@gmail.com>2020-07-09 18:56:18 +0530
commit63ebe1b2e296aabb79cb1756d5dfc82c1ba4fe02 (patch)
tree18d0a1f92b8b48abec3d66b10a56d23212d7d81b /src/types/walletTypes.ts
parent2efe743950ade93ef6cb981a6ac4a56ef3e71ec7 (diff)
downloadwallet-core-63ebe1b2e296aabb79cb1756d5dfc82c1ba4fe02.tar.gz
wallet-core-63ebe1b2e296aabb79cb1756d5dfc82c1ba4fe02.tar.bz2
wallet-core-63ebe1b2e296aabb79cb1756d5dfc82c1ba4fe02.zip
android APIs for withdrawal and exchange listing
Diffstat (limited to 'src/types/walletTypes.ts')
-rw-r--r--src/types/walletTypes.ts10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/types/walletTypes.ts b/src/types/walletTypes.ts
index e58352e01..8bc4f97af 100644
--- a/src/types/walletTypes.ts
+++ b/src/types/walletTypes.ts
@@ -479,3 +479,13 @@ export interface DepositInfo {
export interface ExtendedPermissionsResponse {
newValue: boolean;
}
+
+export interface ExchangesListRespose {
+ exchanges: ExchangeListItem[];
+}
+
+export interface ExchangeListItem {
+ exchangeBaseUrl: string;
+ currency: string;
+ paytoUris: string[];
+}