Security News
Weekly Downloads Now Available in npm Package Search Results
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.
This Ruby Gem is used to connect and communicate with Ethereum node ( geth, parity, etc), having RPC interface. Also it has support to call Etherscan API.
What you can do using this GEM:
Add this line to your application's Gemfile:
gem 'web3-eth'
And then execute:
$ bundle
Or install it yourself as:
$ gem install web3-eth
Connecting to local node ( or by SSH Tunnel )
web3 = Web3::Eth::Rpc.new
To connect to remote Ethereum node, follow instructions: https://github.com/paritytech/parity/wiki/Wallet-Remote-Access
If you need to connect to remote host, you can specify host, port and HTTP connection options:
web3 = Web3::Eth::Rpc.new host: 'node.host.com',
port: 8545,
connect_options: { use_ssl: true, read_timeout: 120 }
HTTP connection options are from Ruby HTTP plus additional optional property rpc_path - path to RPC interface.
For example, to connect to infura node, you need the following configuration:
web3 = Web3::Eth::Rpc.new host: 'mainnet.infura.io',
port: 443,
connect_options: {
open_timeout: 20,
read_timeout: 140,
use_ssl: true,
rpc_path: '/<YOUR INFURA PERSONAL KEY>'
}
or to connect to Ropsten:
web3 = Web3::Eth::Rpc.new host: 'ropsten.infura.io',
port: 443,
connect_options: {
open_timeout: 20,
read_timeout: 140,
use_ssl: true
}
>> web3.eth.blockNumber
4376369
>> web3.eth.getBalance '0x829BD824B016326A401d083B33D092293333A830'
3916.6597314456685
>> block = web3.eth.getBlockByNumber 4376369
#<Web3::Eth::Block:0x007f844d6f1138 @block_data={"author"=>"0x829bd824b016326a401d083b33d092293333a830", ...
>> block.timestamp_time
2017-10-17 12:51:36 +0300
>> block.transactions.count
129
>> block.transactions[0].from
"0xb2930b35844a230f00e51431acae96fe543a0347"
>> block.transactions[0].value_eth
0.51896811
api = Web3::Eth::Etherscan.new 'Your API Key'
abi = api.contract_getabi address: '0xe3fedaecd47aa8eab6b23227b0ee56f092c967a9'
Method name for Etherscan must be constructed as _, for example contract_getabi calls method getabi in module contract
If method accepts only one parameter address, the call can be simplified to:
abi = api.contract_getabi '0xe3fedaecd47aa8eab6b23227b0ee56f092c967a9'
# creation of contract object
myContract = web3.eth.contract(abi);
# initiate contract for an address
myContractInstance = myContract.at('0x2ad180cbaffbc97237f572148fc1b283b68d8861');
# call constant function
result = myContractInstance.balanceOf('0x...'); # any constant method works
puts result
or using Etherscan API ( requires contract ABI be published in Etherescan ):
api = Web3::Eth::Etherscan.new 'Your API Key'
myContractInstance = web3.eth.load_contract(api, '0x2ad180cbaffbc97237f572148fc1b283b68d8861')
// call constant function
result = myContractInstance.balanceOf('0x....'); # any constant method works
puts result // '0x25434534534'
Method parse_call_args parses call arguments according to ABI. Code example is:
api = Web3::Eth::Etherscan.new 'Your API Key'
abi = api.contract_getabi address: '0x2ad180cbaffbc97237f572148fc1b283b68d8861'
myContract = web3.eth.contract(abi);
tx = web3.eth.getTransactionByHash '0x83da408b05061a2512fe1abf065b37a6aad9ae96d604b288a3da34bf9f1af9e6'
myContract.parse_call_args tx
Method parse_constructor_args parses smart contract creation arguments according to ABI. Code example is:
api = Web3::Eth::Etherscan.new 'Your API Key'
abi = api.contract_getabi address: '0xf4702b0918a8a89dfc38459ce42198834818f26b'
myContract = web3.eth.contract(abi);
tx = web3.eth.getTransactionByHash '0x35f0cf1d1c7ec14dd40fe3949d1c535ec3f3953f118cb9dc1394370f966cf957'
myContract.parse_constructor_args tx
Method parse_log_args parses indexed and not-indexed log event arguments according to ABI. Code example is:
api = Web3::Eth::Etherscan.new 'Your API Key'
abi = api.contract_getabi address: '0x2ad180cbaffbc97237f572148fc1b283b68d8861'
myContract = web3.eth.contract(abi);
tx_receipt = web3.eth.getTransactionReceipt '0x83da408b05061a2512fe1abf065b37a6aad9ae96d604b288a3da34bf9f1af9e6'
myContract.parse_log_args tx_receipt.logs.first
To use this feature, you should run parity node with the option --tracing on, refer to [https://github.com/paritytech/parity/wiki/Configuring-Parity#cli-options].
calls = web3.trace.internalCallsByHash '0x7ac18a1640e443cd069ff51da382b92b585e42dae8f38db0932380bfe86908a6'
puts calls.first.from
puts calls.first.to
puts calls.first.value_eth
After checking out the repo, run bin/setup
to install dependencies. Then, run rake test
to run the tests. You can also run bin/console
for an interactive prompt that will allow you to experiment.
To install this gem onto your local machine, run bundle exec rake install
. To release a new version, update the version number in version.rb
, and then run bundle exec rake release
, which will create a git tag for the version, push git commits and tags, and push the .gem
file to rubygems.org.
Bug reports and pull requests are welcome on GitHub at https://github.com/Bloxy-info/web3-eth. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the Contributor Covenant code of conduct.
The gem is available as open source under the terms of the MIT License.
FAQs
Unknown package
We found that web3-eth demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.
Security News
A Stanford study reveals 9.5% of engineers contribute almost nothing, costing tech $90B annually, with remote work fueling the rise of "ghost engineers."
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.