Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[REG-1227] Add .austin TLD #325

Merged
merged 3 commits into from
Mar 18, 2024
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
8 changes: 6 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,12 @@
# v0.9.1
## v0.9.2

- Add `.austin` TLD

## v0.9.1

- Add ENS `Root` contract to sandbox

# v0.9.0
## v0.9.0

- `[email protected]` receives support for expirable domains
- `[email protected]` receives support for expirable domains, TLDs
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[21] memory tlds = [
string[22] memory tlds = [
'crypto',
'wallet',
'x',
Expand All @@ -125,7 +125,8 @@ contract MintingManager is ERC2771Context, MinterRole, Blocklist, Pausable, IMin
'realm',
'go',
'altimist',
'pudgy'
'pudgy',
'austin'
];
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.1",
"version": "0.9.2",
"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 @@ -36,6 +36,7 @@ export const TLD = {
GO: BigNumber.from('0xa264639c3dbff58a1ded5efcf724e50a9c7847ff8197c87c00d009fbba2a3720'),
ALTIMIST: BigNumber.from('0x9bf15275eb85f2e69308f3dbfbe0f94cade4f05c2aa24ba7b9eba5ad2fb1a2cb'),
PUDGY: BigNumber.from('0x17936dd2b9c99a1e1bfa039dd7d40118f3ed535fcd9c8cda23c8070ffb4c2264'),
AUSTIN: BigNumber.from('0x89e68000b532da79f9a0d4b8416eaa4f64294236ab233205343453d5bec22933'),

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