Skip to content

Commit

Permalink
add: TRX (Tron)
Browse files Browse the repository at this point in the history
  • Loading branch information
0xB10C committed Dec 4, 2023
1 parent a78cb54 commit f5c9e60
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/generate-lists.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
- name: Generate TXT and JSON files for all assets
run: |
mkdir data
python3 generate-address-list.py XBT ETH XMR LTC ZEC DASH BTG ETC BSV BCH XVG USDC USDT XRP ARB BSC -f JSON TXT -path ./data
python3 generate-address-list.py XBT ETH XMR LTC ZEC DASH BTG ETC BSV BCH XVG USDC USDT XRP TRX ARB BSC -f JSON TXT -path ./data
- name: Commit files
run: |
git config --local user.email "45324+github-actions[bot]@users.noreply.github.com"
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ an issue or pull-request adding assets.
- USDC (USD Coin)
- USDT (USD Tether)
- XRP (Ripple)
- TRX (Tron)
- ARB (Arbitrum)
- BSC (Binance Smart Chain)

Expand Down
3 changes: 2 additions & 1 deletion generate-address-list.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,8 @@
# List of assets that have been sanctioned by the OFAC.
# Possible assets be seen by grepping the sdn_advanced.xml file for "Digital Currency Address".
POSSIBLE_ASSETS = ["XBT", "ETH", "XMR", "LTC", "ZEC", "DASH", "BTG", "ETC",
"BSV", "BCH", "XVG", "USDT", "XRP", "ARB", "BSC", "USDC"]
"BSV", "BCH", "XVG", "USDT", "XRP", "ARB", "BSC", "USDC",
"TRX"]

# List of implemented output formats
OUTPUT_FORMATS = ["TXT", "JSON"]
Expand Down

0 comments on commit f5c9e60

Please sign in to comment.