zoociety 中文文档教程

发布于 2年前 浏览 15 项目主页 更新于 2年前

Zoociety

安装

npm install zoociety

用法

获取 Zoociety 礼品卡的所有者地址 NFT

import getTokenOwner from "zoociety";

const tokenId = "123";
const ownerAddress = await getTokenOwner(tokenId);
console.log(ownerAddress); // The owner address of the token with ID '123'

解析 ENS 名称

import resolveEns from "zoociety";

const ens = "raldblox.eth";
const resolvedName = await resolvedEns(ens);
console.log(resolvedName); // The resolved address of the ENS Name: 'raldblox.eth'

The Zoociety

Installation

npm install zoociety

Usage

Get Owner Address of Zoociety Gift Card NFTs

import getTokenOwner from "zoociety";

const tokenId = "123";
const ownerAddress = await getTokenOwner(tokenId);
console.log(ownerAddress); // The owner address of the token with ID '123'

Resolve ENS Names

import resolveEns from "zoociety";

const ens = "raldblox.eth";
const resolvedName = await resolvedEns(ens);
console.log(resolvedName); // The resolved address of the ENS Name: 'raldblox.eth'
    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文