Skip to content
This repository has been archived by the owner on Oct 19, 2024. It is now read-only.

Add USDT token address #2611

Merged
merged 2 commits into from
Sep 25, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions ethers-addressbook/src/contracts/contracts.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,11 @@
"mainnet": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48"
}
},
"usdt": {
"addresses": {
"mainnet": "0xdAC17F958D2ee523a2206206994597C13D831ec7"
}
},
"weth": {
"addresses": {
"mainnet": "0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2",
Expand Down
1 change: 1 addition & 0 deletions ethers-addressbook/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@ mod tests {
fn test_tokens() {
assert!(contract("dai").is_some());
assert!(contract("usdc").is_some());
assert!(contract("usdt").is_some());
assert!(contract("rand").is_none());
}

Expand Down