plugeth/rpc/api/miner_js.go

68 lines
1.7 KiB
Go
Raw Normal View History

2015-06-08 12:42:15 +00:00
package api
const Miner_JS = `
2015-06-10 07:42:14 +00:00
web3._extend({
2015-06-08 12:42:15 +00:00
property: 'miner',
methods:
[
2015-06-10 07:42:14 +00:00
new web3._extend.Method({
2015-06-08 12:42:15 +00:00
name: 'start',
call: 'miner_start',
params: 1,
2015-06-10 07:42:14 +00:00
inputFormatter: [web3._extend.formatters.formatInputInt],
outputFormatter: web3._extend.formatters.formatOutputBool
2015-06-08 12:42:15 +00:00
}),
2015-06-10 07:42:14 +00:00
new web3._extend.Method({
2015-06-08 12:42:15 +00:00
name: 'stop',
call: 'miner_stop',
params: 1,
2015-06-10 07:42:14 +00:00
inputFormatter: [web3._extend.formatters.formatInputInt],
outputFormatter: web3._extend.formatters.formatOutputBool
2015-06-08 12:42:15 +00:00
}),
2015-06-10 07:42:14 +00:00
new web3._extend.Method({
2015-06-08 12:42:15 +00:00
name: 'setExtra',
call: 'miner_setExtra',
params: 1,
2015-06-10 07:42:14 +00:00
inputFormatter: [web3._extend.utils.formatInputString],
outputFormatter: web3._extend.formatters.formatOutputBool
2015-06-08 12:42:15 +00:00
}),
2015-06-10 07:42:14 +00:00
new web3._extend.Method({
2015-06-08 12:42:15 +00:00
name: 'setGasPrice',
call: 'miner_setGasPrice',
params: 1,
2015-06-10 07:42:14 +00:00
inputFormatter: [web3._extend.utils.formatInputString],
outputFormatter: web3._extend.formatters.formatOutputBool
2015-06-08 12:42:15 +00:00
}),
2015-06-10 07:42:14 +00:00
new web3._extend.Method({
2015-06-08 12:42:15 +00:00
name: 'startAutoDAG',
call: 'miner_startAutoDAG',
params: 0,
inputFormatter: [],
2015-06-10 07:42:14 +00:00
outputFormatter: web3._extend.formatters.formatOutputBool
2015-06-08 12:42:15 +00:00
}),
2015-06-10 07:42:14 +00:00
new web3._extend.Method({
2015-06-08 12:42:15 +00:00
name: 'stopAutoDAG',
call: 'miner_stopAutoDAG',
params: 0,
inputFormatter: [],
2015-06-10 07:42:14 +00:00
outputFormatter: web3._extend.formatters.formatOutputBool
2015-06-08 12:42:15 +00:00
}),
2015-06-10 07:42:14 +00:00
new web3._extend.Method({
2015-06-08 12:42:15 +00:00
name: 'makeDAG',
call: 'miner_makeDAG',
params: 1,
2015-06-10 07:42:14 +00:00
inputFormatter: [web3._extend.formatters.inputDefaultBlockNumberFormatter],
outputFormatter: web3._extend.formatters.formatOutputBool
2015-06-08 12:42:15 +00:00
})
],
properties:
[
2015-06-10 07:42:14 +00:00
new web3._extend.Property({
2015-06-08 12:42:15 +00:00
name: 'hashrate',
getter: 'miner_hashrate',
2015-06-10 07:42:14 +00:00
outputFormatter: web3._extend.utils.toDecimal
2015-06-08 12:42:15 +00:00
})
]
});
2015-06-08 12:50:11 +00:00
`