Bitcoin Forum
April 28, 2024, 05:42:59 AM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: « 1 ... 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 [320] 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 ... 442 »
  Print  
Author Topic: [DVC]DevCoin - Official Thread - Moderated  (Read 1058398 times)
This is a self-moderated topic. If you do not want to be moderated by the person who started this topic, create a new topic.
develCuy
Sr. Member
****
Offline Offline

Activity: 470
Merit: 350



View Profile WWW
October 04, 2015, 06:59:44 PM
 #6381

I can implement it but gonna require a good server to keep a separate index of Addresses from all transactions and to calculate balances, it will constantly fetch transactions from seed nodes and serve the website so has to be separate infrastructure for resilience.

Is there any chance to have and ongoing bounty of half a share in order to pay an small VPS? I plan to implement historical value in several currencies as well (http://www.devtome.com/doku.php?id=devcoin_bounty_now#block_explorer_with_historical_value), but is gonna take longer...

New Devcoin blockchain explorer, powered by Ophal.org:

http://www.coinage.tk/devcoin

Feedback is welcome!
Nice work, need to be able to search by address ideally for my useage though.

Fuzzybear
Does the utxo set not have what you need?

@sidhujag, do you mean this: https://bitcoin.org/en/developer-reference#gettxoutsetinfo ?
You can use that function but get the utxo of each address or the address you search for from there in a custom function. You can get the size of utxo and calculate balance like the function does.

I'm using the RPC API. Looking for a solution in the forums and stackoverflow, there people suggests to generate a separate database as explained before. Do you think it is viable to add indexes for balances and addresses as well as implementing new functionality for retrieving that info via the RPC API?

Join Devcoin: Telegram, Reddit, Discord, Facebook, Keybase  | The Devcoin Project - from the many, one. From one, the source
1714282979
Hero Member
*
Offline Offline

Posts: 1714282979

View Profile Personal Message (Offline)

Ignore
1714282979
Reply with quote  #2

1714282979
Report to moderator
Make sure you back up your wallet regularly! Unlike a bank account, nobody can help you if you lose access to your BTC.
Advertised sites are not endorsed by the Bitcoin Forum. They may be unsafe, untrustworthy, or illegal in your jurisdiction.
1714282979
Hero Member
*
Offline Offline

Posts: 1714282979

View Profile Personal Message (Offline)

Ignore
1714282979
Reply with quote  #2

1714282979
Report to moderator
sidhujag
Legendary
*
Offline Offline

Activity: 2044
Merit: 1005


View Profile
October 04, 2015, 08:02:58 PM
 #6382

I can implement it but gonna require a good server to keep a separate index of Addresses from all transactions and to calculate balances, it will constantly fetch transactions from seed nodes and serve the website so has to be separate infrastructure for resilience.

Is there any chance to have and ongoing bounty of half a share in order to pay an small VPS? I plan to implement historical value in several currencies as well (http://www.devtome.com/doku.php?id=devcoin_bounty_now#block_explorer_with_historical_value), but is gonna take longer...

New Devcoin blockchain explorer, powered by Ophal.org:

http://www.coinage.tk/devcoin

Feedback is welcome!
Nice work, need to be able to search by address ideally for my useage though.

Fuzzybear
Does the utxo set not have what you need?

@sidhujag, do you mean this: https://bitcoin.org/en/developer-reference#gettxoutsetinfo ?
You can use that function but get the utxo of each address or the address you search for from there in a custom function. You can get the size of utxo and calculate balance like the function does.

I'm using the RPC API. Looking for a solution in the forums and stackoverflow, there people suggests to generate a separate database as explained before. Do you think it is viable to add indexes for balances and addresses as well as implementing new functionality for retrieving that info via the RPC API?
Just copy the existing rpc function we spoke about but pass in a searchable address and filter based on that... Call the function via interface.

That way search might take a while but your not storing another db.. Unless feature is heavily used then might make sense to optimize to a new db.
develCuy
Sr. Member
****
Offline Offline

Activity: 470
Merit: 350



View Profile WWW
October 04, 2015, 08:06:57 PM
 #6383

I can implement it but gonna require a good server to keep a separate index of Addresses from all transactions and to calculate balances, it will constantly fetch transactions from seed nodes and serve the website so has to be separate infrastructure for resilience.

Is there any chance to have and ongoing bounty of half a share in order to pay an small VPS? I plan to implement historical value in several currencies as well (http://www.devtome.com/doku.php?id=devcoin_bounty_now#block_explorer_with_historical_value), but is gonna take longer...

New Devcoin blockchain explorer, powered by Ophal.org:

http://www.coinage.tk/devcoin

Feedback is welcome!
Nice work, need to be able to search by address ideally for my useage though.

Fuzzybear
Does the utxo set not have what you need?

@sidhujag, do you mean this: https://bitcoin.org/en/developer-reference#gettxoutsetinfo ?
You can use that function but get the utxo of each address or the address you search for from there in a custom function. You can get the size of utxo and calculate balance like the function does.

I'm using the RPC API. Looking for a solution in the forums and stackoverflow, there people suggests to generate a separate database as explained before. Do you think it is viable to add indexes for balances and addresses as well as implementing new functionality for retrieving that info via the RPC API?
Just copy the existing rpc function we spoke about but pass in a searchable address and filter based on that... Call the function via interface.

That way search might take a while but your not storing another db.. Unless feature is heavily used then might make sense to optimize to a new db.

@sidhujag, I found this: https://counterparty.io/docs/bitcoin_core/ a patched Bitcoin core v0.10.2 that adds addrindex. And yeah, it will be heavely used so...

gettxoutsetinfo accepts no params so I'm lost there. We are trying to get balance of all address, not only the ones in local wallet.

Join Devcoin: Telegram, Reddit, Discord, Facebook, Keybase  | The Devcoin Project - from the many, one. From one, the source
sidhujag
Legendary
*
Offline Offline

Activity: 2044
Merit: 1005


View Profile
October 04, 2015, 08:13:48 PM
 #6384

I can implement it but gonna require a good server to keep a separate index of Addresses from all transactions and to calculate balances, it will constantly fetch transactions from seed nodes and serve the website so has to be separate infrastructure for resilience.

Is there any chance to have and ongoing bounty of half a share in order to pay an small VPS? I plan to implement historical value in several currencies as well (http://www.devtome.com/doku.php?id=devcoin_bounty_now#block_explorer_with_historical_value), but is gonna take longer...

New Devcoin blockchain explorer, powered by Ophal.org:

http://www.coinage.tk/devcoin

Feedback is welcome!
Nice work, need to be able to search by address ideally for my useage though.

Fuzzybear
Does the utxo set not have what you need?

@sidhujag, do you mean this: https://bitcoin.org/en/developer-reference#gettxoutsetinfo ?
You can use that function but get the utxo of each address or the address you search for from there in a custom function. You can get the size of utxo and calculate balance like the function does.

I'm using the RPC API. Looking for a solution in the forums and stackoverflow, there people suggests to generate a separate database as explained before. Do you think it is viable to add indexes for balances and addresses as well as implementing new functionality for retrieving that info via the RPC API?
Just copy the existing rpc function we spoke about but pass in a searchable address and filter based on that... Call the function via interface.

That way search might take a while but your not storing another db.. Unless feature is heavily used then might make sense to optimize to a new db.

@sidhujag, I found this: https://counterparty.io/docs/bitcoin_core/ a patched Bitcoin core v0.10.2 that adds addrindex. And yeah, it will be heavely used so...

gettxoutsetinfo accepts no params so I'm lost there. We are trying to get balance of all address, not only the ones in local wallet.
The utxo db has info of all addresses.. Addrindex might be doing just that, you can add that to dvc core.. Why not use bitcore? Someone did a bitcore port to dvc you know that? We have an insight dvc explorer.
Wekkel
Legendary
*
Offline Offline

Activity: 3108
Merit: 1531


yes


View Profile
October 10, 2015, 09:33:16 PM
 #6385

I picked up Devtome writing again. Good times will visit Devcoin at some point.

Lovethecoins
Hero Member
*****
Offline Offline

Activity: 658
Merit: 500


View Profile
October 11, 2015, 05:22:27 AM
 #6386

It has been years since I have looked at this coin!

alt19
Sr. Member
****
Offline Offline

Activity: 328
Merit: 250


View Profile
October 18, 2015, 01:38:57 PM
Last edit: October 18, 2015, 04:15:51 PM by alt19
 #6387

Estimated DVC inflation or total supply over the next 10 years?
The information is needed for http://alt19.com/19/cryptocurrency.php

Thank you.
alt19
Sr. Member
****
Offline Offline

Activity: 328
Merit: 250


View Profile
October 21, 2015, 10:14:56 AM
 #6388

and do you have or plan to have checkpoints?
merged mining?
K1773R
Legendary
*
Offline Offline

Activity: 1792
Merit: 1008


/dev/null


View Profile
October 21, 2015, 10:15:34 AM
 #6389

sheesh. stop spamming each coin thread and use the search function!

[GPG Public Key]
BTC/DVC/TRC/FRC: 1K1773RbXRZVRQSSXe9N6N2MUFERvrdu6y ANC/XPM AK1773RTmRKtvbKBCrUu95UQg5iegrqyeA NMC: NK1773Rzv8b4ugmCgX789PbjewA9fL9Dy1 LTC: LKi773RBuPepQH8E6Zb1ponoCvgbU7hHmd EMC: EK1773RxUes1HX1YAGMZ1xVYBBRUCqfDoF BQC: bK1773R1APJz4yTgRkmdKQhjhiMyQpJgfN
sidhujag
Legendary
*
Offline Offline

Activity: 2044
Merit: 1005


View Profile
October 22, 2015, 05:55:04 AM
 #6390

and do you have or plan to have checkpoints?
merged mining?
Yes to both
halibit
Legendary
*
Offline Offline

Activity: 1596
Merit: 1006



View Profile
October 22, 2015, 05:04:48 PM
 #6391

Hello from alcurEX.
Devcoin has been added on alcurEX.

Wallet is already installed and market opened on alcurEX.

Would be nice if you add us in your OP list.
Thank you
-halibit-

Devcoin - Bitcoin market
https://alcurex.org/index.php/crypto/market?pair=DVC_BTC
Welcome trading!
-halibit-


ALCUREX is an cryptocurrency financing company registered in Finland.
Business ID: 2612007-8 FINLAND
* Say NO to KYC with cryptos. *
microteam
Newbie
*
Offline Offline

Activity: 52
Merit: 0


View Profile WWW
October 22, 2015, 06:30:48 PM
 #6392

Hello from alcurEX.
Devcoin has been added on alcurEX.

Wallet is already installed and market opened on alcurEX.

Would be nice if you add us in your OP list.
Thank you
-halibit-

Devcoin - Bitcoin market
https://alcurex.org/index.php/crypto/market?pair=DVC_BTC
Welcome trading!
-halibit-

https://i.imgur.com/PeGCkdp.png
ALCUREX is an cryptocurrency financing company registered in Finland.
Business ID: 2612007-8 FINLAND
* Say NO to KYC with cryptos. *
New markets opened
Devcoin - Litecoin market
https://alcurex.org/index.php/crypto/market?pair=DVC_LTC
Devcoin - microCoin market
https://alcurex.org/index.php/crypto/market?pair=DVC_MRC
sidhujag
Legendary
*
Offline Offline

Activity: 2044
Merit: 1005


View Profile
October 22, 2015, 09:14:30 PM
 #6393

Hello from alcurEX.
Devcoin has been added on alcurEX.

Wallet is already installed and market opened on alcurEX.

Would be nice if you add us in your OP list.
Thank you
-halibit-

Devcoin - Bitcoin market
https://alcurex.org/index.php/crypto/market?pair=DVC_BTC
Welcome trading!
-halibit-


ALCUREX is an cryptocurrency financing company registered in Finland.
Business ID: 2612007-8 FINLAND
* Say NO to KYC with cryptos. *

Build your exchange using backend from graphene and then we're talking
novacadian
Full Member
***
Offline Offline

Activity: 232
Merit: 104



View Profile WWW
October 23, 2015, 12:24:35 AM
 #6394

Last time installing the Devcoin wallet it was pretty straight forward. This time there is an error:

Code:
Downloading receiver_0.csv base file./home/booner/.devcoin/receiver/receiver_0.csv
Warning, writeFileText in receiver.h won't write the file:
/home/booner/.devcoin/receiver/receiver_0.csv
because the text is blank.
No coin addresses were found, there may be something wrong with the receiver_x.csv files.

Made sure it was not a permission thing. Looks like the receiver_0.csv is not available.

Any insights?

Thanks,

- Nova

DVC Address : 1EfsiVUECqmR5Qx7C4PkmwadDXYuSGzssL
Qtera
Member
**
Offline Offline

Activity: 161
Merit: 14


View Profile WWW
October 23, 2015, 01:15:25 AM
 #6395

Hiya Nova!  How many files are present in that directory? Are there any other .csv files in there?

-CpSilent

Earn Devcoins by Writing
Devcoin address: 122fZgNs8jL72jbUFstnpvG6EE8GFJA2Xr
Steemit Profile Account
alt19
Sr. Member
****
Offline Offline

Activity: 328
Merit: 250


View Profile
October 24, 2015, 02:36:12 PM
Last edit: October 24, 2015, 03:05:52 PM by alt19
 #6396

and do you have or plan to have checkpoints?
merged mining?
Yes to both

thank you, what kind of checkpoints?
did you reverse transactions before?
how do you control checkpoints?

and use the search function!

I'm using the search mostly.
I've never asked anything before, now I have to.
I'm doing a revision and there are some questions, and I have to get answers from devs/community to avoid any mistake.
sidhujag
Legendary
*
Offline Offline

Activity: 2044
Merit: 1005


View Profile
October 24, 2015, 10:19:26 PM
 #6397

and do you have or plan to have checkpoints?
merged mining?
Yes to both

thank you, what kind of checkpoints?
did you reverse transactions before?
how do you control checkpoints?

and use the search function!

I'm using the search mostly.
I've never asked anything before, now I have to.
I'm doing a revision and there are some questions, and I have to get answers from devs/community to avoid any mistake.

normal bitcoin checkpoints last updated a year ago i believe
novacadian
Full Member
***
Offline Offline

Activity: 232
Merit: 104



View Profile WWW
October 24, 2015, 10:51:29 PM
 #6398

Last time installing the Devcoin wallet it was pretty straight forward. This time there is an error:

Code:
Downloading receiver_0.csv base file./home/booner/.devcoin/receiver/receiver_0.csv
Warning, writeFileText in receiver.h won't write the file:
/home/booner/.devcoin/receiver/receiver_0.csv
because the text is blank.
No coin addresses were found, there may be something wrong with the receiver_x.csv files.

Made sure it was not a permission thing. Looks like the receiver_0.csv is not available.

Any insights?

Thanks,

- Nova

There appears to be no csv file Qtera.

- Nova

DVC Address : 1EfsiVUECqmR5Qx7C4PkmwadDXYuSGzssL
Qtera
Member
**
Offline Offline

Activity: 161
Merit: 14


View Profile WWW
October 25, 2015, 08:12:59 PM
 #6399

Would it help if I send you the .csv file? It doesn't seem dependent on the wallet itself, so I think it shouldn't be a problem, right? Did you try making an empty file?

Earn Devcoins by Writing
Devcoin address: 122fZgNs8jL72jbUFstnpvG6EE8GFJA2Xr
Steemit Profile Account
K1773R
Legendary
*
Offline Offline

Activity: 1792
Merit: 1008


/dev/null


View Profile
October 26, 2015, 03:33:53 PM
 #6400

Last time installing the Devcoin wallet it was pretty straight forward. This time there is an error:

Code:
Downloading receiver_0.csv base file./home/booner/.devcoin/receiver/receiver_0.csv
Warning, writeFileText in receiver.h won't write the file:
/home/booner/.devcoin/receiver/receiver_0.csv
because the text is blank.
No coin addresses were found, there may be something wrong with the receiver_x.csv files.

Made sure it was not a permission thing. Looks like the receiver_0.csv is not available.

Any insights?

Thanks,

- Nova

There appears to be no csv file Qtera.

- Nova
you can get all receiver csv from here: http://devcoin.darkgamex.ch/

[GPG Public Key]
BTC/DVC/TRC/FRC: 1K1773RbXRZVRQSSXe9N6N2MUFERvrdu6y ANC/XPM AK1773RTmRKtvbKBCrUu95UQg5iegrqyeA NMC: NK1773Rzv8b4ugmCgX789PbjewA9fL9Dy1 LTC: LKi773RBuPepQH8E6Zb1ponoCvgbU7hHmd EMC: EK1773RxUes1HX1YAGMZ1xVYBBRUCqfDoF BQC: bK1773R1APJz4yTgRkmdKQhjhiMyQpJgfN
Pages: « 1 ... 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 [320] 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 ... 442 »
  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!