Abstract Blockchain
This package is part of IQ Protocol JS SDK.
:exclamation: The package is in development and breaking changes should be expected. Use at your own risk! |
---|
The main purpose of this package is to provide BlockchainProvider
interface.
The interface implementation will cover all the necessary functions to work with IQ Protocol smart contracts.
An example of such implementation can be EIP155BlockchainProvider
provided as a part of IQ Protocol JS SDK.
Use this package when you want to implement a new blockchain provider.
Installation
yarn add @iqprotocol/abstract-blockchain
Usage
import { BlockchainProvider } from '@iqprotocol/abstract-blockchain';
class CustomBlockchainProvider implements BlockchainProvider {
}