Post
Topic
Board Announcements (Altcoins)
Re: ⚛️ SWAPS.ORG – XMR/BTC/ETH/ERC-20 NO KYC ON-CHAIN ATOMIC SWAP DEX ⚛️
by
it-service
on 02/05/2024, 21:08:05 UTC
When next are we expecting a major announcement about the project? And would it be announced here?

Hello, we have a lineup of great announcements about the project coming soon. They will be announced on the Bitcoin atom site (https://bitcoinatom.io) and on our telegram group (https://t.me/bitcoinatomswaps)

Can Swaps handle high-frequency trading?

Yes, Swaps.org is optimized for high-frequency trading by minimizing latency and maximizing throughput via efficient backend infrastructure.

So, till now a bunch of questions about swaps and tecnology behind but lets move on to something more important. In order to run properly a pool i need to find some constants in the blockchain.cpp file for BCA. The thing is i only managed to find a couple of the in DEC  format which isnt a problem but the other ones are a bit difficult to find.
Code:
// Mainnet Configuration

config.primary.coin.mainnet = {};

config.primary.coin.mainnet.bech32 = 'bc';

config.primary.coin.mainnet.bip32 = {};

config.primary.coin.mainnet.bip32.public = Buffer.from('0488B21E', 'hex').readUInt32LE(0);

config.primary.coin.mainnet.bip32.private = Buffer.from('0488ADE4', 'hex').readUInt32LE(0);

[color=blue]config.primary.coin.mainnet.peerMagic = 'f9beb4d9';[/color]

[color=red]config.primary.coin.mainnet.pubKeyHash = Buffer.from('00', 'hex').readUInt8(0);
[/color]
[color=red]config.primary.coin.mainnet.scriptHash = Buffer.from('05', 'hex').readUInt8(0);[/color]

[color=blue]config.primary.coin.mainnet.wif = Buffer.from('80', 'hex').readUInt8(0);
[/color]
config.primary.coin.mainnet.coin = 'btc';


// Testnet Configuration

config.primary.coin.testnet = {};

config.primary.coin.testnet.bech32 = 'tb';

config.primary.coin.testnet.bip32 = {};

config.primary.coin.testnet.bip32.public = Buffer.from('043587CF', 'hex').readUInt32LE(0);

config.primary.coin.testnet.bip32.private = Buffer.from('04358394', 'hex').readUInt32LE(0);

[color=blue]config.primary.coin.testnet.peerMagic = '0b110907';[/color]

[color=red]config.primary.coin.testnet.pubKeyHash = Buffer.from('6F', 'hex').readUInt8(0);[/color]

[color=red]config.primary.coin.testnet.scriptHash = Buffer.from('C4', 'hex').readUInt8(0);
[/color]
[color=blue]config.primary.coin.testnet.wif = Buffer.from('EF', 'hex').readUInt8(0);[/color]

config.primary.coin.testnet.coin = 'btc';

The red lines are easy to figure out but the one giving trouble are the blue ones. It would be awsome if you could point me in the right direction/file where i can find this info.