Bitcoin Forum
August 09, 2025, 06:08:44 AM *
News: Latest Bitcoin Core release: 29.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: [1]
1  Alternate cryptocurrencies / Altcoin Discussion / Re: Looking for someone to run an ICO (or IEO) for posmonero on: April 18, 2021, 01:59:07 PM
You can track progress on the website at https://posmonero.com/ . There's a whitepaper a list of commits already made in development.
2  Alternate cryptocurrencies / Altcoin Discussion / Re: Looking for someone to run an ICO for posmonero on: April 18, 2021, 11:42:44 AM
ICO will not work anymore if you are going to launch an ICO your chances is very slim, it's better to do an IEO, and be reminded that investors do not want to invest on project where developers are run by anonymous people, be sure to have your own white paper show who you all are and your capability to run your project.
Thanks, I've updated the post.
3  Alternate cryptocurrencies / Altcoin Discussion / Looking for someone to run an ICO (or IEO) for posmonero on: April 18, 2021, 10:25:39 AM
Hi,

I've started work on posmonero, a proof-of-stake fork of monero. I need help running the ICO (or IEO), existing work is up at https://posmonero.com/

If anybody would be interested to work on this with me let me know.
4  Bitcoin / Project Development / Re: bash script to automate proccess of sending BTC to other addresses on: September 02, 2019, 04:57:00 AM
addresses.txt:
Code:
<address1> <amount1>
<address2> <amount2>
...

send.sh:
Code:
#!/bin/bash

arg=''
while read line; do
    address=$(echo $line | cut -d' ' -f1)
    amount=$(echo $line | cut -d' ' -f2)
    if ! [ -z "$arg" ]; then arg="$arg,"; fi
    arg=$arg'"'$address'":'$amount
done <<< "$(cat addresses.txt)"

bitcoin-cli sendmany "" "{$arg}"

Runs:
Code:
bitcoin-cli sendmany "" '{"<address1>":<amount1>,"<address2>":<amount2>,"...":...}'
5  Alternate cryptocurrencies / Announcements (Altcoins) / [ANN] Proof of stake fork of monero on: June 26, 2019, 07:12:17 AM
I've started working a Proof of Stake code-fork of monero, progress can be tracked at https://posmonero.com/
6  Economy / Collectibles / Re: [NEW] Monero Whitepaper Art, on Metal! Limited to 10. on: April 04, 2019, 11:07:52 AM
are there any more of these?
7  Bitcoin / Project Development / Re: Proof of Stake Monero on: January 23, 2019, 10:01:33 AM
I've sent you a DM about your previous work and I began development today.

1. What do you want to work on first?
2. What do you expect for compensation?
8  Bitcoin / Project Development / Proof of Stake Monero on: January 22, 2019, 04:12:04 PM
Hello community,

I'm a programmer and have experience modifying the monero codebase.

I've had this idea that I want to make some minimal changes to monero to make it proof of stake. The changes will be kept minimal so that it could be kept up to date with any enhancements to monero, and adding ledger etc support should be easy.

Looking to grow the team.

- posmonero
Pages: [1]
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!