We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
This proposal is design do bridge the world wide DNS system to validated Sui objects.
Having on chain Domain objects will allow novel use cases to verify ownership of domains and prevent scams.
public struct Domain { /// domain name name: String, /// Date when the Domain validation expires valid_until: Date, ... }
new_domain(name: String, method: VerificationMethod, cost: Coin<NS>) -> Domain
renew_domain(domain: &mut Domain, method: VerificationMethod, cost: Coin<NS>)
Domain
/.well-known/suins/[uuid]
_suins_[uuid]
The text was updated successfully, but these errors were encountered:
No branches or pull requests
This proposal is design do bridge the world wide DNS system to validated Sui objects.
Having on chain Domain objects will allow novel use cases to verify ownership of domains and prevent scams.
ACME like verification
NS daemon
Verification process
new_domain(name: String, method: VerificationMethod, cost: Coin<NS>) -> Domain
renew_domain(domain: &mut Domain, method: VerificationMethod, cost: Coin<NS>)
Domain
valid_until timestamp is extended by 3 months.Validation Methods
/.well-known/suins/[uuid]
challange_suins_[uuid]
TXT domain challangeThe text was updated successfully, but these errors were encountered: