forked from deriv-com/deriv-app
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1 from hamid-deriv/hamid/wallet-card-forked
hamid/enhance-wallet-card
- Loading branch information
Showing
5 changed files
with
288 additions
and
187 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,58 @@ | ||
// TODO: Remove this file once we have the real API response | ||
const wallets = [ | ||
{ | ||
name: 'USD Wallet', | ||
currency: 'usd', | ||
icon: 'IcCurrencyUsd', | ||
balance: '10,0000', | ||
icon_type: 'fiat', | ||
state: 'default', | ||
jurisdiction_title: 'svg', | ||
}, | ||
{ | ||
name: 'USD Wallet', | ||
currency: 'usd', | ||
icon: 'IcCurrencyUsd', | ||
balance: '10,0000', | ||
icon_type: 'fiat', | ||
state: 'default', | ||
jurisdiction_title: 'svg', | ||
}, | ||
// { | ||
// name: 'MT5 Derived Demo', | ||
// currency: 'usd', | ||
// icon: 'IcRebrandingMt5Logo', | ||
// wallet_icon: 'IcWalletDerivDemoLight', | ||
// balance: '879', | ||
// icon_type: 'app', | ||
// app: 'mt5', | ||
// linked_wallet: 'deriv demo', | ||
// state: 'default', | ||
// jurisdiction_title: 'svg', | ||
// is_demo: true, | ||
// }, | ||
// { | ||
// name: 'MT5 Derived Demo', | ||
// currency: 'usd', | ||
// icon: 'IcRebrandingMt5Logo', | ||
// wallet_icon: null, | ||
// balance: '879', | ||
// icon_type: 'app', | ||
// app: 'mt5', | ||
// linked_wallet: null, | ||
// state: 'default', | ||
// jurisdiction_title: 'svg', | ||
// is_demo: true, | ||
// }, | ||
{ | ||
name: 'Bitcoin Wallet', | ||
currency: 'BTC', | ||
icon: 'IcCashierBitcoinLight', | ||
balance: '0.003546', | ||
icon_type: 'crypto', | ||
state: 'default', | ||
jurisdiction_title: 'svg', | ||
}, | ||
]; | ||
|
||
export default wallets; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.