crypto-wallet-core
Version:
A multi-currency support library for address derivation, private key creation, and transaction creation
14 lines (12 loc) • 300 B
text/typescript
import { ERC20TxProvider } from '../erc20';
import { ETHTxProvider } from '../eth';
export class OPTxProvider extends ETHTxProvider {
constructor(chain = 'OP') {
super(chain);
}
}
export class OPERC20TxProvider extends ERC20TxProvider {
constructor(chain = 'OP') {
super(chain);
}
}