Heim  >  Artikel  >  Web-Frontend  >  web3.js fügt die Schritte der Methode eth.getRawTransactionByHash(txhash) hinzu

web3.js fügt die Schritte der Methode eth.getRawTransactionByHash(txhash) hinzu

亚连
亚连Original
2018-05-30 10:20:102540Durchsuche

In diesem Artikel werden hauptsächlich die Schritte zum Hinzufügen der Methode eth.getRawTransactionByHash (txhash) zu web3.js vorgestellt. Freunde in Not können sich auf

eth_getRawTransactionByHash

https://ethereum beziehen . stackexchange.com/questions/7473/get-raw-transaction-from-hash

Es gibt eine „undokumentierte“ Methode eth_getRawTransactionByHash von JSON-RPC

curl -H "Content-Type: application/json" -X POST --data \
&#39;{"jsonrpc":"2.0","method":"eth_getRawTransactionByHash","params":["<TX_HASH>"],"id":1}&#39; http://localhost:8545
<TX_HASH> - transaction id

1. Suchen Sie die Datei „types.d.ts“ unter web3 unter dem Projekt „node_modules“

Eth

Fügen Sie der Klasse eine Methode hinzu

 getRawTransaction(hash: string, cb?: Callback<TransactionRaw>): Promise<TransactionRaw>

TransactionRaw-Definition hinzufügen

export declare interface TransactionRaw {
 raw: string
}

2. Finden Sie index.js in web3-eth unter Projekt node_modules

methods={}

Methode hinzufügen

new Method({
   name: &#39;getRawTransaction&#39;,
   call: &#39;eth_getRawTransactionByHash&#39;,
   params: 1,
   inputFormatter: [null],
   outputFormatter: formatter.outputTransactionRawFormatter
  }),

3. Finden Sie formatters.js in web3-core -helpers unter Projekt node_modules

AusgabeTransactionRawFormatter hinzufügen und das entsprechende in module.exports hinzufügen

/**
 * Formats the output of a transaction raw value
 *
 * @method outputTransactionRawFormatter
 * @param {Object} tx
 * @returns {Object}
*/
var outputTransactionRawFormatter = function (tx){
 return tx;
};
module.exports = {
 inputDefaultBlockNumberFormatter: inputDefaultBlockNumberFormatter,
 inputBlockNumberFormatter: inputBlockNumberFormatter,
 inputCallFormatter: inputCallFormatter,
 inputTransactionFormatter: inputTransactionFormatter,
 inputAddressFormatter: inputAddressFormatter,
 inputPostFormatter: inputPostFormatter,
 inputLogFormatter: inputLogFormatter,
 inputSignFormatter: inputSignFormatter,
 outputBigNumberFormatter: outputBigNumberFormatter,
 outputTransactionFormatter: outputTransactionFormatter,
 outputTransactionRawFormatter: outputTransactionRawFormatter,
 outputTransactionReceiptFormatter: outputTransactionReceiptFormatter,
 outputBlockFormatter: outputBlockFormatter,
 outputLogFormatter: outputLogFormatter,
 outputPostFormatter: outputPostFormatter,
 outputSyncingFormatter: outputSyncingFormatter
};

Das Obige habe ich für alle zusammengestellt Ich hoffe, es wird in Zukunft für alle hilfreich sein.

Verwandte Artikel:

Beispiele für dynamische Routing-Umleitung und Navigationsschutz von Vue

JS als dynamisch erstellte Elemente implementiert. Ereignisoperation hinzufügen Beispiel

Einführung in die Aufrufsequenz von Funktionen in Vue

Das obige ist der detaillierte Inhalt vonweb3.js fügt die Schritte der Methode eth.getRawTransactionByHash(txhash) hinzu. Für weitere Informationen folgen Sie bitte anderen verwandten Artikeln auf der PHP chinesischen Website!

Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn