Browse Source

Squashed 'libjsqrc/ethereumjs/' changes from ecde334..2a0b46a

2a0b46a gulp

git-subtree-dir: libjsqrc/ethereumjs
git-subtree-split: 2a0b46ab7125533d7cbb461d06821ba242a03304
cl-refactor
Marek Kotewicz 9 years ago
parent
commit
aeb6f95299
  1. 8
      dist/web3-light.js
  2. 4
      dist/web3-light.min.js
  3. 8
      dist/web3.js
  4. 4
      dist/web3.js.map
  5. 4
      dist/web3.min.js

8
dist/web3-light.js

@ -2037,6 +2037,13 @@ var getTransactionCount = new Method({
outputFormatter: utils.toDecimal
});
var sendRawTransaction = new Method({
name: 'sendRawTransaction',
call: 'eth_sendRawTransaction',
params: 1,
inputFormatter: []
});
var sendTransaction = new Method({
name: 'sendTransaction',
call: 'eth_sendTransaction',
@ -2103,6 +2110,7 @@ var methods = [
getTransactionCount,
call,
estimateGas,
sendRawTransaction,
sendTransaction,
compileSolidity,
compileLLL,

4
dist/web3-light.min.js

File diff suppressed because one or more lines are too long

8
dist/web3.js

@ -2037,6 +2037,13 @@ var getTransactionCount = new Method({
outputFormatter: utils.toDecimal
});
var sendRawTransaction = new Method({
name: 'sendRawTransaction',
call: 'eth_sendRawTransaction',
params: 1,
inputFormatter: []
});
var sendTransaction = new Method({
name: 'sendTransaction',
call: 'eth_sendTransaction',
@ -2103,6 +2110,7 @@ var methods = [
getTransactionCount,
call,
estimateGas,
sendRawTransaction,
sendTransaction,
compileSolidity,
compileLLL,

4
dist/web3.js.map

File diff suppressed because one or more lines are too long

4
dist/web3.min.js

File diff suppressed because one or more lines are too long
Loading…
Cancel
Save