Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/cryptape/ruby-ethereum
A Ruby implementation of Ethereum.
https://github.com/cryptape/ruby-ethereum
blockchain ethereum evm ruby
Last synced: 3 months ago
JSON representation
A Ruby implementation of Ethereum.
- Host: GitHub
- URL: https://github.com/cryptape/ruby-ethereum
- Owner: cryptape
- License: mit
- Archived: true
- Created: 2016-02-05T08:32:06.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2018-03-17T01:31:12.000Z (over 6 years ago)
- Last Synced: 2024-07-23T14:44:41.660Z (4 months ago)
- Topics: blockchain, ethereum, evm, ruby
- Language: Ruby
- Homepage:
- Size: 758 KB
- Stars: 267
- Watchers: 62
- Forks: 58
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-ethereum-virtual-machine - ruby-ethereum
README
# ruby-ethereum
[![Join the chat at https://gitter.im/janx/ruby-ethereum](https://badges.gitter.im/janx/ruby-ethereum.svg)](https://gitter.im/janx/ruby-ethereum?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
A Ruby implementation of [Ethereum](https://ethereum.org).
## Install Secp256k1
https://github.com/cryptape/ruby-bitcoin-secp256k1
## Caveats
### Increase Ruby Stack Size Limit
Or some tests will fail because the default stack size cannot hold a maximum (1024) levels
deep VM stack.Set `RUBY_THREAD_VM_STACK_SIZE` in your shell/environment:
```
export RUBY_THREAD_VM_STACK_SIZE=104857600 # 100M, 100 times default
```## License
[MIT License](LICENSE)
## TODO
* optimize memory foot print
* add pruning trie
* refactor abi types
* refactor trie node types
* review `db.commit_refcount_changes` usage