Home Web Front-end JS Tutorial Node.Js generates Bitcoin address (with code)

Node.Js generates Bitcoin address (with code)

Jun 07, 2018 am 10:01 AM
node.js Bitcoin

This time I will bring you Node.Js to generate a Bitcoin address (with code). What are the precautions for generating a Bitcoin address with Node.Js? Here is a practical case, let’s take a look.

Use Node.js, IDE uses sublime 3.

var randomBytes = require('randombytes')
var BigInteger = require('bigi')
var ecurve = require('ecurve')
var crypto = require('crypto')
var cs = require('coinstring')
var secp256k1 = ecurve.getCurveByName('secp256k1')
var randombytes = randomBytes(32).toString('hex')
var privateKey = new Buffer(randombytes, 'hex')
console.log("私钥:" + privateKey.toString('hex'))
var ecparams = ecurve.getCurveByName('secp256k1')
var curvePt = ecparams.G.multiply(BigInteger.fromBuffer(privateKey))
var x = curvePt.affineX.toBuffer(32)
var y = curvePt.affineY.toBuffer(32)
var publicKey = Buffer.concat([new Buffer([0x04]), x, y])
console.log("标准地址:" + publicKey.toString('hex'))
//compressed
publicKey = curvePt.getEncoded(true) //true forces compressed public key
console.log("compressed:" + publicKey.toString('hex'))
var sha = crypto.createHash('sha256').update(publicKey).digest()
var pubkeyHash = crypto.createHash('rmd160').update(sha).digest()
// pubkeyHash of compressed public key
console.log("pubkeyHash:" + pubkeyHash.toString('hex')) 
// address of compressed public key
console.log("压缩地址:" + cs.encode(pubkeyHash, 0x0)) //<-- 0x0 is for public addresses
//这里还缺失校验和Base58编码
console.log(cs.encode(privateKey, 0x80)) //<--- 0x80 is for private addresses
console.log(cs.encode(Buffer.concat([privateKey, new Buffer([0])]), 0x80)) // <-- compressed private address
Copy after login

Generate Bitcoin address

1. Generate a random private key. The private key is a 32-byte number. For example:

8F72F6B29E6E225A36B68DFE333C7CE5E55D83249D3D2CD6332671FA445C4DD3

2. Elliptic curve calculation public key After generating the private key, we use the elliptic curve encryption algorithm (ECDSA-secp256k1) to calculate the uncompressed public key corresponding to the private key. The generated public key is 65 bytes in total. First The first byte is 0x04, the last 32 bytes are the X coordinate, and the last 32 bytes are the Y coordinate: Public key P. DB985072968C72B036ED97BA2EF2DECE2ABCA5BE14792

Public key:

0459DEE66AB619C4A9E215D070052D1AE3A2075E5F58C67516B2E4884A88C79BE9A5FA8CCD255FB0A7A75DB985072968C72B036ED97BA2EF2DECE2ABCA5BE14 792

3. Calculate the SHA-256 hash value of the public key

##ae9c74647a8c2f50fd832e397e36dbad05d86db3fe3d959a7c8a07c1ddda40c6

4. Calculate the RIPEMD-160 hash value

05f9d05358aab2a28f19910036e67a7295b14aac

5. Add the address version number (Bitcoin mainnet 0x00)

0005f9d05358aab2a28f19910036e67a7295b14aac

In fact, this is almost the same, which is the compressed address finally generated by the above code.

But in actual Bitcoin, verification must be added

6. Calculate the SHA-256 hash value

##9f35b0c37977a302512c22f586dd8da4ae1d20399f2ad3f75df23fbc024b4b2d

7. Calculate the SHA-256 hash value again

4b4f9bc87616687957db64efaf4efb2c00d1d93d549a0b70b15812936046d0ac

8. Take the first 4 bytes of the previous step result (8-digit hexadecimal System)

4b4f9bc8

9. Add these 4 bytes to the end of the compression address generated in step 5

0005f9d05358aab2a28f19910036e67a7295b14aac4b4f9bc8

10. Use Base58 encoding

Base58 consists of 1-9 and English characters except i, l, 0, o. Base58 encode the result of the previous step and get:

1YbeKoyePe8gxyAYh4E3Qyqb15Nnepmod

I believe you have mastered the method after reading the case in this article. For more exciting information, please pay attention to other php Chinese websites related articles!

Recommended reading:

String array deduplication practical case analysis

How express mock operates front and backend parallel development

The above is the detailed content of Node.Js generates Bitcoin address (with code). For more information, please follow other related articles on the PHP Chinese website!

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

Free viewing market software websites What are the top ten free viewing market software websites Free viewing market software websites What are the top ten free viewing market software websites Apr 24, 2025 pm 02:21 PM

Top 10 free-to-view market software websites are recommended: 1. Binance, 2. OkX, 3. Sesame Open Door (KuCoin), 4. CoinMarketCap, 5. CoinGecko, 6. TradingView, 7. Investing.com, 8. Yahoo Finance, 9. Glassnode Studio, 10. LunarCrush, these websites provide real-time data, technical analysis tools and market information to help you make informed investment decisions.

A detailed introduction to virtual currency is a must-read for novices A detailed introduction to virtual currency is a must-read for novices Apr 24, 2025 pm 01:33 PM

Virtual currency is a digital asset encrypted using cryptography technology, with its main features including decentralization, encryption security, global circulation and relative anonymity. Virtual currency has a wide range of application scenarios, including value storage, trading media, investment and financial management, DeFi, NFT, blockchain games, smart contracts, dApps and governance voting. Participating in virtual currency requires 1) Learn basic knowledge, 2) Select a trading platform, 3) Register and verify your identity, 4) Purchase virtual currency, 5) Safely store, 6) Participate in the community. Investments need to pay attention to risks such as price fluctuations, market, technology, supervision, fraud and information asymmetry.

Bitcoin price today Bitcoin price today Apr 28, 2025 pm 07:39 PM

Bitcoin’s price fluctuations today are affected by many factors such as macroeconomics, policies, and market sentiment. Investors need to pay attention to technical and fundamental analysis to make informed decisions.

What are the top ten virtual currency trading apps? The latest digital currency exchange rankings What are the top ten virtual currency trading apps? The latest digital currency exchange rankings Apr 28, 2025 pm 08:03 PM

The top ten digital currency exchanges such as Binance, OKX, gate.io have improved their systems, efficient diversified transactions and strict security measures.

The best free virtual currency exchange in the world Free newbie virtual currency exchange app The best free virtual currency exchange in the world Free newbie virtual currency exchange app Apr 24, 2025 pm 12:57 PM

The best free virtual currency exchanges in the world are Binance, OKX and Gate.io. 1. Binance provides an efficient trading system and rich trading pairs, simple registration, and supports multiple cryptocurrency transactions. 2. OKX is famous for its technical support and customer service, and provides a variety of transaction methods. 3. Gate.io attracts newbies with rich trading pairs and free services, with a simple interface and supports multiple languages.

What are the next thousand-fold coins in 2025? What are the next thousand-fold coins in 2025? Apr 24, 2025 pm 01:45 PM

As of April 2025, seven cryptocurrency projects are considered to have significant growth potential: 1. Filecoin (FIL) achieves rapid development through distributed storage networks; 2. Aptos (APT) attracts DApp developers with high-performance Layer 1 public chains; 3. Polygon (MATIC) improves Ethereum network performance; 4. Chainlink (LINK) serves as a decentralized oracle network to meet smart contract needs; 5. Avalanche (AVAX) trades quickly and

How much is Bitcoin worth How much is Bitcoin worth Apr 28, 2025 pm 07:42 PM

Bitcoin’s price ranges from $20,000 to $30,000. 1. Bitcoin’s price has fluctuated dramatically since 2009, reaching nearly $20,000 in 2017 and nearly $60,000 in 2021. 2. Prices are affected by factors such as market demand, supply, and macroeconomic environment. 3. Get real-time prices through exchanges, mobile apps and websites. 4. Bitcoin price is highly volatile, driven by market sentiment and external factors. 5. It has a certain relationship with traditional financial markets and is affected by global stock markets, the strength of the US dollar, etc. 6. The long-term trend is bullish, but risks need to be assessed with caution.

What currency does Ripple (XRP currency) belong to? Detailed tutorial for beginners What currency does Ripple (XRP currency) belong to? Detailed tutorial for beginners Apr 28, 2025 pm 07:57 PM

Created by Ripple, Ripple is used for cross-border payments, which are fast and low-cost and suitable for small transaction payments. After registering a wallet and exchange, purchase and storage can be made.

See all articles