Bitcoin Forum
September 17, 2026, 02:15:15 PM *
News: Latest Bitcoin Core release: 31.1 [Torrent]
 
   Home   Help Search Login Register More  
Pages: [1]
  Print  
Author Topic: 🔥[ANN][PLNE] Plaine - CPU-only PoW 🔥One CPU - One Vote🔥 Community Thread 🔥  (Read 109 times)
kliory (OP)
Newbie
*
Offline

Activity: 4
Merit: 0


View Profile
September 16, 2026, 03:46:22 PM
Last edit: September 16, 2026, 05:28:36 PM by kliory
 #1

P L A I N E
a CPU only proof of work coin, quietly launched
Unofficial, community run thread. I am not the author, just a miner who found it.



▪ LINKS ▪

GitHub (the author's repo)
github.com/noaltitude/plaine

Website (the author's)
plaine.net

Community Discord
(this one is mine, a community server, not the author's)
discord.gg/sMJbqrYPxj
I set it up so miners have a place to gather. Come on in and let us get organized together.



▪ How I found it
I dig through GitHub for new proof of work projects, running scanners over fresh repos to find real chains instead of yet another token. Plaine turned up. No launch thread, no Twitter, no Telegram, no roadmap, no sale. Just a working node, a wallet, a CPU miner, a spec, and a network that was already making blocks by the time I got there.

Whoever wrote it clearly wants to stay anonymous. No name, no premine wallet to point at, no team page. So a few of us figured, if the author is not going to build a community, we may as well do it ourselves, around the code instead of around a person. That is all this is.



▪ Plaine at a glance
Ticker: PLNE
Consensus: CPU proof of work (Isochron v1), built to shut out ASIC and GPU
Reward: 0.2 PLNE per block, flat, forever. No halving.
Supply: no cap, inflation drifts toward zero as the chain keeps growing
Distribution: no premine, no presale, no dev fund. Nobody was paid before you.
Platforms: Linux and Windows, one command each

The bit from the README that sums it up:
Quote
Plaine is honest, censorship-free money open to everyone: built to shut out ASIC and GPU so every CPU earns for the real power it brings, with a steady reward that keeps issuance predictable and no supply cap to keep the network secure, while its inflation falls toward zero with every passing day. No premine, no presale, no dev fund.

In tribute to Satoshi Nakamoto, and in the author's own name, Plaine stands for one CPU, one vote.

Nothing promised. Nothing hidden. See for yourself.



▪ The part that hooked me
There is a message signed into the genesis block, permanent, no way to change it:

"We were told the altitude. We never saw the ground."

Read it next to the author handle, noaltitude. There is a whole quiet idea sitting in there. It reads like a jab at the rest of crypto that promises the moon and ships nothing. This person promised nothing, said nothing, and just started mining. Nothing is hidden, you can read every line of the code, but nobody is trying to sell you anything either. Honestly the mystery is half of why I stuck around.



▪ Start mining
Any machine with a CPU. Grab the binaries from the GitHub release or build from source, then:
Code:
plaine-noded
plaine-wallet new --role spend --out miner.key --no-passphrase
plaine-miner <your plne1 address>
First line runs a node and finds the network on its own. Second makes an address. Third mines to that address against your own node. Find a block and the reward lands straight in your address. That is the whole flow. All the rules are in SPEC.md if you want to check them yourself.

bbcode
bbcode


▪ Pools, come on in
Any pool set up for Plaine gets listed here. If you run one, post it in this thread and I will add it to the list below, so miners have one place to find them. Solo mining works fine on its own, a pool just makes things steadier for smaller machines.

Pools and community tools:

Blacksmith — by Lukas Müller (first one up)



▪ About the author
Saying it again so it is clear: I am not them, and I do not own any of this. The GitHub and the website are the author's. The Discord is mine, a place for the community. If the real author ever shows up and wants any of it, I will hand the community side over, the Discord and this thread, all of it, no conditions attached. Until then someone has to keep the lights on for the people who find it and want to mine.

Nothing promised. Nothing hidden. See for yourself.
visibleplayer
Jr. Member
*
Offline

Activity: 162
Merit: 5


View Profile
September 16, 2026, 03:55:53 PM
 #2

How to check balance?
kliory (OP)
Newbie
*
Offline

Activity: 4
Merit: 0


View Profile
September 16, 2026, 04:33:21 PM
 #3

How to check balance?
Just so you know, I’m not a developer; I just decided to create a community since I couldn't find one myself. Join our Discord discord.gg/sMJbqrYPxj


1. Have your node running and synced.
plaine-noded

2. Get your address (if you don't have it handy):
plaine-wallet address --in miner.key

3. Ask the node for the balance over its local RPC (loopback, no login needed):
curl -s -X POST http://127.0.0.1:9257 -H "content-type: application/json" -d "{\"jsonrpc\":\"2.0\",\"id\":1,\"method\":\"account_get\",\"params\":[\"plne1youraddress\"]}"

You get back something like:
{"balance":"11800000","spendable":"11200000","immature":"600000","nonce":0}

Reading it: amounts are in mile, and 1 PLNE = 1,000,000 mile. So 11800000 mile = 11.8 PLNE.
- spendable = coins you can send now.
- immature = freshly mined coinbase that isn't spendable yet (it matures after 60 blocks).
- balance = spendable + immature (everything the address has earned).

That's it. The node must be synced for the number to be current; if account_get returns nothing, the node is still catching up.

visibleplayer
Jr. Member
*
Offline

Activity: 162
Merit: 5


View Profile
September 16, 2026, 05:02:12 PM
 #4

How to check balance?
Just so you know, I’m not a developer; I just decided to create a community since I couldn't find one myself. Join our Discord discord.gg/sMJbqrYPxj


1. Have your node running and synced.
plaine-noded

2. Get your address (if you don't have it handy):
plaine-wallet address --in miner.key

3. Ask the node for the balance over its local RPC (loopback, no login needed):
curl -s -X POST http://127.0.0.1:9257 -H "content-type: application/json" -d "{\"jsonrpc\":\"2.0\",\"id\":1,\"method\":\"account_get\",\"params\":[\"plne1youraddress\"]}"

You get back something like:
{"balance":"11800000","spendable":"11200000","immature":"600000","nonce":0}

Reading it: amounts are in mile, and 1 PLNE = 1,000,000 mile. So 11800000 mile = 11.8 PLNE.
- spendable = coins you can send now.
- immature = freshly mined coinbase that isn't spendable yet (it matures after 60 blocks).
- balance = spendable + immature (everything the address has earned).

That's it. The node must be synced for the number to be current; if account_get returns nothing, the node is still catching up.


Thank you worked
kliory (OP)
Newbie
*
Offline

Activity: 4
Merit: 0


View Profile
September 16, 2026, 05:23:29 PM
 #5

Pool, wallet, explorer and a faster miner, all from one community member

Good news for anyone who did not want to run a node just to mine. Lukas Müller from Blacksmith Miner put together a full set of tools for PLNE and opened them up for everyone:


The pool has its own Discord for support and payout questions: discord.gg/pE22wGn5t

Big thanks to Lukas for stepping in this early. First pool on the network, and a lot of work done for free.

Usual reminder: not made by the project author, use it at your own judgement, and check the URLs before you paste a key anywhere.
norcimo1
Newbie
*
Offline

Activity: 1
Merit: 0


View Profile
September 16, 2026, 10:13:33 PM
 #6

PLAINE is the same author as CRB. CEREBLIX, same dude. HE started with PLNE and BTX explorers that were identical to CRB.  Then he took BTX down...only PLNE with the same look and feel..  be very careful! EMIL YOU ARE BUSTED.. GO AWAY WITH YOUR SCAM!
kliory (OP)
Newbie
*
Offline

Activity: 4
Merit: 0


View Profile
Today at 05:58:56 AM
 #7

PLAINE is the same author as CRB. CEREBLIX, same dude. HE started with PLNE and BTX explorers that were identical to CRB.  Then he took BTX down...only PLNE with the same look and feel..  be very careful! EMIL YOU ARE BUSTED.. GO AWAY WITH YOUR SCAM!

Hello,

I started this thread, but as stated in the main ANN post, I am not the author of the project. I've read your messages across several threads and would like to share my view.

You're accusing a community member, someone with no involvement in the project's creation, of building a pool and explorer that resemble those of another project that turned out to be a scam. At the same time, you claim this same person is the author of Plaine. Yet the author has never revealed his identity and has never created any websites other than Plaine.net and his own GitHub repository.

So you're linking a member of this coin's community to an unrelated scam project while also claiming he created Plaine. That's not only unfounded, it's contradictory and confusing. It might be worth sorting out your own thoughts before presenting them publicly.

The only things the author left to the community are his GitHub and the Plaine.net landing page with the whitepaper. That's it. He made no pools and no explorers. He gave us the code and the website, and everything else came from the community.
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!