Skip to content

titan-suite/core

Repository files navigation

Core

A small Web3 wrapper for Dapps

 // with yarn
 yarn add @titan-suite/core
 // with npm
 npm install @titan-suite/core

Checkout Available methods

Aion specefic methods

Ethereum specefic methods

Example Usage:

  import { Aion } from '@titan-suite/core'
  
  //instantiate
  const aion = new Aion("provider url")
  
  // get Accounts
  const accounts = await aion.getAccounts()
  
  // get TxReceipt
  const receipt = await aion.getTxReceipt("txhash")

View More