Как исправить ошибку «TypeError: EthereumTransaction не является конструктором»? - PullRequest
0 голосов
/ 05 августа 2020

Как исправить ошибку этого типа? Это код для совершения транзакции, и также добавляется ошибка, полученная в терминале.

var transaction = new EthereumTransaction(rawTransaction)

^TypeError: EthereumTransaction is not a constructor

Вот мой код:

   var privateKeySender = '*************************************'
   var privateKeySenderHex = new Buffer(privateKeySender, 'hex')
   var transaction = new EthereumTransaction(rawTransaction)
   transaction.sign(privateKeySenderHex)


   $ node index.js
   C:\Users\asus\Desktop\projectFolder\index.js:43
   var transaction = new EthereumTransaction(rawTransaction)
                  ^
     TypeError: EthereumTransaction is not a constructor
     at Object.<anonymous> (C:\Users\asus\Desktop\projectFolder\index.js:43:19)
     at Module._compile (internal/modules/cjs/loader.js:778:30)
     at Object.Module._extensions..js (internal/modules/cjs/loader.js:789:10)
     at Module.load (internal/modules/cjs/loader.js:653:32)
     at tryModuleLoad (internal/modules/cjs/loader.js:593:12)
     at Function.Module._load (internal/modules/cjs/loader.js:585:3)
     at Function.Module.runMain (internal/modules/cjs/loader.js:831:12)
     at startup (internal/bootstrap/node.js:283:19)
     at bootstrapNodeJSCore (internal/bootstrap/node.js:623:3)
...