UNPKG
@nomiclabs/ethereumjs-vm
Version:
latest (4.2.2)
rc (4.2.2-rc.1)
4.2.2
4.2.2-rc.1
4.2.1
4.2.0
4.1.1
4.1.0
An Ethereum VM implementation
github.com/ethereumjs/ethereumjs-vm
ethereumjs/ethereumjs-vm
@nomiclabs/ethereumjs-vm
/
dist
/
evm
/
txContext.js
10 lines
•
269 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
"use strict"
;
Object
.
defineProperty
(
exports
,
"__esModule"
, {
value
:
true
});
class
TxContext
{
constructor
(
gasPrice, origin
) {
this
.
gasPrice
= gasPrice;
this
.
origin
= origin; } }
exports
.
default
=
TxContext
;
//# sourceMappingURL=txContext.js.map