Official Go implementation of the Ethereum protocol
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
go-ethereum/rpc/api/miner_js.go

68 lines
1.4 KiB

9 years ago
package api
const Miner_JS = `
web3._extend({
9 years ago
property: 'miner',
methods:
[
new web3._extend.Method({
9 years ago
name: 'start',
call: 'miner_start',
params: 1,
inputFormatter: [null]
9 years ago
}),
new web3._extend.Method({
9 years ago
name: 'stop',
call: 'miner_stop',
params: 1,
inputFormatter: [null]
9 years ago
}),
new web3._extend.Method({
name: 'setEtherbase',
call: 'miner_setEtherbase',
params: 1,
inputFormatter: [web3._extend.formatters.formatInputInt],
outputFormatter: web3._extend.formatters.formatOutputBool
}),
new web3._extend.Method({
9 years ago
name: 'setExtra',
call: 'miner_setExtra',
params: 1,
inputFormatter: [null]
9 years ago
}),
new web3._extend.Method({
9 years ago
name: 'setGasPrice',
call: 'miner_setGasPrice',
params: 1,
inputFormatter: [web3._extend.utils.fromDecial]
9 years ago
}),
new web3._extend.Method({
9 years ago
name: 'startAutoDAG',
call: 'miner_startAutoDAG',
params: 0,
inputFormatter: []
9 years ago
}),
new web3._extend.Method({
9 years ago
name: 'stopAutoDAG',
call: 'miner_stopAutoDAG',
params: 0,
inputFormatter: []
9 years ago
}),
new web3._extend.Method({
9 years ago
name: 'makeDAG',
call: 'miner_makeDAG',
params: 1,
inputFormatter: [web3._extend.formatters.inputDefaultBlockNumberFormatter]
9 years ago
})
],
properties:
[
new web3._extend.Property({
9 years ago
name: 'hashrate',
getter: 'miner_hashrate',
outputFormatter: web3._extend.utils.toDecimal
9 years ago
})
]
});
9 years ago
`