UNPKG

crypto-wallet-core

Version:

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

14 lines (12 loc) 278 B
import { ERC20TxProvider } from '../erc20'; import { ETHTxProvider } from '../eth'; export class ARBTxProvider extends ETHTxProvider { constructor() { super('ARB'); } } export class ARBERC20TxProvider extends ERC20TxProvider { constructor() { super('ARB'); } }