Bitcoin Forum
March 02, 2026, 03:14:30 PM *
News: Latest Bitcoin Core release: 30.2 [Torrent]
 
   Home   Help Search Login Register More  
Pages: [1]
  Print  
Author Topic: [ANN] VelCoin (VLC) | SHA256 PoW Mainnet  (Read 158 times)
velcoin_vlc (OP)
Newbie
*
Offline Offline

Activity: 6
Merit: 0


View Profile
February 25, 2026, 04:37:20 PM
Last edit: February 25, 2026, 08:21:35 PM by velcoin_vlc
 #1

VelCoin (VLC)
Independent Proof-of-Work Blockchain Protocol Built From Scratch

Project Status: Early-Stage Mainnet (Reference Node – Expanding to Multi-Node)

---

OVERVIEW

VelCoin (VLC) is a self-developed blockchain protocol implemented from first principles in Python.

The objective is to build a sovereign Proof-of-Work system without relying on existing blockchain frameworks.

Protocol characteristics:

• SHA256 Proof-of-Work  
• 60-second target block time  
• Protocol-defined maximum supply target: 1,000,000,000 VLC  
• JSON-based ledger state management  
• REST-based node interface  
• Nonce replay protection  
• Transparent block explorer

This release functions as a reference implementation.
Distributed networking and cryptographic hardening are under active development.

---

CURRENT ARCHITECTURE

• SHA256 PoW  
• 60-second target block time  
• JSON ledger state  
• REST API  
• Block explorer  
• Replay protection

Network model:

VelCoin currently operates as a reference node.
P2P capabilities and multi-node consensus are planned for subsequent releases.

---

TECHNICAL SPECIFICATIONS

Algorithm: SHA256  
Block Time: ~60 seconds  
Difficulty: Fixed (v1)  
Address Format: 40-character hexadecimal  
Minimum Fee: 0.001 VLC  
Signature System: (planned) secp256k1-based signatures

---

ROADMAP

Phase 1 – Core protocol (Completed)  
Phase 2 – Multi-node networking  
Phase 3 – secp256k1 signature system  
Phase 4 – Dynamic difficulty retargeting  
Phase 5 – Standalone node client

---

MAINNET RESOURCES

Explorer:
https://velcoin-vlc-l3uk.onrender.com/explorer

API:
https://velcoin-vlc-l3uk.onrender.com/docs

Website:
https://velcoin-vlc.onrender.com

GitHub:
https://github.com/velcoinvlc/velcoiin_railway

📱 Social Media:
Twitter: https://twitter.com/VelCoin_VLC
Telegram: https://t.me/+AIjS8By8Vrg1OTcx

---

FOUNDER

Dainier Velazquez  
Self-funded protocol development. No ICO. No premine sale.

---

VelCoin is an evolving blockchain protocol focused on technical validation and decentralized architecture.
Constructive feedback from developers and protocol engineers is welcome.

Developers interested in networking, cryptography, or protocol hardening are invited to participate.
uE3tc
Newbie
*
Offline Offline

Activity: 14
Merit: 0


View Profile
February 25, 2026, 04:59:48 PM
 #2

Where is the pool wallet, and how should I go about digging it up?
velcoin_vlc (OP)
Newbie
*
Offline Offline

Activity: 6
Merit: 0


View Profile
February 25, 2026, 05:19:01 PM
 #3

Where is the pool wallet, and how should I go about digging it up?

The official VelCoin wallet APK can be downloaded here:

https://github.com/velcoinvlc/velwallet_apk/releases/download/1.0.0/velwallet-2.0-arm64-v8a_armeabi-v7a-debug.apk

Install the APK, create your wallet address, and use it for solo mining (pool support is under development).

If you need help setting it up, I can guide you.
uE3tc
Newbie
*
Offline Offline

Activity: 14
Merit: 0


View Profile
February 25, 2026, 05:45:24 PM
 #4

Where is the pool wallet, and how should I go about digging it up?
No transactions in mempool
uE3tc
Newbie
*
Offline Offline

Activity: 14
Merit: 0


View Profile
February 25, 2026, 05:53:43 PM
 #5

Where is the pool wallet, and how should I go about digging it up?
No transactions in mempool
bcf54a755be59982ef83d76dc95fdfa0de95b46f
This is an address I created myself on VelCoin. Please check: `curl -X POST https://velcoin-vlc-l3uk.onrender.com/mine -H "Content-Type: application/json" -d "{"miner_address": "bcf54a755be59982ef83d76dc95fdfa0de95b46f"}"`
It shows this: {"error":"No transactions in mempool"}
velcoin_vlc (OP)
Newbie
*
Offline Offline

Activity: 6
Merit: 0


View Profile
February 25, 2026, 05:55:01 PM
 #6

Where is the pool wallet, and how should I go about digging it up?
No transactions in mempool

There is no pool wallet available yet because the mining pool is in early development. The mempool currently has no transactions, which means there is nothing to mine or reward at this time. Mining rewards will become possible once the network has active transactions and the pool infrastructure is fully operational. The wallet is intended to receive funds when the network is generating transferable transactions.
velcoin_vlc (OP)
Newbie
*
Offline Offline

Activity: 6
Merit: 0


View Profile
February 25, 2026, 06:06:02 PM
 #7

Where is the pool wallet, and how should I go about digging it up?
No transactions in mempool
bcf54a755be59982ef83d76dc95fdfa0de95b46f
This is an address I created myself on VelCoin. Please check: `curl -X POST https://velcoin-vlc-l3uk.onrender.com/mine -H "Content-Type: application/json" -d "{"miner_address": "bcf54a755be59982ef83d76dc95fdfa0de95b46f"}"`
It shows this: {"error":"No transactions in mempool"}
I just sent you 100 VLC as a test transaction. It has been confirmed in the blockchain and your balance now reflects the transfer. The mining pool wallet is still under early development, so rewards will become available once the network has more activity and transactions to process. Feel free to continue testing or mining when transactions are present.
uE3tc
Newbie
*
Offline Offline

Activity: 14
Merit: 0


View Profile
February 25, 2026, 06:26:24 PM
 #8

Development, how should I go about digging this VLC?Please give me the code.
velcoin_vlc (OP)
Newbie
*
Offline Offline

Activity: 6
Merit: 0


View Profile
February 25, 2026, 07:32:07 PM
 #9

Development, how should I go about digging this VLC?Please give me the code.
To obtain VLC you need to create a wallet and interact with the network.

Wallet creation (API):

curl -X POST https://velcoin-vlc-l3uk.onrender.com/create_wallet

This returns:
- private_key
- public_key
- address

Use that address to receive and send VLC.

Example transfer (after wallet creation):

curl -X POST https://velcoin-vlc-l3uk.onrender.com/send \
-H "Content-Type: application/json" \
-d '{
  "from": "YOUR_ADDRESS",
  "to": "RECIPIENT_ADDRESS",
  "amount": 10,
  "nonce": 1,
  "public_key": "YOUR_PUBLIC_KEY",
  "signature": "SIGNED_PAYLOAD"
}'

The wallet application also allows direct management of funds.
ZeFork
Newbie
*
Offline Offline

Activity: 10
Merit: 0


View Profile
March 01, 2026, 06:32:23 AM
 #10

VelCoin (VLC)
Independent Proof-of-Work Blockchain Protocol Built From Scratch

Project Status: Early-Stage Mainnet (Reference Node – Expanding to Multi-Node)

---

OVERVIEW

VelCoin (VLC) is a self-developed blockchain protocol implemented from first principles in Python.

The objective is to build a sovereign Proof-of-Work system without relying on existing blockchain frameworks.

Protocol characteristics:

• SHA256 Proof-of-Work  
• 60-second target block time  
• Protocol-defined maximum supply target: 1,000,000,000 VLC  
• JSON-based ledger state management  
• REST-based node interface  
• Nonce replay protection  
• Transparent block explorer

This release functions as a reference implementation.
Distributed networking and cryptographic hardening are under active development.

---

CURRENT ARCHITECTURE

• SHA256 PoW  
• 60-second target block time  
• JSON ledger state  
• REST API  
• Block explorer  
• Replay protection

Network model:

VelCoin currently operates as a reference node.
P2P capabilities and multi-node consensus are planned for subsequent releases.

---

TECHNICAL SPECIFICATIONS

Algorithm: SHA256  
Block Time: ~60 seconds  
Difficulty: Fixed (v1)  
Address Format: 40-character hexadecimal  
Minimum Fee: 0.001 VLC  
Signature System: (planned) secp256k1-based signatures

---

ROADMAP

Phase 1 – Core protocol (Completed)  
Phase 2 – Multi-node networking  
Phase 3 – secp256k1 signature system  
Phase 4 – Dynamic difficulty retargeting  
Phase 5 – Standalone node client

---

MAINNET RESOURCES

Explorer:
https://velcoin-vlc-l3uk.onrender.com/explorer

API:
https://velcoin-vlc-l3uk.onrender.com/docs

Website:
https://velcoin-vlc.onrender.com

GitHub:
https://github.com/velcoinvlc/velcoiin_railway

📱 Social Media:
Twitter: https://twitter.com/VelCoin_VLC
Telegram: https://t.me/+AIjS8By8Vrg1OTcx

---

FOUNDER

Dainier Velazquez  
Self-funded protocol development. No ICO. No premine sale.

---

VelCoin is an evolving blockchain protocol focused on technical validation and decentralized architecture.
Constructive feedback from developers and protocol engineers is welcome.

Developers interested in networking, cryptography, or protocol hardening are invited to participate.

Is there already any exchange that offers Velcoin for trading? I can't mine it, but I'd like to invest in the coin, I really appreciate pow projects.
velcoin_vlc (OP)
Newbie
*
Offline Offline

Activity: 6
Merit: 0


View Profile
March 01, 2026, 09:24:40 PM
 #11

Is there already any exchange that offers Velcoin for trading? I can't mine it, but I'd like to invest in the coin, I really appreciate pow projects.

Thank you for your interest and for supporting PoW projects.

VelCoin is not listed on any exchange at this stage. The current focus is on protocol hardening (multi-node networking, signature system, and dynamic difficulty adjustment) and on building real utility through the native VelCoin marketplace.

The objective is to create organic demand backed by actual usage before pursuing external listings.

At the moment, acquisition is limited to mining on the reference node. Since the network is still in early-stage development, broader access mechanisms and exchange integration will be evaluated once the protocol reaches a more mature and decentralized state.

Your interest in investing is appreciated, and updates will be shared as the network evolves.
lostone1178
Newbie
*
Offline Offline

Activity: 12
Merit: 0


View Profile
Today at 06:47:17 AM
 #12

so there is no wallet for this coin along with no mining because the only address you have here for a wallet is spam crap
Pages: [1]
  Print  
 
Jump to:  

Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!