Skip to content

SubBridge Javascript SDK for make and query crosschain transactions

License

Notifications You must be signed in to change notification settings

Phala-Network/subbridge.js

Folders and files

NameName
Last commit message
Last commit date

Latest commit

6ae2a71 · Aug 24, 2022

History

49 Commits
Aug 5, 2022
Aug 23, 2022
Aug 23, 2022
Aug 23, 2022
Aug 5, 2022
Aug 5, 2022
Aug 5, 2022
Aug 5, 2022
Aug 8, 2022
Aug 23, 2022
Aug 8, 2022
Aug 5, 2022
Aug 5, 2022
Aug 8, 2022

Repository files navigation

subbridge.js - SubBridge JavaScript SDK

❗️Work in progress, DO NOT USE❗️

Getting started

Install

  • Install by yarn,

    yarn add subbridge.js
  • Or use prebuilt target dist/subbridge.min.js in browser,

  • Or build from source code,

    yarn build

Usage

  • Issue crosschain transaction with Transaction

  • Query crosschain transaction history with Indexer

      const {Indexer} = require('subbridge.js')
      const {Keyring} = require('@polkadot/api')
    
      const account = keyring.addFromUri('//Alice')
      const paraIndexer = new Indexer.ParaIndexer(
        // Account public key
        '0x7804e66ec9eea3d8daf6273ffbe0a8af25a8879cf43f14d0ebbb30941f578242',
        // Name of parachain network
        'thala'
      )
      // Query all sending history issued from Khala network
      const history = await paraIndexer.sendingHistory()
    
      // You should then get the history list from our indexing service

    Head to example folder see more usage. Run examples by executing yarn build and node example/<script name>.

API

Head to APIs see all the API list currently supported.

About

SubBridge Javascript SDK for make and query crosschain transactions

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published