3 Usage Patterns
Ivan Tomilov edited this page 2017-09-21 16:33:51 +03:00
This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

Usage Patterns

status-go has a number of customisations for go-ethereum and many of them are usually not obvious. Nor what status-react is present in human-readable form.

This page serves as a place with a collection of random facts about how status-react uses status-go. This should be revised and structured and currently just a quick start.

How status-react calls status-go?

  1. React Native, which is used for running app itself, this env can call web3 through CallRPC and we have a full control over code inside this env
  2. webviews: among other things Status is dapp browser, so users can run dapps in the webview and we inject web3 object into webview in order to make this happen. We dont have control over code inside this env, its third party. All calls to web3 inside webview are passed to CallRPC as well
  3. jail (otto vm): we are using this env in order to allow third party to define commands and different bots behaviour in chat. Calls to web3 are handled internally on go side, so we dont use CallRPC at least from status-react side here. Ans again, code is written by third parties, except our own bots
  4. JNI signals: https://github.com/status-im/status-go/wiki/Notes-on-Bindings

What are Send and SendAsync?

The source:

Consumer->Go Bindings: Call
Go Bindings->statusAPI: JailCall
statusAPI->Jail: Call
Jail->JailCell: Call
note right of JailCell: cell.Lock()
JailCell->Otto: Call
Otto->+web3: eth_whateverWithoutCallback
web3->jail: Send
note left of jail: cell.Unlock()
note over jail: RPC calls and VM interactions
note left of jail: cell.Lock()
web3-->-Otto: result
note right of JailCell: cell.Unlock()

Consumer->Go Bindings: Call
Go Bindings->statusAPI: JailCall
statusAPI->Jail: Call
Jail->JailCell: Call
note right of JailCell: cell.Lock()
JailCell->Otto: Call
Otto->+web3: eth_whateverWithCallback
web3->jail: SendAsync
web3-->-Otto: otto.UndefinedValue()
note right of JailCell: cell.Unlock()
note over jail: RPC calls and VM interactions

Send Transaction Flow

When the (async) handler of /send command is executed, the callback doesnt return till the transaction queue is committed (confirmed), but immediately we got confirmation from jail about transaction being added (“transaction.queued” event).

Also, some insights can be found in https://github.com/status-im/status-go/wiki/Notes-on-Bindings