Skip to content

Commit

Permalink
Merge pull request #332 from unstoppabledomains/kiryl/reg-1256-tld-la…
Browse files Browse the repository at this point in the history
…unch-support-registry-clay

[REG-1256] - Add .clay TLD
  • Loading branch information
DeRain authored Apr 17, 2024
2 parents c4277b5 + 63326db commit 299d2ad
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 5 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## v0.9.9

- Add `.clay` TLD

## v0.9.8

- Fixed MintableERC721Predicate deployment block for sepolia
Expand Down
4 changes: 2 additions & 2 deletions artifacts/MintingManager.json

Large diffs are not rendered by default.

5 changes: 3 additions & 2 deletions contracts/MintingManager.sol
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ contract MintingManager is ERC2771Context, MinterRole, Blocklist, Pausable, IMin
__ERC2771Context_init_unchained(forwarder);
__Pausable_init_unchained();

string[24] memory tlds = [
string[25] memory tlds = [
'crypto',
'wallet',
'x',
Expand All @@ -128,7 +128,8 @@ contract MintingManager is ERC2771Context, MinterRole, Blocklist, Pausable, IMin
'pudgy',
'austin',
'bitget',
'pog'
'pog',
'clay'
];
for (uint256 i = 0; i < tlds.length; i++) {
_addTld(tlds[i], false);
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.8",
"version": "0.9.9",
"description": "UNS contracts and tools",
"repository": "https://github.com/unstoppabledomains/uns.git",
"main": "./dist/index.js",
Expand Down
1 change: 1 addition & 0 deletions test/helpers/constants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@ export const TLD = {
AUSTIN: BigNumber.from('0x89e68000b532da79f9a0d4b8416eaa4f64294236ab233205343453d5bec22933'),
BITGET: BigNumber.from('0xbf2121df4e351413ea6788cb220e735378a753cec288cb22644340d58d597b23'),
POG: BigNumber.from('0xe76cc52c68a868af0cba676c92337a921cc721b45b6630e47f7ecb78e3e0edcc'),
CLAY: BigNumber.from('0x58872a8ca9414ae0f3ab850f51efaf4c77b647d903f9ec89a03d3018bb42e4fa'),

// Expirable
COM: BigNumber.from('0xac2c11ea5d4a4826f418d3befbf0537de7f13572d2a433edfe4a7314ea5dc896'),
Expand Down

0 comments on commit 299d2ad

Please sign in to comment.