56 lines
1.2 KiB
Nim
56 lines
1.2 KiB
Nim
# Nimbus
|
|
# Copyright (c) 2018 Status Research & Development GmbH
|
|
# Licensed under either of
|
|
# * Apache License, version 2.0, ([LICENSE-APACHE](LICENSE-APACHE) or
|
|
# http://www.apache.org/licenses/LICENSE-2.0)
|
|
# * MIT license ([LICENSE-MIT](LICENSE-MIT) or
|
|
# http://opensource.org/licenses/MIT)
|
|
# at your option. This file may not be copied, modified, or distributed except
|
|
# according to those terms.
|
|
|
|
import
|
|
./evm/types as vmt
|
|
|
|
export
|
|
vmt.BaseVMState,
|
|
vmt.CallKind,
|
|
vmt.Computation,
|
|
vmt.Error,
|
|
vmt.GasMeter,
|
|
vmt.Message,
|
|
vmt.MsgFlags,
|
|
vmt.TracerFlags,
|
|
vmt.TracerRef,
|
|
vmt.VMFlag,
|
|
vmt.BlockContext,
|
|
vmt.TxContext
|
|
|
|
when defined(evmc_enabled):
|
|
import
|
|
./evm/evmc_api as evmc
|
|
export
|
|
evmc.HostContext,
|
|
evmc.accountExists,
|
|
evmc.call,
|
|
evmc.copyCode,
|
|
evmc.emitLog,
|
|
evmc.getBalance,
|
|
evmc.getBlockHash,
|
|
evmc.getCodeHash,
|
|
evmc.getCodeSize,
|
|
evmc.getStorage,
|
|
evmc.getTxContext,
|
|
evmc.init,
|
|
evmc.nim_create_nimbus_vm,
|
|
evmc.nim_host_create_context,
|
|
evmc.nim_host_destroy_context,
|
|
evmc.nim_host_get_interface,
|
|
evmc.nimbus_host_interface,
|
|
evmc.nimbus_message,
|
|
evmc.nimbus_result,
|
|
evmc.nimbus_tx_context,
|
|
evmc.selfDestruct,
|
|
evmc.setStorage
|
|
|
|
# End
|