Bitcoin Forum
May 25, 2024, 06:12:58 AM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: « 1 2 3 4 5 6 [7] 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 »
121  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] Fuck Nazis Virtual Lapel Pin Sale Under Way on: August 26, 2017, 05:15:13 PM
Scamming commies by virtue signaling, I like it and it's refreshing that OP is honest with it.  Grin

However I have my doubts that any nazi will care about anyone holding these or the campaigns launched with it (more details on that would be nice). Also the logo of this token just screams "this is bait":
122  Economy / Services / Re: [FULL]WeiMixer.com Ethereum Mixer | Signature Campaign | $3/post | Jr. and Above on: August 26, 2017, 04:57:22 PM
I joined the campaign, hope it's not full yet.  Wink
123  Local / Projektentwicklung / Re: Entwickle proffessionelle Industr. Mining Einricht 5-50phash suche Mitentwickler on: August 24, 2017, 09:00:34 PM
Im Serverraum (30qm) meines alten Arbeitgebers hat der Klimaanlagentechniker mal vergessen, die Klimaanlage wieder einzuschalten. Nach einer Stunde waren es 45°C, dabei standen gerade mal drei Serverschränke im Raum.  Grin
124  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][XRY] Royalties | Cryptonote | Upto 15% Interest on Deposits on: August 02, 2017, 02:34:29 PM
Don't forget the 0.1% ICO.  Wink
125  Economy / Digital goods / Re: [WTS] Portal 2, Rise of the Triad on: August 02, 2017, 01:51:28 PM
bump
126  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [PRE-ANN] [TESTNET] Infocoin | Uncensorable Data in the Blockchain on: August 01, 2017, 08:29:25 PM
The good news: The test network is running smoothly and I mined a ton of worthless coins.
The bad news: I am so far unable to add extra data to a transaction.

According to https://wiki.bytecoin.org/wiki/Send_transaction_-_Bytecoin_RPC_Wallet_API, this should work:
Code:
curl -X POST -i -H "Accept: application/json" -d '
{  
  "params":
{  
"anonymity":0,
"fee":1000000,
"unlockTime":0,
"paymentId":"",
"addresses":
[  
"iz4Z1u39PLbg3djCXo9CBGdXRLrBtf7ceTfmZAsvhaANUBQixShfRXV8eyaoAQJmqhZYuZyar6ptbXUBNufDi6c51yxiqr8wJ"
],
"transfers":
[  
         {  
           "amount":10,
           "address":"iz5NJ4B5Rc6AmtoiVFoJy2jWGDvKPMGuoGCmNxL2t9sXZ2LUXUJPZLrX3pLau4P9tjY4M2VyoYGPWjn6mETrNsqJ2T21YtMtx"
         }
],
"changeAddress":""
},
"extra":"HELLOWORLD",
"jsonrpc":"2.0",
"id":"test",
"method":"sendTransaction"}
' http://127.0.0.1:8070/json_rpc
This is the output I get from walletd:
Code:
HTTP/1.1 200 OK
Content-Length: 773
Server: CryptoNote-based HTTP server

{"id":"test","jsonrpc":"2.0","result":{"transaction":{"amount":-1000010,"blockIndex":4294967295,"extra":"016d7bb13f30dffd6e62361abbf0eb64b1d946455bd5d2d4bf37f63c11fbece5f0","fee":1000000,"isBase":false,"paymentId":"","state":0,"timestamp":0,"transactionHash":"23dabee38c0354bc8dbd4c800e19d9df1295c5a2fc237969cf8fb3e67c45793a","transfers":[{"address":"iz5NJ4B5Rc6AmtoiVFoJy2jWGDvKPMGuoGCmNxL2t9sXZ2LUXUJPZLrX3pLau4P9tjY4M2VyoYGPWjn6mETrNsqJ2T21YtMtx","amount":10,"type":0},{"address":"iz4Z1u39PLbg3djCXo9CBGdXRLrBtf7ceTfmZAsvhaANUBQixShfRXV8eyaoAQJmqhZYuZyar6ptbXUBNufDi6c51yxiqr8wJ","amount":8999052258,"type":2},{"address":"iz4Z1u39PLbg3djCXo9CBGdXRLrBtf7ceTfmZAsvhaANUBQixShfRXV8eyaoAQJmqhZYuZyar6ptbXUBNufDi6c51yxiqr8wJ","amount":-9000052268,"type":0}],"unlockTime":0}}}
As you can see, the extra field contains no "HELLOWORLD"...
When I put the extra field above the transaction, like this:
Code:
curl -X POST -i -H "Accept: application/json" -d '
{  
  "params":
{  
"extra":"HELLOWORLD",
"anonymity":0,
"fee":1000000,
"unlockTime":0,
"paymentId":"",
"addresses":
[  
"iz4Z1u39PLbg3djCXo9CBGdXRLrBtf7ceTfmZAsvhaANUBQixShfRXV8eyaoAQJmqhZYuZyar6ptbXUBNufDi6c51yxiqr8wJ"
],
"transfers":
[  
         {  
           "amount":10,
           "address":"iz5NJ4B5Rc6AmtoiVFoJy2jWGDvKPMGuoGCmNxL2t9sXZ2LUXUJPZLrX3pLau4P9tjY4M2VyoYGPWjn6mETrNsqJ2T21YtMtx"
         }
],
"changeAddress":""
},
"jsonrpc":"2.0",
"id":"test",
"method":"sendTransaction"}
' http://127.0.0.1:8070/json_rpc
I get:
Code:
{"error":{"code":-32600,"message":"Invalid Request"},"id":"test","jsonrpc":"2.0"}
If somebody could tell me what tag to use, I would be forever grateful. I tried a lot, like extra_padding, tx_extra_tag_padding, basically all variations  of the tags seen in: https://github.com/euleausberlin/infocoin/blob/master/src/CryptoNoteCore/TransactionExtra.h I could think of.

Unfortunately, while there is some information on why and how tx-extra is supposed to be used, there is very little information on how to actually do it. A little push in the right direction from someone who actually knows Cryptonote would be much appreciated.

TODO: Insert data into transactions
Fix evil Cryptonote bug from a few months ago (already have the commit with the necessary changes thanks to moneromoo, but no need to do that until data can be inserted)
Windows wallet
127  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][XRY] Royalties | Cryptonote | Upto 15% Interest on Deposits on: July 31, 2017, 06:18:12 PM
No problem, I was very surprised when I couldn't compile "my" code on Debian 9 that worked totally fine on Debian 8. Luckily this fixed it, although I'm not competent enough to know about the loss of any functionality. Be aware of the typo in one commit as pointed out in one comment.
128  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] [MERKEL] Merkel Coin - ICO started - on: July 31, 2017, 04:48:49 PM
WTF  Roll Eyes
129  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][XRY] Royalties | Cryptonote | Upto 15% Interest on Deposits on: July 31, 2017, 04:34:57 PM
Can't be built from source on gcc7. To fix, these modifications to the source should help (tested on my upcoming project named infocoin): https://github.com/cryptonotefoundation/cryptonote/pull/42

@civilufo: https://bitcointalk.org/index.php?topic=2046563.msg20390317#msg20390317
130  Economy / Digital goods / Re: [WTS] Portal 2, Rise of the Triad on: July 30, 2017, 04:36:44 PM
Another bump. I'm surprised at the missing resonance despite 700+ views, this is cheaper than in any Bitcoin accepting Keystore...

Link to my Steam Inventory, feel free to add me: http://steamcommunity.com/profiles/76561198000645522/inventory/#753
131  Economy / Services / Re: Phone verifications on: July 28, 2017, 11:59:49 PM
That's quite the hefty price for something that can be solved by googling "receive sms online". Tongue
132  Bitcoin / Bitcoin Discussion / Re: BTC-e.com down ! Police detains the owner . on: July 27, 2017, 03:53:34 PM
German article: https://www.heise.de/newsticker/meldung/Geld-gewaschen-und-Mt-Gox-bestohlen-Mutmasslicher-Chef-der-Bitcoin-Boerse-Btc-e-verhaftet-3784467.html

The Russians hacked Mt Gox!!11!  Grin
133  Economy / Digital goods / [WTS] Portal 2, Rise of the Triad on: July 22, 2017, 02:49:27 PM
Portal 2 15$
Rise of the Triad 10$

Games will be sent as Steam gift. Only Cryptocurrencies accepted, no Paypal.

134  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [PRE-ANN] [TESTNET] Infocoin | Uncensorable Data in the Blockchain on: July 21, 2017, 02:20:31 PM
Thanks a lot for the interest. Currently tearing my hairs out while fighting with Visual Studio to compile the Windows wallet.  Grin

Also I found out that you NEVER should use walletd to open a wallet created with simplewallet, as walletd will save the wallet in a different format that can't be opened with simplewallet anymore. Luckily it's possible to export the keys and import them back into simplewallet.

Inserting data into the tx_extra field requires the use of walletd RPC commands at the moment, which is new to me, I have a lot to learn. See https://wiki.bytecoin.org/wiki/Send_transaction_-_Bytecoin_RPC_Wallet_API . If an experienced dev wants to help, shoot me a PM.

Also to clarify: There will be no ICO.
135  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [PRE-ANN] [TESTNET] Infocoin | Uncensorable Data in the Blockchain on: July 21, 2017, 01:52:17 AM
There will be no premine or initial bounties. This is supposed to be a community effort.

Maybe bounties for some services are possible, like the first forum or imageboard that gets it's data from the blockchain.  Wink
136  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [PRE-ANN] [TESTNET] Infocoin | Uncensorable Data in the Blockchain on: July 21, 2017, 01:42:48 AM
Turns out that one needs two seednodes.  Roll Eyes
Network is up and running, feel free to experiment. If you want some coins to test something, PM me and I will send you some tomorrow. As said, the blockchain and genesis block will be reset before release, all mined coins are worthless.

Next steps:
Insert large amounts of data into transactions
Windows wallet
137  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [PRE-ANN] [TESTNET] Infocoin | Uncensorable Data in the Blockchain on: July 20, 2017, 11:41:26 PM
Got around to get a server and fix some compiler errors (New GCC version won't compile things that worked on old version, crazy behavior imo. See https://github.com/cryptonotefoundation/cryptonote/pull/42 ). Having trouble getting the seednode up and running though, any experienced coin dev want to lend me a hand? The seednode won't recieve blocks I mined with a different node:
Code:
23:39:54.997810 INFO [109.90.203.246:55350 INC] Sync data returned unknown top block: 0 -> 10 [10 blocks (0 days) behind]
23:39:54.997810 INFO SYNCHRONIZATION started
23:39:55.344800 WARNING [165.227.143.230:57839 INC] Exception in connectionHandler: TcpConnection::read
23:39:57.346993 WARNING [165.227.143.230:47989 INC] Exception in connectionHandler: TcpConnection::read
23:39:59.349113 WARNING [165.227.143.230:46313 INC] Exception in connectionHandler: TcpConnection::read
23:40:01.350931 WARNING [165.227.143.230:39943 INC] Exception in connectionHandler: TcpConnection::read
23:40:03.352708 WARNING [165.227.143.230:45965 INC] Exception in connectionHandler: TcpConnection::read
23:40:05.356370 WARNING [165.227.143.230:54493 INC] Exception in connectionHandler: TcpConnection::read
23:40:07.048595 INFO [109.90.203.246:55352 INC] Sync data returned unknown top block: 0 -> 10 [10 blocks (0 days) behind]
23:40:07.048595 INFO SYNCHRONIZATION started
23:40:07.358215 WARNING [165.227.143.230:40525 INC] Exception in connectionHandler: TcpConnection::read
23:40:09.360263 WARNING [165.227.143.230:35869 INC] Exception in connectionHandler: TcpConnection::read
My first guess is iptables, will check that (edit: It's not iptables). Anyone having a clue?

Blockchain and genesis block will be reset, so don't mine for profit.  Tongue
138  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [HALAL] HALAL Coin for 1.5 Billion Muslims....Presale & ICO on: July 19, 2017, 10:20:58 AM
Typical ICO scam&run.  Roll Eyes
139  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] Signatum - New Algorithm - Fair Launch - No Premine on: July 19, 2017, 12:24:38 AM
Just noticed that I only get HW errors as well (was solo mining before). 6950 on 16.2.1 (last driver version for this card).  Cry
140  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] Signatum - New Algorithm - Fair Launch - No Premine on: July 18, 2017, 11:50:44 PM
Old 6950 1GB gives ~1.3MH/s, FX-8320 ~400kh/s.
Pages: « 1 2 3 4 5 6 [7] 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!