1.0.5 • Published 10 months ago

@ecoblocklabs/ecojs v1.0.5

Weekly downloads
-
License
Apache-2.0
Repository
github
Last release
10 months ago

EcoBlock Javascript SDK

EcoBlock Javascript SDK or EcoJs is a typescript library for client-side interactions with EcoBlock. It provides common helper functionality as well as access to the underlying smart contract interfaces.

Below is an overview of the EcoJs functionality.

Quickstart Recipes

  • Deposit Ether Into EcoBlock
import { getL2Network, EthBridger } from '@ecoblocklabs/ecojs'

const l2Network = await getL2Network(
  l2ChainID /** <-- chain id of target EcoBlock chain */
)
const ethBridger = new EthBridger(l2Network)

const ethDepositTxResponse = await ethBridger.deposit({
  amount: utils.parseEther('23'),
  l1Signer: l1Signer /** <-- connected ethers-js Wallet */,
  l2Provider: l2Provider /** <--- ethers-js Provider */,
})

const ethDepositTxReceipt = await ethDepositTxResponse.wait()

/** check ethDepositTxReceipt.status  */
  • Redeem an L1 to L2 Message
import { L1TransactionReceipt, L1ToL2MessageStatus } from '@ecoblocklabs/ecojs'

const l1TxnReceipt = new L1TransactionReceipt(
  txnReceipt /** <-- ethers-js TransactionReceipt of an ethereum tx that triggered an L1 to L2 message (say depositting a token via a bridge)  */
)

const l1ToL2Message = (
  await l1TxnReceipt.getL1ToL2Messages(
    l2Signer /** <-- connected ethers-js Wallet */
  )
)[0]

const res = await l1ToL2Message.waitForStatus()

if (res.status === L1ToL2MessageStatus.FUNDS_DEPOSITED_ON_L2) {
  /** Message wasn't auto-redeemed; redeem it now: */
  const response = await l1ToL2Message.redeem()
  const receipt = await response.wait()
} else if (res.status === L1ToL2MessageStatus.REDEEMED) {
  /** Message succesfully redeeemed */
}
  • Check if sequencer has included a transaction in L1 data
import { L2TransactionReceipt } from '@ecoblocklabs/ecojs'

const l2TxnReceipt = new L2TransactionReceipt(
  txnReceipt /** <-- ethers-js TransactionReceipt of an EcoBlock tx */
)

/** Wait 3 minutes: */
await new Promise(resolve => setTimeout(resolve, 1000 * 60 * 3000))

// if dataIsOnL1, sequencer has posted it and it inherits full rollup/L1 security
const dataIsOnL1 = await l2TxnReceipt.isDataAvailable(l2Provider, l1Provider)

Bridging assets

EcoJs can be used to bridge assets to/from the rollup chain. The following asset bridges are currently available:

  • EthBridger
  • Erc20Bridger

All asset bridges have the following methods:

  • deposit - moves assets from the L1 to the L2
  • depositEstimateGas - estimates the gas required to do the deposit
  • withdraw - moves assets from the L2 to the L1
  • withdrawEstimateGas - estimate the gas required to do the withdrawal Which accept different parameters depending on the asset bridger type

Cross chain messages

When assets are moved by the L1 and L2 cross chain messages are sent. The lifecycles of these messages are encapsulated in the classes L1ToL2Message and L2ToL1Message. These objects are commonly created from the receipts of transactions that send cross chain messages. A cross chain message will eventually result in a transaction being executed on the destination chain, and these message classes provide the ability to wait for that finalizing transaction to occur.

Networks

EcoJs comes pre-configured for Ethereum Mainnet and Sepolia Testnet, and their EcoBlock counterparts. However, the networks functionality can be used to register networks for custom EcoBlock instances. Most of the classes in EcoJs depend on network objects so this must be configured before using other EcoJs functionality.

Inbox tools

As part of normal operation the EcoBlock sequencer will messages into the rollup chain. However, if the sequencer is unavailable and not posting batches, the inbox tools can be used to force the inclusion of transactions into the rollup chain.

Utils

  • EventFetcher - A utility to provide typing for the fetching of events
  • MultiCaller - A utility for executing multiple calls as part of a single RPC request. This can be useful for reducing round trips.
  • constants - A list of useful EcoBlock related constants

Run Integration tests

  1. First, make sure you have a Nitro node running. Check out the nitro repo, and run the following command ./test-node.bash --init --no-blockscout

  2. After the node has started up (that could take upto 20-30 mins), run yarn gen:network.

  3. Once done, finally run yarn test:integration to run the integration tests.

Defaults to EcoBlock Sepoia, for custom network use --network flag.

EcoBlock Sepolia expects env var ARB_KEY to be prefunded with at least 0.02 ETH, and env var INFURA_KEY to be set. (see integration_test/config.ts)

Bridge A Standard Token

Bridging new a token to L2 (i.e., deploying a new token contract) through the standard gateway is done by simply depositing a token that hasn't yet been bridged. This repo includes a script to trigger this initial deposit/deployment:

  1. clone ecojs repository

  2. yarn install (from root)

  3. Set PRIVKEY environmental variable (you can use .env) to the key of the account from which you'll be deploying (account should have some balance of the token you're bridging).

  4. Set L1_MAINNET_RPC_URL environmental variable to L1 RPC endpoint (i.e., https://mainnet.infura.io/v3/my-infura-key)

  5. yarn bridgeStandardToken

Required CL params: networkID:number — Chain ID of L2 network l1TokenAddress:string — address of L1 token to be bridged

Ex: yarn bridgeStandardToken --networkID 421611 --l1TokenAddress 0xdf032bc4b9dc2782bb09352007d4c57b75160b15 --amount 3

1.0.5

10 months ago

1.0.4

10 months ago

1.0.3

11 months ago

1.0.2

11 months ago

1.0.1

12 months ago

1.0.0

12 months ago