如何将特定地址的 ?format=json 的值 returns 转换为真正的 BTC 格式,例如 0.00232

How to convert the value returns by the ?format=json of certain address into real BTC format like i.e 0.00232

需要帮助将此页面 https://blockchain.info/address/1CVrg5P8s3g7byiqr9bBpjjxZV7Gp3fzRG/?format=json&filter=2 交易中的值参数转换为真实的 BTC 数字,例如 0.00232

除以10^8

  {
     "spent":true,
     "tx_index":173071723,
     "type":0,
     "addr":"16jXf2iHuvtPY6D9NumQBKff5mLUKCP6nA",
     "value":18003000,
     "n":1,
     "script":"76a9143ee3b07bbcd8d9748b4f3b906fc8c5adeca0a88188ac"
  }

其中 value18003000 / 10^8 = 0.18003 BTC。

为什么10^8?这是 1 BTC 的最小面额,称为 Satoshi。 100000000 聪 = 1 BTC。