API Wrapper to interact with Arkvatar.
yarn add arkvatar-ts
const arkvatar = require('arkvatar-ts');
(async () => {
const response = await arkvatar.show("validCryptoAddress");
console.log(response);
})();
const arkvatar = require('arkvatar-ts');
(async () => {
const response = await arkvatar.verify("validCryptoAddress");
console.log(response);
})();
const arkvatar = require('arkvatar-ts');
(async () => {
// Crypto Type are the full name of a cryptocurrency, Ethereum or Ark for example.
const response = await arkvatar.store("validCryptoAddress", "validCryptoType");
console.log(response);
})();
- Jolan Beer - Highjhacker
arkvatar-ts is under MIT license. See the LICENSE file for more informations.