@ripzery/omg-js-react-native v3.0.8-0.4.5
OMG-JS
This is a Javascript library that allows you to interact with OmiseGo's MoreVP implementation of Plasma. It provides functions to:
- Deposit (Eth/Token) from the Root chain into the Child chain.
- Transact on the Child chain.
- Exit from the Child chain back to the Root chain.
- Challenge an invalid exit.
Compatibility
omg-js
follows a modified semver with the first part referring to its own library versioning and the second part referring to its compatible elixir-omg
version.
Getting Started
The project is organized into 3 submodules:
- @omisego/omg-js-rootchain
- @omisego/omg-js-childchain
- @omisego/omg-js-util
You can use any of them separately, or all at once by importing the parent @omisego/omg-js
package.
Installation
Node
Requires Node >= 8.11.3 < 13.0.0
npm install @omisego/omg-js
Browser
You can add omg-js
to a website quickly. Just add this script tag.
<script src="https://unpkg.com/@omisego/browser-omg-js"></script>
React Native
omg-js
can easily be integrated with React Native projects.
First, add this postinstall script to your project's package.json
"scripts": {
"postinstall": "omgjs-nodeify"
}
Then install the react native compatible library.
npm install @omisego/react-native-omg-js
API Documentation
Design Documentation
Sending a transaction
How to sign a transaction
Examples
Prerequisites
Both Alice's and Bob's Ethereum accounts need to have some ETH in them. The ETH is used for gas costs on the rootchain, fees on the childchain and the actual ETH transferred from Alice to Bob. If you want to run the ERC20 examples, at least Alice's account will need an ERC20 balance to be able to deposit and transact on the childchain.
Running the Examples
You can find example code inside examples
folder.
To run the examples:
npm install
from root ofomg-js
.- Step inside the
/examples
directory. - Run
npm install
. Create
.env
file inside the root of the/examples
directory with the appropriate values (see/examples/env.example
for an example)Refer to below explanation of
.env
variables
ETH_NODE= <entry point to an ethereum node>
WATCHER_URL= <url of an informational watcher>
WATCHER_PROXY_URL= <*optional* proxy server to catch all watcher requests>
PLASMAFRAMEWORK_CONTRACT_ADDRESS= <address of the plasma_framework contract>
ERC20_CONTRACT_ADDRESS= <*optional* address of the erc20 contract that Alice will deposit and transfer to Bob>
ALICE_ETH_ADDRESS= <address of Alice's account>
ALICE_ETH_ADDRESS_PRIVATE_KEY= <Alice's private key>
ALICE_ETH_DEPOSIT_AMOUNT= <ETH amount Alice will deposit into the childchain>
ALICE_ERC20_DEPOSIT_AMOUNT= <ERC20 amount Alice will deposit into the childchain>
ALICE_ETH_TRANSFER_AMOUNT= <ETH amount Alice will transfer to Bob>
ALICE_ERC20_TRANSFER_AMOUNT= <ERC20 amount Alice will transfer to Bob>
BOB_ETH_ADDRESS= <address of Bob's account>
BOB_ETH_ADDRESS_PRIVATE_KEY= <Bob's private key>
MILLIS_TO_WAIT_FOR_NEXT_BLOCK= <interval when checking for block confirmation>
BLOCKS_TO_WAIT_FOR_TXN= <amount of blocks to wait for confirmation>
Let's run through a story between Alice and Bob. In this story, Alice will first deposit some ETH from the root chain into the child chain. Then Alice will transfer some of that ETH to Bob on the child chain. Bob will then exit his funds from the child chain back into the root chain. His root chain balance will be reflected with the extra ETH that Alice sent to him on the child chain.
Helpful Scripts
From the /examples
folder run the following scripts:
Get Alice's and Bob's balances
npm run balances
Get Alice's and Bob's Childchain UTXOs
npm run childchain-utxos
ETH Examples
Deposit some ETH from Alice's Rootchain to the Childchain
npm run childchain-deposit-eth
Send some ETH from Alice's Childchain to Bob's Childchain
npm run childchain-transaction-eth
Alice has now sent some ETH to Bob. This should be reflected in Bob's childchain balance.
Exit one of Bob's Childchain UTXOs to the Rootchain
npm run childchain-exit-eth
Checking Bob's final rootchain balance you will notice it will be a little less than expected. This is because of rootchain gas costs Bob had to pay to exit the childchain.
Bob starts and piggyback's an inflight exit for his ouput on a transaction sent by Alice
npm run childchain-inflight-exit-eth
ERC20 Examples
Before we begin, we need to deploy and mint some ERC20 tokens.
npm run deploy-test-erc20 --prefix ../packages/integration-tests
Use the ERC20 contract address from the output above to configure ERC20_CONTRACT_ADDRESS
in your .env
file.
Now let's run through the same story above but for ERC20 deposit/transaction/exit.
Deposit some ERC20 from Alice's Rootchain to the Childchain
npm run childchain-deposit-erc20
Send some ERC20 from Alice's Childchain to Bob's Childchain
npm run childchain-transaction-erc20
Exit one of Bob's Childchain ERC20 UTXOs to the Rootchain
npm run childchain-exit-erc20
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago