Answer by q9f for Ethereum and Rails Tutorials
I have published an Ethereum on Rails template on Github.It is a boilerplate application that allows authenticating users in your Rails 7.0 application with an Ethereum wallet (e.g., MetaMask).You can...
View ArticleAnswer by JZ. for Ethereum and Rails Tutorials
https://github.com/fogonthedowns/blupee is a simple Ruby interface for working with the Ethereum Blockchain:new wallet:ether_wallet = Blupee::API::Ether.new_wallet('[hidden]')wallet...
View ArticleAnswer by Marek Kirejczyk for Ethereum and Rails Tutorials
You can check also ethereum.rb. It is more recent ruby gem, supporting parity 1.5+ and solidity compiler. It comes with: video introduction to smart contractsstep by step usage guide in readme
View ArticleAnswer by Steve Ellis for Ethereum and Rails Tutorials
There is also the ethereum-tx gem. It is intended for keeping the signing and building of transactions separate from the full node. You could host your full node on the same server, but you don't need...
View ArticleAnswer by arodriguezdonaire for Ethereum and Rails Tutorials
You can find so many tools for using ruby to access the Ethereum Blockchain.You have for example (like 5chdn♦ said in a comment):ethereum-ruby made by DigixGlobal.ruby-ethereum made by...
View ArticleEthereum and Rails Tutorials
I am looking for some kind of walk through or tutorial about how to use ethereum with an ruby on rails application?Is there anything out there?
View Article