This repository has been archived by the owner on Nov 30, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 65
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
#48 don't enforce using memo, but only show a warning. When a known a…
…ccount is entered the memo field is shown and a warning is displayed that the destination requires a memo. Users can opt out of using a memo by clicking 'cancel'.
- Loading branch information
lenondupe
committed
Dec 19, 2017
1 parent
cf4e8d5
commit 71ede16
Showing
2 changed files
with
13 additions
and
19 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
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 |
---|---|---|
@@ -1,27 +1,27 @@ | ||
const knownAccounts = { | ||
'GCGNWKCJ3KHRLPM3TM6N7D3W5YKDJFL6A2YCXFXNMRTZ4Q66MEMZ6FI2': { | ||
name: 'Poloniex', | ||
memo_required: true | ||
requiredMemoType: 'MEMO_ID' | ||
}, | ||
'GA5XIGA5C7QTPTWXQHY6MCJRMTRZDOSHR6EFIBNDQTCQHG262N4GGKTM': { | ||
name: 'Kraken', | ||
memo_required: true | ||
requiredMemoType: 'MEMO_ID' | ||
}, | ||
'GB6YPGW5JFMMP2QB2USQ33EUWTXVL4ZT5ITUNCY3YKVWOJPP57CANOF3': { | ||
name: 'Bittrex', | ||
memo_required: true | ||
requiredMemoType: 'MEMO_TEXT' | ||
}, | ||
'GB7GRJ5DTE3AA2TCVHQS2LAD3D7NFG7YLTOEWEBVRNUUI2Q3TJ5UQIFM': { | ||
name: 'BTC38', | ||
memo_required: true | ||
requiredMemoType: 'MEMO_ID' | ||
}, | ||
'GBV4ZDEPNQ2FKSPKGJP2YKDAIZWQ2XKRQD4V4ACH3TCTFY6KPY3OAVS7': { | ||
name: 'Changelly', | ||
memo_required: true | ||
requiredMemoType: 'MEMO_ID' | ||
}, | ||
'GC4KAS6W2YCGJGLP633A6F6AKTCV4WSLMTMIQRSEQE5QRRVKSX7THV6S': { | ||
name: 'BitcoinIndonesia', | ||
memo_required: true | ||
requiredMemoType: 'MEMO_TEXT' | ||
} | ||
}; | ||
export default knownAccounts; |