Pages:
Author

Topic: [ANN] Slimcoin : Proof of Burn NEW BLOCK GEN, Mineable by low power computer! - page 55. (Read 284959 times)

legendary
Activity: 1092
Merit: 1000
40SLM transaction fee for sending coins from wallet?! WTF?!

Only if you transfer to BTER

I didn't have to pay 40SLM (or anything close to that) when I transferred SLM to BTER.

Yes, it was a joke..
newbie
Activity: 19
Merit: 0
40SLM transaction fee for sending coins from wallet?! WTF?!

Only if you transfer to BTER

I didn't have to pay 40SLM (or anything close to that) when I transferred SLM to BTER.
hero member
Activity: 490
Merit: 500
40SLM transaction fee for sending coins from wallet?! WTF?!

Only if you transfer to BTER

No wonder we have no volume..
legendary
Activity: 1092
Merit: 1000
40SLM transaction fee for sending coins from wallet?! WTF?!

Only if you transfer to BTER
hero member
Activity: 490
Merit: 500
40SLM transaction fee for sending coins from wallet?! WTF?!
legendary
Activity: 872
Merit: 1010
Coins, Games & Miners
...

not that old.. peercoin doesn't have it either, but there is a Peerunity wallet.. which is a fork from the origional.
It has a commit done Jun 10, 2014

https://github.com/glv2/peercoin/commits/rpc-rawtransaction

That is interesting, because i want to support peercoin too, but as long as getrawtransaction isn't implemented, it isn't possible to use the daemons.
hero member
Activity: 798
Merit: 500

slimcoin dev, could you add the getrawtransaction RPC method?
I think that's what that other developer asked about - but I don't know, not privy to their PMs Wink

I'm not going to continue on a block explorer until that method is implemented.

I asked for "getrawtransaction" indeed... but not for a block explorer, but for my IAP system. I began working on it but i'm currently bogged down by my day work and on my "free" time i'm migrating my transaction server to an external hosted instance and adding coins with big volumes to my system.

Anyways, implementing "getrawtransaction" and its related functions is a PITA because the codebase is based on an OLD Peercoin fork. Gotta check if PPC implemented that and port it eventually.

not that old.. peercoin doesn't have it either, but there is a Peerunity wallet.. which is a fork from the origional.
It has a commit done Jun 10, 2014

https://github.com/glv2/peercoin/commits/rpc-rawtransaction
legendary
Activity: 872
Merit: 1010
Coins, Games & Miners

slimcoin dev, could you add the getrawtransaction RPC method?
I think that's what that other developer asked about - but I don't know, not privy to their PMs Wink

I'm not going to continue on a block explorer until that method is implemented.

I asked for "getrawtransaction" indeed... but not for a block explorer, but for my IAP system. I began working on it but i'm currently bogged down by my day work and on my "free" time i'm migrating my transaction server to an external hosted instance and adding coins with big volumes to my system.

Anyways, implementing "getrawtransaction" and its related functions is a PITA because the codebase is based on an OLD Peercoin fork. Gotta check if PPC implemented that and port it eventually.
hero member
Activity: 798
Merit: 500

slimcoin dev, could you add the getrawtransaction RPC method?
I think that's what that other developer asked about - but I don't know, not privy to their PMs Wink

I'm not going to continue on a block explorer until that method is implemented.
hero member
Activity: 798
Merit: 500
i did it by database, not getinfo, but oke Wink

Total blocks
SELECT sum(mint) FROM Blocks
347.663,10

Total by Proof of Work
SELECT sum(mint) FROM Blocks where prooftype = 0
237.618,64

Total by Proof of Stake   MUST BE WRONG !?  i guess because i use a decimal precision of 2
SELECT sum(mint) FROM Blocks where prooftype = 1
5,46

Total by Proof of Burn
SELECT sum(mint) FROM Blocks where prooftype = 2
110.039,00


don't forget there are coins burning
146.777,410846

so the total amount is currently
347.663,10 - 146.777,410846 = 200.885,689154
hero member
Activity: 686
Merit: 500
FUN > ROI
it seems getrawtransaction is not implemented indeed, and gettransaction doesn't allow non-wallet transactions?
a block explorer won't be able to show transactions then.. or eh..
Correct Smiley

slimcoin dev, could you add the getrawtransaction RPC method?
I think that's what that other developer asked about - but I don't know, not privy to their PMs Wink

I actually have a partial database of the things you can get with getblock() (which were the source of the graphs), but yeah a block explorer should be able to work on the current state of the chain and include all the usual info.  Though personally I don't care for some 'Slimcoin rich list', it seems it's popular. Lord knows why.

how many coins exist?
Try getinfo in the console.

Code:
getinfo
...
"blocks" : 31533,
"moneysupply" : 347488.41600500,

or via debug.log:
Code:
SetBestChain: new best=5d2a545e78a53fbb61b5  height=31533  trust=13321961995  moneysupply=347488.416005 nEffectiveBurnCoins=146778.282707
hero member
Activity: 798
Merit: 500
how many coins exist?

i can answer that in a minute or 10 or so Smiley
hero member
Activity: 798
Merit: 500
The RPC is really slow, so filling the database takes time..
Is that with or without connections?

One thing in particular that's problematic is getting at transactions; can't get raw transactions through the JSON-RPC to find what address spent to what other address, etc.

it seems getrawtransaction is not implemented indeed, and gettransaction doesn't allow non-wallet transactions?
a block explorer won't be able to show transactions then.. or eh..

slimcoin dev, could you add the getrawtransaction RPC method?

for example from litecoin
https://github.com/litecoin-project/litecoin/blob/master-0.8/src/rpcrawtransaction.cpp
legendary
Activity: 1498
Merit: 1000
hero member
Activity: 798
Merit: 500
stupid rpc, i didn't handle exceptions and now my parsing stopped at block 24787 with "System.Net.WebExceptionStatus.Timeout"

.. modified code to continue at the last hash found in database, to catch up Smiley

i will need to handle "orphaps" and "invalid" blocks..

soon more Smiley
hero member
Activity: 686
Merit: 500
FUN > ROI
Where is block cxplorer and difficluty chart?
You know the former is the subject of the 2 posts before yours, as well as the one 5 posts back from yours, right?
tl(azy);dr: There isn't a block explorer yet.
difficulty chart would follow from that - scroll back some pages to see what it looks like, as it continually adjusts and so looks a bit chaotic (compared to coins that have a set period / number of blocks for difficulty adjustments).
legendary
Activity: 1498
Merit: 1000
Where is block cxplorer and difficluty chart?
hero member
Activity: 798
Merit: 500
The RPC is really slow, so filling the database takes time..

Is that with or without connections?

One thing in particular that's problematic is getting at transactions; can't get raw transactions through the JSON-RPC to find what address spent to what other address, etc.

with 7 connections..

i did not try transactions yet, just parsing blocks at the moment.. i will post some simple statistics in here soon like

- total pow blocks
- total mint by pow
- total pos blocks
- total mint by pos
- total pob blocks
- total mint by pob

something else people want to know?
hero member
Activity: 686
Merit: 500
FUN > ROI
The RPC is really slow, so filling the database takes time..
Is that with or without connections?

One thing in particular that's problematic is getting at transactions; can't get raw transactions through the JSON-RPC to find what address spent to what other address, etc.
legendary
Activity: 1092
Merit: 1000
Developers that release coins and do not work on them full-time are fucking retards. At least for the first month or two!! We've been waiting for over a week for the PoS fix. Wallets with 2k coins are using up all CPU power due to the PoS bug. FIX IT!
Pages:
Jump to: