简体   繁体   English

通过apiblockchain.info检查以太坊钱包

[英]check ethereum wallet on via api blockchain.info

i am using https://blockchain.info/ api For checking my balance i use this link : 我正在使用https://blockchain.info/ api要检查我的余额,请使用以下链接:

https://blockchain.info/rawaddr/16**** 

Is there something similar for ethereum wallet ? 以太坊钱包有类似的东西吗? i want to know sender's address and history of my ethereum wallet in blockchain info 我想在区块链信息中了解发件人的地址和我的以太坊钱包的历史记录

If I understand well, you're looking for an api to check balance of ethereum accounts ? 据我了解,您正在寻找一种API以检查以太坊账户余额?

Check this : https://etherscan.io/apis 检查一下: https : //etherscan.io/apis

Amberdata.io has an API with a bunch of data on addresses . Amberdata.io有一个API,其中的地址上有一堆数据 Something unique is that they have Historical Account Balances, as well as, the ability to list all transactions by address . 它们的独特之处在于它们具有历史帐户余额,并且能够按地址列出所有交易

Here's an example response from the addresses/:hash/statistics endpoint: 这是来自addresses/:hash/statistics端点的示例响应:

curl \
    -X "GET" \
    -H "accept: application/json" \
    -H "x-api-key: <api_key>" \
    "https://web3api.io/api/v1/addresses/0x06012c8cf97bead5deae237070f9587f8e7a266d/statistics"

Response: 响应:

{
  "status": 200,
  "title": "OK",
  "description": "Successful request",
  "payload": {
    "balance": "43625340634292316919",
    "balanceIn": "2.714245071508029334975e+22",
    "balanceOut": "2.7098825374446001032831e+22",
    "addressType": "contract",
    "contractTypes": [
      "ERC721"
    ],
    "decimals": "0",
    "name": "CryptoKitties",
    "numHolders": "72506",
    "numTokens": "1421403",
    "numTransfers": "1356726",
    "symbol": "CK",
    "totalSupply": "1421403.0000000000000000",
    "totalValueUSD": null,
    "unitValueUSD": null
  }
}

Let me know if any of that is helpful! 让我知道其中是否有帮助! 😄 😄

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM