Skip to content

Commit

Permalink
Merge pull request #337 from unstoppabledomains/ryan/ecw-3300-bug-usd…
Browse files Browse the repository at this point in the history
…t-tether-not-available-on-polygon-chain

Add WETH token + USDT_MATIC
  • Loading branch information
sudoryan authored May 9, 2024
2 parents 29985de + 0556112 commit e5a116a
Show file tree
Hide file tree
Showing 3 changed files with 29 additions and 4 deletions.
7 changes: 6 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
## v0.9.13

- Added `USDT` MATIC token to resolver list
- Added `WETH` token to resolver list

## v0.9.12

- Upgraded `UNSRegistry` and `MintingManager` on Polygon Mainnet
Expand Down Expand Up @@ -139,7 +144,7 @@

## v0.8.28

- ENSCustody@0.1.3 - Added `owner` parameter into `data` when depositing into custody
- ENSCustody@0.1.3 - Added `owner` parameter into `data` when depositing into custody

## v0.8.27

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "uns",
"version": "0.9.12",
"version": "0.9.13",
"description": "UNS contracts and tools",
"repository": "https://github.com/unstoppabledomains/uns.git",
"main": "./dist/index.js",
Expand Down
24 changes: 22 additions & 2 deletions resolver-keys.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": "2.1.32",
"version": "2.1.33",
"information": {
"description": "This file describes all resolver keys with a defined meaning and related metadata used by Unstoppable Domains UNS Registry",
"documentation": "https://docs.unstoppabledomains.com/developer-toolkit/records-reference/",
Expand Down Expand Up @@ -511,11 +511,31 @@
"validationRegex": "^0x[a-fA-F0-9]{40}$",
"deprecated": false
},
"crypto.WETH.version.ERC20.address": {
"deprecatedKeyName": "WETH_ERC20",
"validationRegex": "^0x[a-fA-F0-9]{40}$",
"deprecated": false
},
"crypto.WETH.version.MATIC.address": {
"deprecatedKeyName": "WETH_MATIC",
"deprecated": false,
"validationRegex": "^0x[a-fA-F0-9]{40}$"
},
"crypto.WETH.version.BEP20.address": {
"deprecatedKeyName": "WETH_BEP20",
"validationRegex": "^0x[a-fA-F0-9]{40}$",
"deprecated": false
},
"crypto.USDT.version.ERC20.address": {
"deprecatedKeyName": "USDT_ERC20",
"validationRegex": "^0x[a-fA-F0-9]{40}$",
"deprecated": false
},
"crypto.USDT.version.MATIC.address": {
"deprecatedKeyName": "USDT_MATIC",
"validationRegex": "^0x[a-fA-F0-9]{40}$",
"deprecated": false
},
"crypto.USDT.version.TRON.address": {
"deprecatedKeyName": "USDT_TRON",
"validationRegex": "^[T][a-zA-HJ-NP-Z0-9]{33}$",
Expand Down Expand Up @@ -2662,4 +2682,4 @@
"deprecated": false
}
}
}
}

0 comments on commit e5a116a

Please sign in to comment.