Cryptonote NETWORK_ID Generator

in 区块链 with 0 comment
<?php
$rands = [];
for ($i = 0; $i < 16; $i++) {
    $rands[] = sprintf('0x%02X', mt_rand(0, 255));
}
echo implode(", ", $rands);

//0xA4, 0x8A, 0xA7, 0x43, 0x77, 0x6F, 0xFF, 0x24, 0x29, 0x8E, 0x10, 0xA5, 0xBD, 0x23, 0xCA, 0xBF

可以直接https://3v4l.org/7Sqjf 打开生成!

Comments are closed.