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

rename to Massa Name System #48

Merged
merged 2 commits into from
Feb 20, 2025
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
# MassaNameService
Massa naming service
# Massa Name System
Massa name system
2 changes: 1 addition & 1 deletion frontend/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<meta charset="UTF-8" />
<link rel="icon" href="/logo.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Massa Name Service</title>
<title>Massa Name System</title>
</head>
<body class="bg-secondary">
<div id="root"></div>
Expand Down
4 changes: 2 additions & 2 deletions frontend/src/const/faq.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ import { FAQData } from '../components/FAQ';

export const faqData: FAQData[] = [
{
question: 'What is Massa Name Service ?',
question: 'What is Massa Name System ?',
answer:
'Massa Name Service is a decentralized naming service which allows users and smart contracts to be recognized on the Massa blockchain.',
'Massa Name System is a decentralized naming service which allows users and smart contracts to be recognized on the Massa blockchain.',
},
{
question: 'How do I register a name ?',
Expand Down
2 changes: 1 addition & 1 deletion smart-contract/README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Massa Name service
# Massa Name System

## Build

Expand Down
2 changes: 1 addition & 1 deletion smart-contract/assembly/__tests__/dns.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -590,7 +590,7 @@ describe('Test NFT name', () => {
switchUser(owner);
});
test('Test NFT name', () => {
expect(name()).toStrictEqual(stringToBytes('MassaNameService'));
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

breaking ?

expect(name()).toStrictEqual(stringToBytes('MassaNameSystem'));
});
});

Expand Down
2 changes: 1 addition & 1 deletion smart-contract/assembly/contracts/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ import {
import { u256 } from 'as-bignum/assembly';

export function constructor(_: StaticArray<u8>): void {
mrc721Constructor('MassaNameService', 'MNS');
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

is this breaking ?

mrc721Constructor('MassaNameSystem', 'MNS');
Storage.set(COUNTER_KEY, u256ToBytes(u256.Zero));
Storage.set(lockedKey(), u256ToBytes(u256.Zero));
Storage.set(TOTAL_SUPPLY_KEY, u256ToBytes(u256.Zero));
Expand Down
Loading