https://docs.ethers.io/ethers.js/html/ What is ethers.js The ethers.js library aims to be a complete and compact library for interacting with the Ethereum Blockchain and its ecosystem. It was originally designed for use with ethers.io and has since e…
本文原文链接 点击这里获取Etherscan API 中文文档(完整版) 完整内容排版更好,推荐读者前往阅读. 智能合约(Contracts) 智能合约相关的 API,接口的参数说明请参考Etherscan API 约定, 文档中不单独说明. Newly verified Contracts are synced to the API servers within 5 minutes or less 获取已经验证代码合约的ABI Verified Contract Source Codes ht…
以太坊去中心化网页钱包开发系列,将从零开始开发出一个可以实际使用的钱包,本系列文章是理论与实战相结合,一共有四篇:创建钱包账号.账号Keystore文件导入导出.展示钱包信息及发起签名交易.发送Token(代币),本文是第四篇,Token(代币.通证)是以太坊的一大特色,既然开发钱包,则发送Token 功能必不可少. 合约 ABI 信息 首先我们需要明白,进行Token转账的时候,其实是在调用合约的转账函数,而要调用一个合约的函数,需要知道合约的 ABI 信息. 其次 通常我们所说的Token,…
本文原文链接 点击这里获取Etherscan API 中文文档(完整版) 完整内容排版更好,推荐读者前往阅读. 交易(Transaction) 交易相关的 API,接口的参数说明请参考Etherscan API 约定, 文档中不单独说明. [BETA] 检查合约执行状态 (if there was an error during contract execution) Note: isError":"0" = Pass , isError":"1"…
原文:https://davekiss.com/ethereum-web3-node-tutorial/ Ethereum took the web and cryptocurrency world by storm in 2017. In the span of one year, the price of 1 Ether skyrocketed from $8.24 USD to $750.00 USD – and for good reason. If you need convinc…
Application Programming Interface (API) Wallets and Signers A Wallet manages a private/public key pair which is used to cryptographically sign transactions and prove ownership on the Ethereum network.钱包管理一个私有/公钥对,该对用于在Ethereum网络上对交易进行加密签名并证明所有权. Wall…
Providers A Provider abstracts a connection to the Ethereum blockchain, for issuing queries and sending signed state changing transactions. provider抽象到Ethereum区块链的连接,用于发出查询和发送签名状态更改交易. The EtherscanProvider and InfuraProvider offer the ability to con…
原文地址:FileProvider By Steve Smith ASP.NET Core通过对File Providers的使用实现了对文件系统访问的抽象. 查看或下载示例代码 File Provider 抽象 File Providers是文件系统之上的一层抽象.它的主要接口是IFileProvider.IFileProvider公开了相应方法用来获取文件信息(IFileInfo), 目录信息(IDirectoryContents),以及设置更改通知(通过使用一个IChangeToken).…
在学习anjular中Service的使用时,发现和js中的创建对象的方式有一定的联系,所以总结了anjular中Service.Factory.Provider的使用方式与js创建对象的方式 一.先总结下js中创建对象的几种方式 1.工厂模式 function createObject(username, password) { var object = new Object(); //等价于 var object={}; object.username = username; object…
JSON : Placeholder JSON : Placeholder (https://jsonplaceholder.typicode.com/) 是一个用于测试的 REST API 网站. 以下使用 RxJS6 + React.js 调用该网站的 REST API,获取字符串以及 JSON 数据. GET /posts/1 GET /posts POST /posts PUT /posts/1 DELETE /posts/1 所有 GET API 都返回JSON数据,格式(JSON-S…
JSON : Placeholder JSON : Placeholder (https://jsonplaceholder.typicode.com/) 是一个用于测试的 REST API 网站. 以下使用 RxJS6 + Vue.js 调用该网站的 REST API,获取字符串以及 JSON 数据. GET /posts/1 GET /posts POST /posts PUT /posts/1 DELETE /posts/1 所有 GET API 都返回JSON数据,格式(JSON-Sch…
本文转自:https://www.thepolyglotdeveloper.com/2017/04/build-image-manager-nativescript-node-js-minio-object-storage-cloud/ When building a mobile application, there are often scenarios where you need to storage files remotely and when I say files, I don’…