UNPKG

@bcpros/crypto-wallet-core

Version:

A multi-currency support library for address derivation, private key creation, and transaction creation

14 lines (12 loc) 286 B
import { ERC20TxProvider } from '../erc20'; import { ETHTxProvider } from '../eth'; export class MATICTxProvider extends ETHTxProvider { constructor() { super('MATIC'); } } export class MATICERC20TxProvider extends ERC20TxProvider { constructor() { super('MATIC'); } }