Skip to content

Commit

Permalink
Decipher genesis tx hex
Browse files Browse the repository at this point in the history
  • Loading branch information
aivve committed Feb 11, 2022
1 parent 10282bf commit 1373933
Showing 1 changed file with 13 additions and 1 deletion.
14 changes: 13 additions & 1 deletion src/CryptoNoteConfig.h
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,19 @@ const char MINER_CONFIG_FILE_NAME[] = "miner_conf.json"
} // parameters

const char CRYPTONOTE_NAME[] = "karbowanec";
const char GENESIS_COINBASE_TX_HEX[] = "010a01ff0001fac484c69cd608029b2e4c0281c0b02e7c53291a94d1d0cbff8883f8024f5142ee494ffbbd0880712101f904925cc23f86f9f3565188862275dc556a9bdfb6aec22c5aca7f0177c45ba8";
const char GENESIS_COINBASE_TX_HEX[] =
"01" // tx version
"0a" // unlock time
"01" // vin length
"ff" // vin type
"00" // height
"01" // vout length
"fac484c69cd608" // output #1 amount
"02" // output #1 type
"9b2e4c0281c0b02e7c53291a94d1d0cbff8883f8024f5142ee494ffbbd088071" // output #1 key (stealth address)
"21" // extra length in bytes
"01" // extra pubkey tag
"f904925cc23f86f9f3565188862275dc556a9bdfb6aec22c5aca7f0177c45ba8"; // tx pubkey
const char DNS_CHECKPOINTS_HOST[] = "checkpoints.karbo.org";

const uint8_t CURRENT_TRANSACTION_VERSION = 1;
Expand Down

0 comments on commit 1373933

Please sign in to comment.