June 04, 2026, 12:39:24 AM

Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - dreamwatcher

Pages: [1] 2 3 ... 6
1
Android App Support / Re: GoldCoin Wallet v4.x
« on: June 30, 2016, 08:43:52 AM »
I received Gregs E-mail and I am looking into adding an unspent function to the API on CCE.

The only major issue I can see (which is also an issue for ABE based explorers) is that it is a resource heavy database query.

An unspent function would work very much like a ledger request and would be written as a modified ledger function.

Right now the ledger request is the most resource intensive query (both API and WEB) as there is no way to efficiently calculate and store a ledger for every address.

Ledger requests are generated in real time and thus are limited to the last 100 credits/debits.

However, I am thinking that an unspent function could be lighter then a ledger request.



Exactly what information do you need from an unspent request? The ABE unspent function seems to send back some extraneous information. Would each unspent TX_IN hash and amount be all that you need?

Since this would be a resource heavy query, I would ask that you only use it when necessary and use other API functions when able. For example: Use the address balance function to get the total amount in an address. This is updated and stored every block update so it is a fast light query as it does not have to search the entire database/table(s) or preform multiple comparisons/calculations.

2
Technical Discussion / Re: Goldcoin Block Explorer
« on: July 23, 2015, 06:18:31 PM »
The Goldcoin explorer coin daemon was updated to 7.2.0 a couple of hours ago and it appears everything is running fine.  :)

9 blocks until fork.....


3
Thank you for this reply Eric. Did the difficulty not increase from 60.38 to 65.86 at the fork?

http://gld.cryptocoinexplorer.com/blockrange?range=100

I also wanted to report that my desktop client is now in sync.  :)

Yes it did.
I noticed a large increase in hash rate before the fork and difficulty adjustment. The added  hash rate, though most likely well intentioned to get to the new fork-difficulty adjustment, may have accidentally caused the difficulty adjustment to go up instead of down.

On a side note, I had some issues with the explorer and an orphan block older then 250 blocks. The explorer is set to check for orphans 250 blocks back from the current every time block notify calls the loader, I tracked down the bad block and manually ran it through the orphan correction routine.So far that is the only strangeness I have noticed with the fork. I do not know if there are more, but if anyone runs into a transaction in a block on the explorer that comes up as not found, let me know.



4
Technical Discussion / Re: Goldcoin Block Explorer
« on: April 30, 2015, 02:22:33 PM »
HI,

Received your PM and am responding here due to BTC talk being down.

To be honest there was never an issue, the explorer was not stuck. The block chain simply did not move for 10 hours between 245677 and 24568.

Code: [Select]
{
    "hash" : "c10fe65d199b253b96ff339403a57739ab010501ca323c3a6083559789b617e4",
    "confirmations" : 4,
    "size" : 223,
    "height" : 245677,
    "version" : 1,
    "merkleroot" : "e384f343ce559a944f8d4b3a7b51451a987daf72ed15e1e36f3ba01d606bc70c",
    "tx" : [
        "e384f343ce559a944f8d4b3a7b51451a987daf72ed15e1e36f3ba01d606bc70c"
    ],
    "time" : 1430369616,
    "nonce" : 2230978672,
    "bits" : "1c027d19",
    "difficulty" : 102.86492088,
    "previousblockhash" : "09fa492663213441e5670fa8b03fd36f8b4b8597da80b92352135bf213b92016",
    "nextblockhash" : "199dcd23b32f3717a35915a70cd42c4dd713bd3b7a12d74cbb02e2165b457948"
}

Code: [Select]
{
    "hash" : "199dcd23b32f3717a35915a70cd42c4dd713bd3b7a12d74cbb02e2165b457948",
    "confirmations" : 3,
    "size" : 1885,
    "height" : 245678,
    "version" : 1,
    "merkleroot" : "0b81ddf3ee439ed862d0307d7ebdc2a2ef1183f97a3121ae4b68deb7ba3b2fca",
    "tx" : [
        "3956da831a5432852e2a0166208e2f8f4ca06783dbe6aaf8b7f5fedc50003035",
        "76b0f0d85ee586d57ab1c912dc47545a5e59c9b6d77cfb5474cc4d88a8ec68ef",
        "0bf32da84ff1c6ecf5edced1d50030f09a416378127262e402f5e664301ae089",
        "9efcd3b1829cccbc556a93445f7fd7d89d7648234055a9a99a81568c9b2145de"
    ],
    "time" : 1430404983,
    "nonce" : 3638004082,
    "bits" : "1c027d19",
    "difficulty" : 102.86492088,
    "previousblockhash" : "c10fe65d199b253b96ff339403a57739ab010501ca323c3a6083559789b617e4",
    "nextblockhash" : "c309c446f196abe1011c56b5e3351ab2938e714b462488b1ef70f910ae4d9de2"
}

1430404983 - 1430369616 = 35367 seconds / 3600 seconds per hour = ~9.82 hours

In the current code of the database loader there are two timers. One times each RPC request and times out at 10 seconds. The other times the main database loader loop and times out at 5 minutes. This is accomplished using a python module called Interrupting cow that wraps around the code. When either one these timers timeout, it completely exits (shuts down) the database loader after it raises an exception.
Currently the only way for the explorers to get stuck is if the coin daemon stops responding for whatever reason. However, the database loader will continue to start-up and try to parse blocks if the coin daemon continues to call it through block notify.


People will be able to see how all this works when I release the open-source version of CCE 4.0 (The current version in development). The database loader is ready to be released, and I have had a few developers take a peek at it.
In the mean time ,I have decided to release a full open source package including the web server. I am currently working on the web server at this moment.

The open source version of CCE 4.0 will be a very basic version. The closed source production version is more robust with many more features.
The open source version is meant as a foundation to building a full featured block explorer, though it can serve as an explorer on its own.

I will be releasing the open source version soon. The production version to be rolled out on CCE will come later, along with a new pricing structure and a ton more features.



 

5
Project Development / Re: Important Block Explorer Changes
« on: August 28, 2014, 05:59:40 PM »
The Goldcoin Explorer has been updated to the latest version of CCE 3.5.

Added Features:

Market Ticker is now active. Removed the marquee. Market information updates every time the database updates.

Address owner claim system:

One can now claim ownership of an address on the Goldcoin chain  if it has been seen on the network. For now the owner information shows up in the top 1000 balances. Future plans include making  that information available if one hovers any address in the explorer.
To claim an address, one needs to use the message signing system in the Goldcoin client. Complete instructions can been seen on the address claim page:

http://gld.cryptocoinexplorer.com/claim

Could you please explain what is the purpose of claiming an address. This is still new to me and others and we are trying to learn. Thanks.

In one word:

Vanity   ;)

Bragging rights on the rich list.

There are other reasons a business may want to associate a certain address with their business, even use the rich list as a sort of advertisement. Some people/groups/business/charities may want to use it for transparency so people can easily find the balances for the addresses they are using.

I am sure there are many more reasons, but these are just a few off the top of my head.

6
Project Development / Re: Important Block Explorer Changes
« on: August 28, 2014, 05:35:44 PM »
The Goldcoin Explorer has been updated to the latest version of CCE 3.5.

Added Features:

Market Ticker is now active. Removed the marquee. Market information updates every time the database updates.

Address owner claim system:

One can now claim ownership of an address on the Goldcoin chain  if it has been seen on the network. For now the owner information shows up in the top 1000 balances. Future plans include making  that information available if one hovers any address in the explorer.
To claim an address, one needs to use the message signing system in the Goldcoin client. Complete instructions can been seen on the address claim page:

http://gld.cryptocoinexplorer.com/claim

7
Project Development / Re: Important Block Explorer Changes
« on: August 28, 2014, 01:40:20 PM »
dreamwatcher
You did a nice job on the block explore it looks great.
http://gld.cryptocoinexplorer.com/
Thanks


Still not happy with it. Got to tweak it some more.

8
Project Development / Re: Gldcoin Art
« on: August 27, 2014, 07:26:07 PM »
GoldCoin (GLD) goes to the Moon.




I Think I just found the new background for the Goldcoin explorer at gld.cryptocoinexplorer.com  :)

9
Project Development / Re: Important Block Explorer Changes
« on: August 24, 2014, 08:39:43 PM »
I have a temporary version up right now as I am not happy with the aesthetics .

I think the best background would be the picture of the Goldcoin sphere being held up above the world ....sans the hand.;

I have tried cropping, but the resolution gets too low and it becomes pixelated. If somebody could get that picture without the hand at full resolution, I think that would be the best background.

 

10
Project Development / Re: Important Block Explorer Changes
« on: August 24, 2014, 12:04:54 PM »
Hi everyone I will pay for a year subscription for the block explorer for the community.  I am on holidays right now for about 2 weeks traveling down Oregon and California coast to LA then over to Las Vegas.  I will have to pay when I make it home so as long as someone can cover the first month we should be good for a while.   :)

Your promise is good enough for me, just shoot me an e-mail when you are back from vacation.

I will begin work on updating the Goldcoin explorer.

This change in the way CCE works has been coming for awhile, and honestly I did not like the idea of taking the Goldcoin explorer down, but the need to get off "donation" base funding had to be done.
What you are getting for sponsorship is an explorer written and maintained by somebody with years of experience with block explorers, not just an ABE clone thrown up on a server. CCE does not use ABE but an in house explorer software. The  server setup is also specifically designed around the type of traffic an explorer can generate. Before I started paring down the dead chains, CCE  was over 1.5 million hits a week.

I will use the resources available now to design the face of the explorer. I realize there are changes coming and I will be glad to customize as the community sees fit in the future.

11
Project Development / Re: Important Block Explorer Changes
« on: August 22, 2014, 06:28:26 PM »
I wanted to add that CCE is being updated to version 3.5, which offers better aesthetics and more features.

Take a look at the updated homepage and CCE 3.5 explorers at: www.cryptocoinexplorer.com

Some direct links to updated explorers:

http://hbn.cryptocoinexplorer.com/
http://cap.cryptocoinexplorer.com/
http://ufo.cryptocoinexplorer.com/
http://blc.cryptocoinexplorer.com/

Plus more ..

There are more features to be added to the CCE 3.5 build, including market tickers, graphs, the ability to self-identify addresses on the chain and more..

Official announcement can be see on the CCE official thread at: https://bitcointalk.org/index.php?topic=584847

12
Over this weekend I have been updating the whole of CCE to my own written from the ground up coin explorer. (CCE3)

The testing address gold.cryptocoinexplorer.com is no longer valid. Gold coin was one of a few coins selected for testing CCE3 and one of two coins to have both a ABE based explorer and a CCE3 test explorer.

gld.cryptocoinexplorer.com is now the only address.

CCE3 is far more reliable then the ABE based explorers. It is also much lighter on resources and will allow me to double the explorer density per server.

Somebody has brought it to my attention that the total coin count may be off. In order to 100% sure, I will rebuild the database from scratch again. I had told this person that it was a fresh database, but I had forgotten that because it was one of the test explorers, I did not rebuild the database. My apologies.

CCE3 has a different type of API, but because of sites (like coinmarketcap) set up to get information through the ABE API, I have temporary set up an ABE like API on the new explorers whose coins had an ABE based explorer on CCE. I have been in contact with Gliss about the change, but I do not believe he has seen my PM about this weekend yet. The temporary API should allow most sites to continue to operate until they can adjust for the new API.

The official change over thread:

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



13
Mining & Pools / Re: GoldCoinFor.ME Up for testing!
« on: November 27, 2013, 11:44:55 AM »
It may be its sheer hashing power?  good connection?  anyways it looks like its getting most of the blocks.   Microguy, is the block explorer updated too?  http://gld.cryptocoinexplorer.com/

Both explorers are using 7.1.6:

gold.cryptocoinexplorer.com - I prefer this one used as it is a test version for the CCE3 project

gld.cryptocoinexplorer.com - Production ABE based explorer


14
Mining & Pools / Re: Goldcoin CryptoCoin Mine Pool
« on: November 25, 2013, 06:35:56 PM »
It is after much thought that I have come to this decision. I have no ill will or harbor any bad feelings towards the Goldcoin community.
The development of this coin has become incompatible with the way I see things and how a pool/coin should behave.
There are other Goldcoin pools and I recommended giving them your hash rates.

I have set the auto-payout to 1 so most of you should be/have gotten your balances, unless you do not have a payout address entered. The remaining balances will be paid out by hand as I send e-mails to get the addresses to send

15
Mining & Pools / Re: GoldCoinFor.me Miners READ THIS
« on: November 25, 2013, 05:57:43 PM »
To all the people that have coins in there account on Goldcoinfor.me.
Please transfer your coins in to you GoldCoin Wallet as the Database structure it broken from the blockupdate issue, i will try and keep your account but i will have to edit the table that holds the block info so you will loose your confirmed coins.

Please do this ASAP

NOTE: IF YOUR WALLET ADDRESS IS IN THE DATABASE i will transfer your coins for you.

Thanks NRPatten

I am curious as to what issue you are referring to?

My pool is basically getting all orphans, and I just cross checked  a a large number of blocks the front end claims are orphaned. I cross checked against a local daemon and it turns out all the blocks the front end thinks are orphaned, show up orphaned (0 confirms) on the local daemon.

Am I missing something?



Pages: [1] 2 3 ... 6