@0xcert/erc721-validator 中文文档教程
以太坊 ERC-721 合约验证器。
这是一个用 TypeScript 编写的 NodeJS 开源包。 它允许根据一系列测试来验证合约,以检查其是否符合 ERC-721 标准。
该软件包得到积极维护、良好测试并已在生产环境中使用。 源代码可在 GitHub 上找到,您还可以在其中找到我们的 问题跟踪器。
How it works
有关验证器如何工作的更多信息,请查看文章解释技术。
Installation
运行下面的命令来安装包。
npm install --save web3 erc721-validator
此包使用承诺,因此当不支持承诺时,您需要使用 Promise polyfill。
Getting started
初始化 Web3 提供程序。
import * as Web3 from 'web3';
const web3 = new Web3(new Web3.providers.HttpProvider('http://localhost:8545'));
加载和解析特定块的数据。
import { Validator } from 'erc721-validator';
const validator = new ERC721Validator(web3);
const contract = '0x...';
const token = '123';
const giver = '0x...';
await validator.basic(test, contract); // => [{...},{...},{...},{...}]
await validator.token(test, contract, token); // => [{...},{...},{...},{...}]
await validator.transfer(test, contract, token, giver); // => [{...},{...},{...},{...}]
API
ERC721Validator Class
ERC721Validator(web3)
允许测试合约有效性的主类。
Option | Type | Required | Default | Description |
---|---|---|---|---|
web3 | Web3 | Yes | - | Instance of a Web3 provider. |
注意: ERC721Validator 类扩展为 RawModel 类,因此公开了所有相关的辅助方法。
ERC721Validator.prototype.basic(contract): Promise(JSON)
执行一系列基本合约测试。
Option | Type | Required | Default | Description |
---|---|---|---|---|
contract | String | Yes | - | Contract Address |
ERC721Validator.prototype.token(contract, tokenId): Promise(JSON)
执行一系列测试以验证合约令牌的合规性。
Option | Type | Required | Default | Description |
---|---|---|---|---|
contract | String | Yes | - | Contract Address |
tokenId | String | Yes | - | Token ID |
ERC721Validator.prototype.transfer(contract, tokenId, giver): Promise(JSON)
执行一系列测试以验证合约令牌传输的合规性。
Option | Type | Required | Default | Description |
---|---|---|---|---|
contract | String | Yes | - | Contract Address |
tokenId | String | Yes | - | Token ID |
giver | String | Yes | - | Address of giver |
License (MIT)
版权所有 (c) 2018 0xcert admin@0xcert.org。
Ethereum ERC-721 Contract Validator.
This is an open source package for NodeJS written with TypeScript. It allows for validating a contract against a series of tests to check its compliancy with the ERC-721 standard.
This package is actively maintained, well tested and already used in production environments. The source code is available on GitHub where you can also find our issue tracker.
How it works
For more information on how the validator works please check the article explaining the technique.
Installation
Run the command below to install the package.
npm install --save web3 erc721-validator
This package uses promises thus you need to use Promise polyfill when promises are not supported.
Getting started
Initialize the Web3 provider.
import * as Web3 from 'web3';
const web3 = new Web3(new Web3.providers.HttpProvider('http://localhost:8545'));
Load and parse data of a particular block.
import { Validator } from 'erc721-validator';
const validator = new ERC721Validator(web3);
const contract = '0x...';
const token = '123';
const giver = '0x...';
await validator.basic(test, contract); // => [{...},{...},{...},{...}]
await validator.token(test, contract, token); // => [{...},{...},{...},{...}]
await validator.transfer(test, contract, token, giver); // => [{...},{...},{...},{...}]
API
ERC721Validator Class
ERC721Validator(web3)
Main class which allows for testing your contract validity.
Option | Type | Required | Default | Description |
---|---|---|---|---|
web3 | Web3 | Yes | - | Instance of a Web3 provider. |
NOTICE: The ERC721Validator class extends is a RawModel class and thus exposes all related helper methods.
ERC721Validator.prototype.basic(contract): Promise(JSON)
Performes a series of basic contract tests.
Option | Type | Required | Default | Description |
---|---|---|---|---|
contract | String | Yes | - | Contract Address |
ERC721Validator.prototype.token(contract, tokenId): Promise(JSON)
Performes a series of tests to validate contract token compliancy.
Option | Type | Required | Default | Description |
---|---|---|---|---|
contract | String | Yes | - | Contract Address |
tokenId | String | Yes | - | Token ID |
ERC721Validator.prototype.transfer(contract, tokenId, giver): Promise(JSON)
Performes a series of tests to validate contract token transfer compliancy.
Option | Type | Required | Default | Description |
---|---|---|---|---|
contract | String | Yes | - | Contract Address |
tokenId | String | Yes | - | Token ID |
giver | String | Yes | - | Address of giver |
License (MIT)
Copyright (c) 2018 0xcert admin@0xcert.org.
你可能也喜欢
- 8lab_datafilterinline 中文文档教程
- @104corp/cfn-web-module 中文文档教程
- @3dexpress/starwar-names 中文文档教程
- @4everland/cluster-cli 中文文档教程
- @4geit/rct-notification-menu-component 中文文档教程
- @59naga/eastern-cli 中文文档教程
- @_nu/html-validator 中文文档教程
- @aamodtgroup/react-mailchimp-form 中文文档教程
- @aarondewes/wp-i18n 中文文档教程
- @ab-task/rtb 中文文档教程