Bitcoin Forum
April 19, 2024, 12:03:23 PM *
News: Latest Bitcoin Core release: 26.0 [Torrent]
 
   Home   Help Search Login Register More  
Poll
Question: Good or bad idea?
Good idea - 9 (90%)
Bad idea - 1 (10%)
Total Voters: 10

Pages: « 1 [2]  All
  Print  
Author Topic: [PRE-ANN] [TESTNET] Infocoin | Uncensorable Data in the Blockchain  (Read 2288 times)
leonard852
Full Member
***
Offline Offline

Activity: 372
Merit: 100



View Profile
July 21, 2017, 01:41:26 PM
 #21

Great new ANN!   Doing great DEV. Keep this up .The project is very good, the future will likely be one of the very successful projects
1713528203
Hero Member
*
Offline Offline

Posts: 1713528203

View Profile Personal Message (Offline)

Ignore
1713528203
Reply with quote  #2

1713528203
Report to moderator
1713528203
Hero Member
*
Offline Offline

Posts: 1713528203

View Profile Personal Message (Offline)

Ignore
1713528203
Reply with quote  #2

1713528203
Report to moderator
1713528203
Hero Member
*
Offline Offline

Posts: 1713528203

View Profile Personal Message (Offline)

Ignore
1713528203
Reply with quote  #2

1713528203
Report to moderator
"Bitcoin: mining our own business since 2009" -- Pieter Wuille
Advertised sites are not endorsed by the Bitcoin Forum. They may be unsafe, untrustworthy, or illegal in your jurisdiction.
kicauklaten
Sr. Member
****
Offline Offline

Activity: 840
Merit: 251



View Profile WWW
July 21, 2017, 01:48:17 PM
 #22

I think Infocoin is great project and many people support this.
Goodluck dev

abjingyun
Newbie
*
Offline Offline

Activity: 50
Merit: 0


View Profile
July 21, 2017, 01:54:00 PM
 #23

Great new ANN!,Interesting project,watching and going to participate, I think this project have a bright future .
malcolml4
Full Member
***
Offline Offline

Activity: 145
Merit: 100


View Profile
July 21, 2017, 01:56:45 PM
 #24

support,the idea is good, will pay attention to your post and further information. Cheesy
abjingyun
Newbie
*
Offline Offline

Activity: 50
Merit: 0


View Profile
July 21, 2017, 02:12:47 PM
 #25


It seems a pretty interesting project, ICO is pretty good, but I'm not sure to join,
I'll keep seeing the next developments and within a few days left to join the signature campaign, I'll keep seeing until I decide to join or not, good luck
eule (OP)
Hero Member
*****
Offline Offline

Activity: 756
Merit: 501


View Profile
July 21, 2017, 02:20:31 PM
 #26

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.

eule (OP)
Hero Member
*****
Offline Offline

Activity: 756
Merit: 501


View Profile
August 01, 2017, 08:29:25 PM
 #27

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

intec
Full Member
***
Offline Offline

Activity: 265
Merit: 100


View Profile
August 09, 2017, 12:40:57 AM
 #28

Keep in mind how dangerous a currency like this can be.

Here is why you should not do it as of now :

You have no tools to protect this decentralized blockchain.
julerz12
Legendary
*
Offline Offline

Activity: 2310
Merit: 1108


Telegram: @julerz12


View Profile WWW
August 09, 2017, 12:48:27 AM
 #29

Great project all in all, but the name.. not really,
it's already been taken: https://bitcointalk.org/index.php?topic=1967550.0
(Note that this Info coin is already listed on some exchange)
So, I would suggest another name. Maybe Datacoin?  Grin

bugreporterr
Newbie
*
Offline Offline

Activity: 30
Merit: 0


View Profile
August 09, 2017, 11:09:26 AM
 #30

https://bitcointalk.org/index.php?topic=325735.0

Datacoin already taken and still active
GameKyuubi
Sr. Member
****
Offline Offline

Activity: 253
Merit: 1413


DTCxNMC


View Profile
August 26, 2017, 08:25:26 AM
 #31

Datacoin already exists and is still alive in the shadows.  Maybe you should work with the Datacoin community?  There are still quite a few dedicated supporters remaining.

BTC: 15SLrNo6PKVfsH5JLtatJcVkSQXCk1LXyq
full stack Node
Pages: « 1 [2]  All
  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!