From 07d7f0368a6d9ac4361f86aae98c34bf6b4d8a0c Mon Sep 17 00:00:00 2001 From: matheus-alcuri-foxbit Date: Mon, 7 Jul 2025 21:09:35 -0300 Subject: [PATCH] Adding new currencies field 'type' --- ts/src/foxbit.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/ts/src/foxbit.ts b/ts/src/foxbit.ts index 04e0d424a69c0..3d8090dcfcfe3 100644 --- a/ts/src/foxbit.ts +++ b/ts/src/foxbit.ts @@ -377,6 +377,7 @@ export default class foxbit extends Exchange { const depositInfo = this.safeDict (currency, 'deposit_info'); const withdrawInfo = this.safeDict (currency, 'withdraw_info'); const networks = this.safeList (currency, 'networks', []); + const type = this.safeStringLower (currency, 'type'); const parsedNetworks: Dict = {}; for (let j = 0; j < networks.length; j++) { const network = networks[j]; @@ -419,6 +420,7 @@ export default class foxbit extends Exchange { 'info': currency, 'name': name, 'active': true, + 'type': type, 'deposit': this.safeBool (depositInfo, 'enabled', false), 'withdraw': this.safeBool (withdrawInfo, 'enabled', false), 'fee': this.safeNumber (withdrawInfo, 'fee'),