-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add logic to output ofac-sanctioned-digital-currency-addresses.json (#81
) * Add logic to output ofac-sanctioned-digital-currency-addresses.json * Don't store by chain ID (or even CoinType) We don't know which chain IDs or coinTypes will be added by OFAC upstream, and it's difficult given an arbitrary symbol to identify which chain ID / CoinType it is. So it's easier to just put all the banned addresses in a flat namespace. There's only 540 so it's not really a performance hit to check all of them for an Ethereum transaction instead of just the ETH ones. * Rename 'bannedAddresses' key to 'addresses' * Update environment variable name GITHUB_TOKEN -> API_AUTH_TOKEN_GITHUB The IT asked for a more descriptive name. Also, apparently you variables cannot start with the prefix 'GITHUB'. * Bump version to 1.14.0
- Loading branch information
Showing
3 changed files
with
64 additions
and
2 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 |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"name": "token-lists", | ||
"version": "1.13.0", | ||
"version": "1.14.0", | ||
"description": "Manages custom token lists for Brave Wallet", | ||
"dependencies": { | ||
"@metamask/contract-metadata": "git+https://[email protected]/MetaMask/contract-metadata.git", | ||
|
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