areonnamejs

1.0.2 • Public • Published

Areon Name Service

Nodejs SDK

Npm: https://www.npmjs.com/package/areonnamejs

Github: https://github.com/AreonNameService/

Before installing the package you need to check and be sure to install the packages below:

npm install web3 

Install Package

npm install areonnamejs

Call

const domainjs = require('areonnamejs');

Set config

contractAddress: "0xD5DD38942FE0a0913A35DeD04A702ba4951605A3"

https://areonscan.com/contracts/0xD5DD38942FE0a0913A35DeD04A702ba4951605A3

Install

   // install
	const sdk = domainjs.SDK();

	// change your domains
	const _domain = "areonchain.area";
	
	// change your address
	const _address = "0x5aEa3F3f358347Abf94B554389174F966faeEfbB";
	
	// resolve domain to get the address of the owner. metadata: true // false default return metadata along with domain information
	const owner = await sdk.getOwner(_domain, false);

	console.log(owner);

	// get total domains
	const balance = await sdk.balanceOf(_address);

	console.log(balance);

	// get a domain default from a user's address, requiring the user to set the default domain name initially.
	const domain = await sdk.getDomain(_address);

	console.log(domain);
	
	// gets all the domains owned by an wallet address.
	const domains = await sdk.getDomains(_address);

	console.log(domains);
	
	//get a value of metadata from the domain name
	const _avatar = await sdk.getMetadata("avatar", _domain);

	console.log(_avatar);
	
	//get values of metadata from the domain name
	const _values = await sdk.getMetadatas(["avatar", "website", "social:twitter"], _domain);

	console.log(_values);
	
	//namehash is a recursive process that can generate a unique hash for any valid domain name.
	const hashname = await sdk.hashname(_domain);

	console.log(hashname);

Pls update test.js for specific instructions

Thanks!

Readme

Keywords

none

Package Sidebar

Install

npm i areonnamejs

Weekly Downloads

0

Version

1.0.2

License

ISC

Unpacked Size

39.3 kB

Total Files

5

Last publish

Collaborators

  • web3domainss