如何通过交易哈希知道交易中使用的加密货币?

How to know the cryptocurrency used in a transaction through the transaction hash?(如何通过交易哈希知道交易中使用的加密货币?)
本文介绍了如何通过交易哈希知道交易中使用的加密货币?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

如何通过交易哈希知道交易中使用的加密货币?

我使用的代码如下:

<script src="https://cdn.jsdelivr.net/npm/web3@latest/dist/web3.min.js"></script>

...

if (typeof web3 !== 'undefined') {
      web3 = new Web3(web3.currentProvider);
    } else {
     web3 = new Web3(new Web3.providers.HttpProvider("http://localhost:8545"));
    }

    var transaction = web3.eth.getTransaction('0x42ca92e05d21592e92e36c93ae6e31d0583c4c95cadd42901e297b55c6b465af');
    console.log(transaction);

我正在获取以下对象:

Promise
[[Prototype]]: Promise
[[PromiseState]]: "fulfilled"
[[PromiseResult]]: Object
blockHash: "0x91a5799cac3de01498a4988d4e55bb29f6b56617490bf854ce5e1f21821db2e2"
blockNumber: 14832362
from: "0xdE4429D4cD2afa9C4314254F1cb074181f0e184e"
gas: 200000
gasPrice: "10000000000"
hash: "0x42ca92e05d21592e92e36c93ae6e31d0583c4c95cadd42901e297b55c6b465af"
input: "0x"
nonce: 12
r: "0xec1cb9f6b134c375542c4aaff07aa6ae8bd831918e52a609e77f227683524f67"
s: "0x798123f2eb75584430c2016cf91eeb384306291dcbc50eae64fc73c140cc972d"
to: "0x69AF47261C4585C365e4E1D93b635974a30fb117"
transactionIndex: 7
type: 0
v: "0x94"
value: "10000000000000000"
[[Prototype]]: Object

我找到了值、接收者和来源,但我找不到有关USES标记的任何信息在哪里。 如果有人帮我,我会很高兴的。

推荐答案

我不认为您可以从事务哈希中获得它:这是事务哈希的分解:

0x
//  https://eth.wiki/fundamentals/rlp for more on f8
// 0xf8-0xf7=1byte=2 chars which tells you next 2 chars is the length of the paylaod
f8
// length of payload. 0x69=105bytes=210 chars. 
69
// Nonce. 1byte
12 
//0x85-0x80=133-128= 5bytes=10chars= GAS PRICE
85 012a05f200
// 0x83-0x80=131-128=3bytes=6chars= GAS LIMIT
83 07a120
// 0x94 - 0x80=148-128=20bytes=40chars= TO
94 b75fe87f44cb2003f3472424261f021d2100ce5a
// this should be value. empty valu, string is represended as 80
80 
// 0x84-0x80=132-128=4bytes=8 chars= DATA
84 3ccfd60b
// "v" value. 1byte
2a
// a0-0x80=160-128=32 bytes=64 chars= "r" VALUE
a0 fce2a70cde55dc86a203d2387469c36da00e9a9f3536b867f6761c314b1f1423
// a0-0x80=160-128=32 bytes=64 chars= "s" VALUE
a0 7b85742fd48a687b8daa097d1fb9d4b5135de6deb5b6fd16dd0f28d6c28727b6
要获取ERC20转账的信息,您需要交易 收据,因为转账信息记录在转账事件中 原木。您应该使用eth_getTransactionReceipt。

这篇文章解释了如何从transaction_receipt获取它:

ERC20 Tokens Transferred Information from Transaction Hash

这篇关于如何通过交易哈希知道交易中使用的加密货币?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

Update another component when Formik form changes(当Formik表单更改时更新另一个组件)
Formik validation isSubmitting / isValidating not getting set to true(Formik验证正在提交/isValiating未设置为True)
React Validation Max Range Using Formik(使用Formik的Reaction验证最大范围)
Validation using Yup to check string or number length(使用YUP检查字符串或数字长度的验证)
Updating initialValues prop on Formik Form does not update input value(更新Formik表单上的初始值属性不会更新输入值)
password validation with yup and formik(使用YUP和Formick进行密码验证)