Files
node/tests/test_constants.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
)