UNPKG

@polygon-hermez/vm

Version:
12 lines (9 loc) 221 B
import { Address, BN } from 'ethereumjs-util' export default class TxContext { gasPrice: BN origin: Address constructor(gasPrice: BN, origin: Address) { this.gasPrice = gasPrice this.origin = origin } }