project screenshot 1
project screenshot 2
project screenshot 3

ShareMyRPC

Running a node is expensive, earn money by sharing your RPC interface and decentralize Infura

ShareMyRPC

Created At

ETHOnline

Project Description

Ethereum has a specification of the RPC interface that most clients implement. It contains functions like EstimateGas, PendingNonce or SendTransaction. Currently most Dapps rely on infura for their JSON-RPC calls. This is in part because running a JSON-RPC server is costly. ShareMyRPC enables Dapps to pay for their RPC usage over a payment channel and Node owners to serve responses if they received money for it. If the user did not pay for their request, the request is not fulfilled. This allows node owners to monetize their nodes and provides an incentive to run an ethereum node. The payments are send over a Raiden payment channel in order not to clutter the Ethereum blockchain with a lot of small payments.

How it's Made

I implemented a drop-in replacement for ethclient. Ethclient is part of go-ethereum and the de-facto standard way to connect to a nodes JSON-RPC interface in golang. My node automatically sends a payment with every RPC call with an amount depending on the work the node has to do to answer it. E.g. setting up filters or subscribing to events is more costly than retrieving the ChainID or estimating gas for a transaction. This client can be used by every Dapp that currently uses ethclient to add an incentivization layer for the nodes.

The second notable hack is a library that allows users to easily use a Raiden node in golang. It abstracts interaction with the REST-API of Raiden away from the user and makes it super easy to use Raiden in golang projects.

Additionally I changed go-ethereum's JSON-RPC server so that it waits for a confirmed payment on every json request. Which means if someone sends a json request but does not send a Raiden payment, the request will not be executed.

Lastly I've written a little demo app to demonstrate the capabilities of the ethclient replacement, the raiden library and the raiden-enabled RPC-server which executes some calls and pays for them and also sends some calls without paying to test if the RPC-server correctly discards them.

background image mobile

Join the mailing list

Get the latest news and updates