Files
aitbc/dev/env/node_modules/micro-eth-signer/utils.js
aitbc 816e258d4c refactor: move brother_node development artifact to dev/test-nodes subdirectory
Development Artifact Cleanup:
 BROTHER_NODE REORGANIZATION: Moved development test node to appropriate location
- dev/test-nodes/brother_node/: Moved from root directory for better organization
- Contains development configuration, test logs, and test chain data
- No impact on production systems - purely development/testing artifact

 DEVELOPMENT ARTIFACTS IDENTIFIED:
- Chain ID: aitbc-brother-chain (test/development chain)
- Ports: 8010 (P2P) and 8011 (RPC) - different from production
- Environment: .env file with test configuration
- Logs: rpc.log and node.log from development testing session (March 15, 2026)

 ROOT DIRECTORY CLEANUP: Removed development clutter from production directory
- brother_node/ moved to dev/test-nodes/brother_node/
- Root directory now contains only production-ready components
- Development artifacts properly organized in dev/ subdirectory

DIRECTORY STRUCTURE IMPROVEMENT:
📁 dev/test-nodes/: Development and testing node configurations
🏗️ Root Directory: Clean production structure with only essential components
🧪 Development Isolation: Test environments separated from production

BENEFITS:
 Clean Production Directory: No development artifacts in root
 Better Organization: Development nodes grouped in dev/ subdirectory
 Clear Separation: Production vs development environments clearly distinguished
 Maintainability: Easier to identify and manage development components

RESULT: Successfully moved brother_node development artifact to dev/test-nodes/ subdirectory, cleaning up the root directory while preserving development testing environment for future use.
2026-03-30 17:09:06 +02:00

200 lines
7.4 KiB
JavaScript
Executable File

"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.formatters = exports.gweiDecimal = exports.ethDecimal = exports.weigwei = exports.weieth = exports.createDecimal = exports.ethHexNoLeadingZero = exports.ethHex = exports.amounts = exports.isBytes = void 0;
exports.add0x = add0x;
exports.strip0x = strip0x;
exports.numberTo0xHex = numberTo0xHex;
exports.hexToNumber = hexToNumber;
exports.isObject = isObject;
exports.astr = astr;
exports.sign = sign;
exports.verify = verify;
exports.initSig = initSig;
exports.cloneDeep = cloneDeep;
exports.omit = omit;
exports.zip = zip;
const secp256k1_1 = require("@noble/curves/secp256k1");
const utils_1 = require("@noble/hashes/utils");
const micro_packed_1 = require("micro-packed");
exports.isBytes = utils_1.isBytes;
const ETH_PRECISION = 18;
const GWEI_PRECISION = 9;
const GWEI = BigInt(10) ** BigInt(GWEI_PRECISION);
const ETHER = BigInt(10) ** BigInt(ETH_PRECISION);
exports.amounts = (() => ({
GWEI_PRECISION,
ETH_PRECISION,
GWEI,
ETHER,
// Disabled with "strict=false"
maxAmount: BigInt(1000000) * ETHER, // 1M ether for testnets
minGasLimit: BigInt(21000), // 21K wei is used at minimum. Possibly smaller gas limit in 4844 txs?
maxGasLimit: BigInt(30000000), // 30M wei. A block limit in 2024 is 30M
maxGasPrice: BigInt(10000) * GWEI, // 10K gwei. Arbitrage HFT bots can use more
maxNonce: BigInt(131072), // 2**17, but in spec it's actually 2**64-1
maxDataSize: 1000000, // Size of .data field. TODO: research
maxInitDataSize: 49152, // EIP-3860
maxChainId: BigInt(2 ** 32 - 1),
maxUint64: BigInt(2) ** BigInt(64) - BigInt(1),
maxUint256: BigInt(2) ** BigInt(256) - BigInt(1),
}))();
// For usage with other packed utils via apply
// This format is pretty much arbitrary:
// - '0x' vs '0x0' for empty
// - strip leading zero/don't
// - geth (https://geth.ethereum.org/docs/interacting-with-geth/rpc/ns-eth):
// 0x0,
// - etherscan (https://docs.etherscan.io/api-endpoints/logs):
// even 'data' can be '0x'
//
// 0x data = Uint8Array([])
// 0x num = BigInt(0)
const leadingZerosRe = /^0+/;
const genEthHex = (keepLeadingZero = true) => ({
decode: (data) => {
if (typeof data !== 'string')
throw new Error('hex data must be a string');
let hex = strip0x(data);
hex = hex.length & 1 ? `0${hex}` : hex;
return (0, utils_1.hexToBytes)(hex);
},
encode: (data) => {
let hex = (0, utils_1.bytesToHex)(data);
if (!keepLeadingZero)
hex = hex.replace(leadingZerosRe, '');
return add0x(hex);
},
});
exports.ethHex = genEthHex(true);
exports.ethHexNoLeadingZero = genEthHex(false);
const ethHexStartRe = /^0[xX]/;
function add0x(hex) {
return ethHexStartRe.test(hex) ? hex : `0x${hex}`;
}
function strip0x(hex) {
return hex.replace(ethHexStartRe, '');
}
function numberTo0xHex(num) {
const hex = num.toString(16);
const x2 = hex.length & 1 ? `0${hex}` : hex;
return add0x(x2);
}
function hexToNumber(hex) {
if (typeof hex !== 'string')
throw new TypeError('expected hex string, got ' + typeof hex);
return hex ? BigInt(add0x(hex)) : BigInt(0);
}
function isObject(item) {
return item != null && typeof item === 'object';
}
function astr(str) {
if (typeof str !== 'string')
throw new Error('string expected');
}
function sign(hash, privKey, extraEntropy = true) {
const sig = secp256k1_1.secp256k1.sign(hash, privKey, { extraEntropy: extraEntropy });
// yellow paper page 26 bans recovery 2 or 3
// https://ethereum.github.io/yellowpaper/paper.pdf
if ([2, 3].includes(sig.recovery))
throw new Error('invalid signature rec=2 or 3');
return sig;
}
function validateRaw(obj) {
if ((0, exports.isBytes)(obj))
return true;
if (typeof obj === 'object' && obj && typeof obj.r === 'bigint' && typeof obj.s === 'bigint')
return true;
throw new Error('expected valid signature');
}
function verify(sig, hash, publicKey) {
validateRaw(sig);
return secp256k1_1.secp256k1.verify(sig, hash, publicKey);
}
function initSig(sig, bit) {
validateRaw(sig);
const s = (0, exports.isBytes)(sig)
? secp256k1_1.secp256k1.Signature.fromCompact(sig)
: new secp256k1_1.secp256k1.Signature(sig.r, sig.s);
return s.addRecoveryBit(bit);
}
function cloneDeep(obj) {
if ((0, exports.isBytes)(obj)) {
return Uint8Array.from(obj);
}
else if (Array.isArray(obj)) {
return obj.map(cloneDeep);
}
else if (typeof obj === 'bigint') {
return BigInt(obj);
}
else if (typeof obj === 'object') {
// should be last, so it won't catch other types
let res = {};
// TODO: hasOwnProperty?
for (let key in obj)
res[key] = cloneDeep(obj[key]);
return res;
}
else
return obj;
}
function omit(obj, ...keys) {
let res = Object.assign({}, obj);
for (let key of keys)
delete res[key];
return res;
}
function zip(a, b) {
let res = [];
for (let i = 0; i < Math.max(a.length, b.length); i++)
res.push([a[i], b[i]]);
return res;
}
exports.createDecimal = micro_packed_1.coders.decimal;
exports.weieth = (0, exports.createDecimal)(ETH_PRECISION);
exports.weigwei = (0, exports.createDecimal)(GWEI_PRECISION);
// legacy. TODO: remove
exports.ethDecimal = exports.weieth;
exports.gweiDecimal = exports.weigwei;
exports.formatters = {
// returns decimal that costs exactly $0.01 in given precision (using price)
// formatDecimal(perCentDecimal(prec, price), prec) * price == '0.01'
perCentDecimal(precision, price) {
const fiatPrec = exports.weieth;
//x * price = 0.01
//x = 0.01/price = 1/100 / price = 1/(100*price)
// float does not have enough precision
const totalPrice = fiatPrec.decode('' + price);
const centPrice = fiatPrec.decode('0.01') * BigInt(10) ** BigInt(precision);
return centPrice / totalPrice;
},
// TODO: what difference between decimal and this?!
// Used by 'fromWei' only
formatBigint(amount, base, precision, fixed = false) {
const baseLength = base.toString().length;
const whole = (amount / base).toString();
let fraction = (amount % base).toString();
const zeros = '0'.repeat(Math.max(0, baseLength - fraction.length - 1));
fraction = `${zeros}${fraction}`;
const fractionWithoutTrailingZeros = fraction.replace(/0+$/, '');
const fractionAfterPrecision = (fixed ? fraction : fractionWithoutTrailingZeros).slice(0, precision);
if (!fixed && (fractionAfterPrecision === '' || parseInt(fractionAfterPrecision, 10) === 0)) {
return whole;
}
// is same fraction?
const fr = (str) => str.replace(/0+$/, '');
const prefix = BigInt(`1${fr(fractionAfterPrecision)}`) === BigInt(`1${fr(fraction)}`) ? '' : '~';
return `${prefix}${whole}.${fractionAfterPrecision}`;
},
fromWei(wei) {
const GWEI = 10 ** 9;
const ETHER = BigInt(10) ** BigInt(ETH_PRECISION);
wei = BigInt(wei);
if (wei < BigInt(GWEI) / BigInt(10))
return wei + 'wei';
if (wei >= BigInt(GWEI) && wei < ETHER / BigInt(1000))
return exports.formatters.formatBigint(wei, BigInt(GWEI), 9, false) + 'μeth';
return exports.formatters.formatBigint(wei, ETHER, ETH_PRECISION, false) + 'eth';
},
};
//# sourceMappingURL=utils.js.map