mirror of
https://github.com/luxfi/node.git
synced 2026-07-27 03:39:39 +00:00
19 lines
450 B
Go
19 lines
450 B
Go
// Copyright (C) 2019-2025, Lux Industries Inc. All rights reserved.
|
|
// See the file LICENSE for licensing terms.
|
|
|
|
package tests
|
|
|
|
// Ethereum denomination constants
|
|
// These are standard Ethereum units used across the ecosystem
|
|
const (
|
|
Wei = 1
|
|
GWei = 1_000_000_000 // 1e9 Wei
|
|
Ether = 1_000_000_000_000_000_000 // 1e18 Wei
|
|
)
|
|
|
|
// Transaction constants
|
|
const (
|
|
// TxGas is the base gas cost for a simple transaction
|
|
TxGas = 21_000
|
|
)
|