node-util/binding.gyp
Claude b955083d06
rebrand(lethean): update branding, ports, and config for Lethean blockchain
- Coin: Zano → Lethean, ticker: ZAN/ZANO → LTHN
- Ports: 11211 → 36941 (mainnet RPC), 46941 (testnet RPC)
- Wallet: 11212 → 36944/46944
- Address prefix: iTHN
- URLs: zano.org → lethean.io
- Explorer links: explorer.lthn.io

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-04-01 22:24:13 +01:00

78 lines
2.4 KiB
Python

{
"targets": [
{
"target_name": "cryptonote",
"sources": [
"main.cc",
"Lethean/src/currency_core/currency_format_utils.cpp",
"Lethean/src/currency_core/currency_format_utils_blocks.cpp",
"Lethean/src/currency_core/basic_pow_helpers.cpp",
"Lethean/src/currency_core/basic_pow_helpers.cpp",
"Lethean/src/crypto/tree-hash.c",
"Lethean/src/crypto/crypto.cpp",
"Lethean/src/crypto/crypto-ops.c",
"Lethean/src/crypto/crypto-sugar.cpp",
"Lethean/src/crypto/zarcanum.cpp",
"Lethean/src/crypto/range_proofs.cpp",
"Lethean/src/crypto/crypto-ops-data.c",
"Lethean/src/crypto/hash.c",
"Lethean/src/crypto/keccak.c",
"Lethean/src/common/base58.cpp",
"Lethean/contrib/ethereum/libethash/ethash.cpp",
"Lethean/contrib/ethereum/libethash/keccak.c",
"Lethean/contrib/ethereum/libethash/keccakf800.c",
"Lethean/contrib/ethereum/libethash/progpow.cpp",
"Lethean/contrib/ethereum/libethash/managed.cpp",
"Lethean/src/currency_core/currency_format_utils_transactions.cpp",
"Lethean/src/currency_core/genesis.cpp",
"Lethean/src/currency_core/genesis_acc.cpp",
"Lethean/src/crypto/random.c",
"Lethean/contrib/ethereum/libethash/keccakf1600.c",
"Lethean/contrib/ethereum/libethash/managed.cpp",
"Lethean/contrib/ethereum/libethash/primes.c"
],
"include_dirs": [
"Lethean/src/crypto",
"Lethean/src",
"Lethean/contrib",
"Lethean/contrib/epee/include",
"Lethean/contrib/eos_portable_archive",
"Lethean/contrib/ethereum/libethash",
"Lethean/contrib/randomx/src",
"<!(node -e \"require('nan')\")"
],
"link_settings": {
"libraries": [
"-lboost_system",
"-lboost_date_time",
"-lboost_thread",
"-lboost_serialization",
"-lboost_iostreams",
"-lboost_locale",
]
},
"cflags_cc!": [
"-fno-exceptions",
"-fno-rtti"
],
"cflags_cc": [
"-std=c++17",
"-fexceptions",
"-frtti",
"-fpermissive"
],
"conditions": [
[
"OS=='mac'",
{
"xcode_settings": {
"GCC_ENABLE_CPP_RTTI": "YES",
"GCC_ENABLE_CPP_EXCEPTIONS": "YES"
}
}
]
]
}
]
}