upgrade web3.js with _extend support

pull/1239/head
Bas van Kervel 10 years ago committed by Bas van Kervel
parent cc9ae39933
commit 5f8e5a4875
  1. 2901
      jsre/ethereum_js.go
  2. 38
      rpc/api/admin_js.go
  3. 30
      rpc/api/debug_js.go
  4. 48
      rpc/api/miner_js.go
  5. 26
      rpc/api/net_js.go
  6. 16
      rpc/api/personal_js.go

File diff suppressed because it is too large Load Diff

@ -1,66 +1,66 @@
package api package api
const Admin_JS = ` const Admin_JS = `
web3.extend({ web3._extend({
property: 'admin', property: 'admin',
methods: methods:
[ [
new web3.extend.Method({ new web3._extend.Method({
name: 'addPeer', name: 'addPeer',
call: 'admin_addPeer', call: 'admin_addPeer',
params: 1, params: 1,
inputFormatter: [web3.extend.utils.formatInputString], inputFormatter: [web3._extend.utils.formatInputString],
outputFormatter: web3.extend.formatters.formatOutputBool outputFormatter: web3._extend.formatters.formatOutputBool
}), }),
new web3.extend.Method({ new web3._extend.Method({
name: 'peers', name: 'peers',
call: 'admin_peers', call: 'admin_peers',
params: 0, params: 0,
inputFormatter: [], inputFormatter: [],
outputFormatter: function(obj) { return obj; } outputFormatter: function(obj) { return obj; }
}), }),
new web3.extend.Method({ new web3._extend.Method({
name: 'exportChain', name: 'exportChain',
call: 'admin_exportChain', call: 'admin_exportChain',
params: 1, params: 1,
inputFormatter: [web3.extend.utils.formatInputString], inputFormatter: [web3._extend.utils.formatInputString],
outputFormatter: function(obj) { return obj; } outputFormatter: function(obj) { return obj; }
}), }),
new web3.extend.Method({ new web3._extend.Method({
name: 'importChain', name: 'importChain',
call: 'admin_importChain', call: 'admin_importChain',
params: 1, params: 1,
inputFormatter: [web3.extend.utils.formatInputString], inputFormatter: [web3._extend.utils.formatInputString],
outputFormatter: function(obj) { return obj; } outputFormatter: function(obj) { return obj; }
}), }),
new web3.extend.Method({ new web3._extend.Method({
name: 'verbosity', name: 'verbosity',
call: 'admin_verbosity', call: 'admin_verbosity',
params: 1, params: 1,
inputFormatter: [web3.extend.utils.formatInputInt], inputFormatter: [web3._extend.utils.formatInputInt],
outputFormatter: web3.extend.formatters.formatOutputBool outputFormatter: web3._extend.formatters.formatOutputBool
}), }),
new web3.extend.Method({ new web3._extend.Method({
name: 'syncStatus', name: 'syncStatus',
call: 'admin_syncStatus', call: 'admin_syncStatus',
params: 1, params: 1,
inputFormatter: [web3.extend.utils.formatInputInt], inputFormatter: [web3._extend.utils.formatInputInt],
outputFormatter: function(obj) { return obj; } outputFormatter: function(obj) { return obj; }
}), }),
new web3.extend.Method({ new web3._extend.Method({
name: 'setSolc', name: 'setSolc',
call: 'admin_setSolc', call: 'admin_setSolc',
params: 1, params: 1,
inputFormatter: [web3.extend.utils.formatInputString], inputFormatter: [web3._extend.utils.formatInputString],
outputFormatter: web3.extend.formatters.formatOutputString outputFormatter: web3._extend.formatters.formatOutputString
}) })
], ],
properties: properties:
[ [
new web3.extend.Property({ new web3._extend.Property({
name: 'nodeInfo', name: 'nodeInfo',
getter: 'admin_nodeInfo', getter: 'admin_nodeInfo',
outputFormatter: web3.extend.formatters.formatOutputString outputFormatter: web3._extend.formatters.formatOutputString
}) })
] ]
}); });

@ -1,44 +1,44 @@
package api package api
const Debug_JS = ` const Debug_JS = `
web3.extend({ web3._extend({
property: 'debug', property: 'debug',
methods: methods:
[ [
new web3.extend.Method({ new web3._extend.Method({
name: 'printBlock', name: 'printBlock',
call: 'debug_printBlock', call: 'debug_printBlock',
params: 1, params: 1,
inputFormatter: [web3.extend.formatters.formatInputInt], inputFormatter: [web3._extend.formatters.formatInputInt],
outputFormatter: web3.extend.formatters.formatOutputString outputFormatter: web3._extend.formatters.formatOutputString
}), }),
new web3.extend.Method({ new web3._extend.Method({
name: 'getBlockRlp', name: 'getBlockRlp',
call: 'debug_getBlockRlp', call: 'debug_getBlockRlp',
params: 1, params: 1,
inputFormatter: [web3.extend.formatters.formatInputInt], inputFormatter: [web3._extend.formatters.formatInputInt],
outputFormatter: web3.extend.formatters.formatOutputString outputFormatter: web3._extend.formatters.formatOutputString
}), }),
new web3.extend.Method({ new web3._extend.Method({
name: 'setHead', name: 'setHead',
call: 'debug_setHead', call: 'debug_setHead',
params: 1, params: 1,
inputFormatter: [web3.extend.formatters.formatInputInt], inputFormatter: [web3._extend.formatters.formatInputInt],
outputFormatter: web3.extend.formatters.formatOutputBool outputFormatter: web3._extend.formatters.formatOutputBool
}), }),
new web3.extend.Method({ new web3._extend.Method({
name: 'processBlock', name: 'processBlock',
call: 'debug_processBlock', call: 'debug_processBlock',
params: 1, params: 1,
inputFormatter: [web3.extend.formatters.formatInputInt], inputFormatter: [web3._extend.formatters.formatInputInt],
outputFormatter: function(obj) { return obj; } outputFormatter: function(obj) { return obj; }
}), }),
new web3.extend.Method({ new web3._extend.Method({
name: 'seedHash', name: 'seedHash',
call: 'debug_seedHash', call: 'debug_seedHash',
params: 1, params: 1,
inputFormatter: [web3.extend.formatters.formatInputInt], inputFormatter: [web3._extend.formatters.formatInputInt],
outputFormatter: web3.extend.formatters.formatOutputString outputFormatter: web3._extend.formatters.formatOutputString
}) })
], ],
properties: properties:

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

@ -1,32 +1,32 @@
package api package api
const Net_JS = ` const Net_JS = `
web3.extend({ web3._extend({
property: 'network', property: 'network',
methods: methods:
[ [
new web3.extend.Method({ new web3._extend.Method({
name: 'addPeer', name: 'addPeer',
call: 'net_addPeer', call: 'net_addPeer',
params: 1, params: 1,
inputFormatter: [web3.extend.utils.formatInputString], inputFormatter: [web3._extend.utils.formatInputString],
outputFormatter: web3.extend.formatters.formatOutputBool outputFormatter: web3._extend.formatters.formatOutputBool
}), }),
new web3.extend.Method({ new web3._extend.Method({
name: 'id', name: 'id',
call: 'net_id', call: 'net_id',
params: 0, params: 0,
inputFormatter: [], inputFormatter: [],
outputFormatter: web3.extend.formatters.formatOutputString outputFormatter: web3._extend.formatters.formatOutputString
}), }),
new web3.extend.Method({ new web3._extend.Method({
name: 'getPeerCount', name: 'getPeerCount',
call: 'net_peerCount', call: 'net_peerCount',
params: 0, params: 0,
inputFormatter: [], inputFormatter: [],
outputFormatter: web3.extend.formatters.formatOutputString outputFormatter: web3._extend.formatters.formatOutputString
}), }),
new web3.extend.Method({ new web3._extend.Method({
name: 'peers', name: 'peers',
call: 'net_peers', call: 'net_peers',
params: 0, params: 0,
@ -36,15 +36,15 @@ web3.extend({
], ],
properties: properties:
[ [
new web3.extend.Property({ new web3._extend.Property({
name: 'listening', name: 'listening',
getter: 'net_listening', getter: 'net_listening',
outputFormatter: web3.extend.formatters.formatOutputBool outputFormatter: web3._extend.formatters.formatOutputBool
}), }),
new web3.extend.Property({ new web3._extend.Property({
name: 'peerCount', name: 'peerCount',
getter: 'net_peerCount', getter: 'net_peerCount',
outputFormatter: web3.extend.utils.toDecimal outputFormatter: web3._extend.utils.toDecimal
}) })
] ]
}); });

@ -1,30 +1,30 @@
package api package api
const Personal_JS = ` const Personal_JS = `
web3.extend({ web3._extend({
property: 'personal', property: 'personal',
methods: methods:
[ [
new web3.extend.Method({ new web3._extend.Method({
name: 'listAccounts', name: 'listAccounts',
call: 'personal_listAccounts', call: 'personal_listAccounts',
params: 0, params: 0,
inputFormatter: [], inputFormatter: [],
outputFormatter: function(obj) { return obj; } outputFormatter: function(obj) { return obj; }
}), }),
new web3.extend.Method({ new web3._extend.Method({
name: 'newAccount', name: 'newAccount',
call: 'personal_newAccount', call: 'personal_newAccount',
params: 1, params: 1,
inputFormatter: [web3.extend.formatters.formatInputString], inputFormatter: [web3._extend.formatters.formatInputString],
outputFormatter: web3.extend.formatters.formatOutputString outputFormatter: web3._extend.formatters.formatOutputString
}), }),
new web3.extend.Method({ new web3._extend.Method({
name: 'unlockAccount', name: 'unlockAccount',
call: 'personal_unlockAccount', call: 'personal_unlockAccount',
params: 3, params: 3,
inputFormatter: [web3.extend.formatters.formatInputString,web3.extend.formatters.formatInputString,web3.extend.formatters.formatInputInt], inputFormatter: [web3._extend.formatters.formatInputString,web3._extend.formatters.formatInputString,web3._extend.formatters.formatInputInt],
outputFormatter: web3.extend.formatters.formatOutputBool outputFormatter: web3._extend.formatters.formatOutputBool
}) })
], ],
properties: properties:

Loading…
Cancel
Save