laravel-ethereum软件包的eth_sendtransaction错误

时间:2018-09-13 08:49:57

标签: laravel transactions ethereum

我将jcsoft的laravel-ethereum软件包用于json-rpc命令。 (github link

我的代码是:

$params=array(
    'from'      =>'0x410a0cbc08011d65b4ab11b2199534e86a1131fa',
    'to'        =>'0xabe713314023f63b690c02737f079fb0f74a1741',
    "gas"       => "0x76c0", // 30400
    "gasPrice"  => "0x9184e72a000", // 10000000000000
    'value'     =>'0x9184e72a',
    'data'      =>'0xd46e8dd67c5d32be8d46e8dd67c5d32be8058bb8eb970870f072445675058bb8eb970870f072445675'
);
Ethereum::eth_sendTransaction($params);

我收到这样的错误消息:

Class 'Jcsofts\LaravelEthereum\Lib\ErrorException' not found
throw new ErrorException('Transaction object expected');

我在做什么错?

0 个答案:

没有答案