Bitcoin Forum
July 03, 2024, 05:23:35 PM *
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 »
181  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] SOIL | Environmental | Agriculture | Quixotic | Hackathon | Contracts on: May 09, 2016, 02:27:38 PM
I was thinking why some people keep all their coins at the exchange. 1-There is no POS 2- The wallet is difficult to use for a beginner.  Maybe we need some videos for running the wallet and mining. Not much we can do about pos. Just a thought.....
and (3) they are newbies who have not yet lived through the experience of loosing everything because an exchange got hacked. Some kids cannot be taught, and only learn that fire is hot by burning themselves at least once.

A simple principle:
If on-exchange, then coins should be kept in nearby sell orders, the remaining ones in your home wallet.
So: Think which part is long-term investment, and which part is short term gamble. Only the 2nd part online.

Because such carelessness can also turn out to have an antisocial component - when a large amount of VRC was stolen, the thief dumped the price into oblivion = bad for all coin holders, also for those who kept their coins off-exchange.

Economic viewpoint: The exchange only gives you an "IOU" for the coins you are sending them. So you do are not owning those coins anymore which are on-exchange, because you don't own the private keys which allow to send them anywhere..


Concrete help for newbs:

 ... reminding of my CLI wallet simplifying scripts: https://github.com/altsheets/ethjsre - they do make my life much easier. (Old post)

If you send me all the interesting standard commands that are usually used when mining, I could also add those to ethJSRE.

182  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] SOIL | ETHEREUM BASED | ENVIRONMENTAL | AGRICULTURE | SCIENCE | HACKATHON on: May 03, 2016, 01:34:39 PM
An interesting compilation of thoughts on "smart contracts", and their limitations:
http://bravenewcoin.com/news/beware-the-impossible-smart-contract/
Not sure every statement is correct -and as absolute as he puts it- but: good article.

183  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][HZ] Horizon Long + Fair Distribution|Decentralized Asset Exchange on: May 03, 2016, 01:03:10 PM
Correct me if I am wrong

... you want to keep track of your past offers, and
depending on price evolution and your own profit goals...

... cancel, raise, or lower your orders - right?
... keeps track of your past gains, and losses - right?

So you hope to define your parameters, and then only want
to infrequently check - if everything is working like planned.

As HZ assets are the tradeable things here inside the system,
you mean orders for buy/sell HZ assets - right?



Minimum needs:
* a small DB with your choices (trigger prices, loss limits etc.), and past tx ids;
* (perhaps a user-friendly frontend to change them or:) a config file
* a short sequence of several HZ API calls.
* someone coding it.
* - i.e. salary/crowdfund/angel/asset, to be able to realize the project

A first iteration of that does not sound like a terribly difficult task.
And an automated trading engine might raise interest from people.


And yes - one outcome could be a command line tool that is automated as a cron job.

As I said - LEGO. Not Playmobil - you don't buy an unchangeable toy - but
many new toys can be assembled from the given parts. Figuratively speaking.


Do you see what I am aiming at, above?

Perhaps if I have not understood your exact application,
then you could layout a concrete detailed example case;
with conditional paths -depending on what the market can do-
that would make it easier for anyone who'd be coding that.

Hope that helps
:-)
184  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] Ethereum: Welcome to the Beginning on: May 02, 2016, 06:34:27 PM
https://github.com/ethereum/EIPs/issues/55

anyone here knowledgable? Thx

Please help me with two small questions:

When I am given an ETH address 0x... - I want to check if it is valid, in Python.
Is there some kind of checksum embedded into an ETH address, like a cross sum?
Any ready (Python) code for checking?

What is the maximum (ASCII string) length of an ETH 0x... address?
Is it the same for contract addresses?

Thanks a lot!


@wallflies you are my ETH hero of the day. Much appreciated!

Thx :-)
185  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] Ethereum: Welcome to the Beginning on: May 02, 2016, 02:45:59 PM
anyone here knowledgable? Thx

Please help me with two small questions:

When I am given an ETH address 0x... - I want to check if it is valid, in Python.
Is there some kind of checksum embedded into an ETH address, like a cross sum?
Any ready (Python) code for checking?

What is the maximum (ASCII string) length of an ETH 0x... address?
Is it the same for contract addresses?

Thanks a lot!

186  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][HZ] Horizon Long + Fair Distribution|Decentralized Asset Exchange on: May 02, 2016, 02:29:40 PM

I am not sure that I have understood what you are planning
to achieve, but to me it sounds as if you can create your own app
that will do what you are wishing for - by using the HZ API functions.
"It is like LEGO" someone famous said, long ago, about this system.


Also, is there some kind of command-line tool one can use to place offers?

Almost everything that can be done via the HTML wallet
... can also be done by querying the API of HZ.

That is done by http GET and POST requests, not commandline.
i.e. to build a commandline tool would not be impossible, but is also not needed.


I suggest you start studying the functions on http://localhost:7776/test

The wiki manual is very good, see http://wiki.nxtcrypto.org/wiki/The_Nxt_API
But beware: When NXT adds new functions (NXT is v1.8.2) and they edit the wiki,
they sometimes forget to update the version version number at the top. Anyways,
you can go back in time with the wiki history
http://wiki.nxtcrypto.org/mediawiki/index.php?title=The_Nxt_API&action=history
I think HZ is based on NXT 1.5.15 (?), perhaps a HZ dev
can point us to the most appropriate historical wikipage there.

But ... using the API functions is pretty straightforward, if you know HZ a bit already.


Later, for better inspecting your API results, I suggest you get a RESTclient. See
https://twitter.com/altsheets/status/725286587853070336

Have fun with it. The API is a pretty amazing system, really.

187  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] Ethereum: Welcome to the Beginning on: April 29, 2016, 02:04:08 PM
Please help me with two small questions:

When I am given an ETH address 0x... - I want to check if it is valid, in Python.
Is there some kind of checksum embedded into an ETH address, like a cross sum?
Any ready (Python) code for checking?

What is the maximum (ASCII string) length of an ETH 0x... address?
Is it the same for contract addresses?

Thanks a lot!
188  Other / Meta / char length of bitcointalk username? on: April 28, 2016, 10:14:05 PM
what is the max length of a bitcointalk username?

thx
189  Alternate cryptocurrencies / Announcements (Altcoins) / Re: HZCorp (HoriZonCorp; HZC) Prelaunch on: April 28, 2016, 01:14:22 PM
Quote
be accounted in whole integers only. This includes blockchain-based currencies even where such currencies have several digits after the decimal-point on their native blockchains.

If that is about an asset itself
- when you issue an asset you can decide how divisible it is. Me I have chosen whole integer values for my asset. Only whole asset shares can be traded.
Look at http://localhost:7776/test?requestTag=AE --> issueAsset   (also decimals=0  makes it much easier because then quantityQNT==quantity)

If that is about an asset price
- yes the price (how much HZ to pay for 1 asset share) has 8 digits after the decimal point. A round() in your code can reduce that of course if needed.
190  Alternate cryptocurrencies / Marketplace (Altcoins) / Re: HZ/NXT: assetparser.py >40 columns per asset | shareholders.py inner circle PM on: April 27, 2016, 10:58:02 AM
Small hint for anyone working with APIs (which often return JSON results) - get a

REST client

Often they come as browser extensions/add-ons. Examples are:

Chrome - Advanced REST client - https://chrome.google.com/webstore/detail/advanced-rest-client/hgmloofddffdnphfgcellkdfbfbjeloo
Opera - RestMan - https://addons.opera.com/en/extensions/details/restman
Firefox - no success, this one promises but doesn't deliver https://addons.mozilla.org/en-us/firefox/addon/jsonview/ (FF users: Please tell me what you are using)

Then put in the URL, e.g.

http://62.194.6.113:7876/nxt?requestType=getAsset&asset=13634799205909171438

and instead of a wall like this

Quote
{"initialQuantityQNT":"5000000","quantityQNT":"5000000","accountRS":"NXT-LJBY-6JQ6-WQV6-HA2AY","decimals":0,"name":"AAssetNXT","description":"AAssetNXT is the 'AltSheets Asset on Nxt'. 5,000,000 AAssetNXT shares are issued, representing 5% of all future profits of AltSheets software (like AltFolio, and assetparser.py - see their bitcointalk threads). Objectives of AAssetNXT are: To develop, improve, and popularize AltSheets software - and to reward investors by sharing 1% of all AltSheets profits per each 1,000,000 AAssetNXT; paid as regular dividends to AAssetNXT holders. Check asset ID and issuer ID (NXT-LJBY-6JQ6-WQV6-HA2AY alias 'AAssetNXTissuer') before trading, there may be copycat assets! More infos at http:\/\/altsheets.ddns.net\/aassetnxt or twitter @AAssetNXT","requestProcessingTime":0,"asset":"13634799205909171438","account":"18383702630381207870"}


you can press "JSON", and it will look like this:

Quote
{
    "initialQuantityQNT": "5000000",
    "quantityQNT": "5000000",
    "accountRS": "NXT-LJBY-6JQ6-WQV6-HA2AY",
    "decimals": 0,
    "name": "AAssetNXT",
    "description": "AAssetNXT is the 'AltSheets Asset on Nxt'. 5,000,000 AAssetNXT shares are issued, representing 5% of all future profits of AltSheets software (like AltFolio, and assetparser.py - see their bitcointalk threads). Objectives of AAssetNXT are: To develop, improve, and popularize AltSheets software - and to reward investors by sharing 1% of all AltSheets profits per each 1,000,000 AAssetNXT; paid as regular dividends to AAssetNXT holders. Check asset ID and issuer ID (NXT-LJBY-6JQ6-WQV6-HA2AY alias 'AAssetNXTissuer') before trading, there may be copycat assets! More infos at http://altsheets.ddns.net/aassetnxt or twitter @AAssetNXT",
    "requestProcessingTime": 0,
    "asset": "13634799205909171438",
    "account": "18383702630381207870"
}

Much more readable, no?

Hope that helps
 Smiley
191  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] -NEW BURST OP- MINE ANY FREE SPACE-(HDD MINING)- ATs, AE, P2P MARKET+MORE! on: April 23, 2016, 06:47:04 PM
Acknowledging your points, I have now made slight edits to the text. Misunderstanding about the sample size 1 - what I meant was the whole interaction of all my posts with your whole thread here plus the CF - not your one post. Your one post just triggered me, to write down my byebye message & summary. Not sure but I think two people contributed those 0.42$. That means ALL others minus two did not. That's fine, really. Good to know. You have enough good devs here, you won't need another one building stuff - no problem. Moving on ... And thank you for your honest feedback, such is valuable!

Anyway, I wish you the best of luck and great success with your projects.

Thank you very much. Same to you.  Smiley

192  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] - NEW BURST OP - MINE WITH YOUR HDD - ATs, AE, P2P MARKETPLACE, and MORE! on: April 23, 2016, 02:33:40 PM

Thanks BurstDevTeam - for wasting my time  Wink


First of all, it was clearly ironic - see the Wink

Secondly, thanks to the generous crowdfunders who actually tried to give 2000 BURST = 0.42 dollars. There is the 42 again  Smiley
You probably got them back, my small project was not funded.


Wow, check out the attitude on this guy

... now you really got me into ... helping you to try changing perspective - for once ...

This is the visible time I have invested here:


And that is only the openly visible time invested. As parts of your system, UX, documentation are still clearly beta (which is fine, stuff takes time - I am just trying to point to places which make it difficult for someone coming in - in the hope that they will perhaps get improved) ... it took me a lot of more time to fiddle around with it, and asking - to finally get it working.

To be able to get to such  better-than-the-average  postings, I needed a lot of my own time to play with your software.

In my books that is a lot of free and freely given open source contributions.

You are of a different opinion, I can see that. But I am inviting you to see the full picture, re-evaluate - and next time better wait an hour before you post aggressive  stuff like:

Wow, check out the attitude on this guy ...
... your attitude was even worse ...

and:

If all the devs had your attitude then it would be safe to say that cryptocurrency would not exist as we know it today.

Not my attitude.

You might be projecting some kind of (probably very understandable, but still unhelpful) anger about the world as such negativity onto an individual who is not deserving this contempt.

Let me even turn that around: If more 'users' (*) actually were like me - then open source projects would benefit a lot, and could get from beta to production much faster, and be more useful, prettier, slicker, and even more lucrative - for everyone.


(*) in the least positive way this word can be used, because too many users are showing a really ugly 'consumer attitude' and never ever really contribute constructively. Demanding all day from their hardworking devs to make the coinprice go boom. Those are the useless freeriders that really deserve contempt. By buying into a coin, they think they can demand that the price goes up to make them rich - but they are not doing anything for it, apart of investing money. Just investing excess money somewhere, for hoarding it - is the cheapest thing to do, really.

In contrast, to invest lifetime, talent, ideas, concepts, code, tools, improvements, products - that is valuable.

I know that our current world capitalism 2.0 is going away from that, it is cherishing the "investor spirit". But those are just rich people, and some of them got rich because they would never even think about giving back, to anyone. The least valuable contributors to our common world. Parasites. The planet is ill.

Some others have accepted that greater wealth - of course - comes with greater obligations to care for the greater good. E.g. this here:
One of our angels just donated me another 1.2 million to finish this funding.
^ to add a more balanced view here.

Ma (alibaba.com) once said "for me, first come the customers, then the employees, and only third are the investors" (in my words, but the meaning was that one).

Here, in the past weeks, I have focussed on the "customers", to make their experience better.
And helped the "employees", the devs, to point to places, and shared constructive solutions, to make everything better.
And yes, thirdly I asked "investors", to share 0.01579 % of the wealth of this system. They didn't which might prove my point, or not.


Your timing was wrong ... Your timing was bad because you started your CF towards the end of a very important android mining related CF
Not relevant. My crowdfunding was a microscopic one, compared to that CF you are mentioning, which of course is dozens of times more important than a blockchain aware countdown server.

Not relevant. The timing was caused by the invitation to do a crowdfunding. I was told to, then I worked through your undocumented & yet suboptimally designed tool chain to do it - and as soon as I finally got it working, I just submitted that crowdfunding.

Not relevant. This is a scene of highly intelligent, and complexity handling people - so to look at two or three CFs at the same time should be possible, no?

And again: I was asking for a tiny amount of money, not like 4 million or such - because the work & tool I had been offering - was a small one, to test the waters. I have more tools that are already working very well, on NXT and HZ, and of course I could port them too - if there was even a bit of interest in those. Now is not, no problem. That I can utter my disappointment ... I am taking the right to do that. But I do not take all this too seriously. Why get agitated about such a sum? But to get derided, and compared to lesser individuals - I am not willing to take that. So ... here is my answer. Sorry for the length of the text, but writing shorter texts is taking more time, and I don't have too much time right now.

But all is cool.

The time for this is not now, seemingly.


And also, my period in which I had time for such an idealistic contribution burst like the above listed, in exchange for 5$ donations ... has perhaps come to an end for me now, at least for a while. I actually really liked to work this way, asking for donations - because such money transfer is connecting real people with each other. Giving feels good. Receiving direct personal rewards from that exceptional minority feels good. But the monetary outcome has often been ridiculous, so I need to force myself to do that less.
Even if you changed your mind, and suddenly really wanted me to contribute to BURST, I myself could not afford to anymore. Which is good. I am really busy recently, and I start to get paid real money for my excellent work - which of cause is important, because carbon based that I am, my body needs a neverending stream of calories, and the most canonic way right now to get them is ... money. So one or the other way, I have to make the world allocate money to me. And yes, I had made a habit of it ... that when I am freely giving so much of my precious life time, that I am then not to proud to visibly ask for donations. I encourage people to try that, it is a very human experience.


There are some subscenes here in cryptoland, which have already understood that sharing and giving, to support all kinds of little and big projects, makes a lot of sense - because they want to enrich their whole ecosystem. Coins that are used for interesting stuff, people, initiatives ... those are valuable coins. In those subscenes, people can do little and bigger things, then ask for donations, and the (admittedly still few) good, grown-up, clever souls ... are really sharing some of their (sometimes immense) wealth. And not only because they are altruists - but because it makes economic sense to feed those who are contributing.

Other subscenes are still very tight, and ego, and think that keeping, hoarding, and hodling coins is the way to get rich. When they donate, their main thought is that they are loosing money.



The difference is not so much technological, it is mainly cultural.



I have been observing this thread for quite a while. Most of you are all about mining. That is the supply side of coins. If that works for you, just continue.


One possible economic consequence is an immense sell pressure. If the focus is on the supply side, then markets oversaturate. The slightest sell can cause the price to fall bottomless. Boiled down to your case: The 150 mio BURST locked in at 3 exchanges, compared to the 25 BTC that are locked into BUY orders - are showing that the current 49 Satoshi is approx three times too high to call it an equalized market. No worries, that is similar in the vast majority of other cryptocoins too. One of the reasons why it is so risky to invest into most cryptos.

But some cryptos have actually worked themselves out of that trap of impending doom. Their markets are equalized, the total buy orders are matching the total sell orders.


One day you might notice that it makes sense to focus more on the demand side. What can your mined coins actually be used for.


Perhaps then you remember me. Some of my tools (see current signature - might change in the future), or other tools of other people that are not about mining mining mining ... might become more attractive to you.

Perhaps you contact me then. Perhaps not. I might not invest myself even more right now. I also get the growing feeling, that somehow I am annoying some people here. I do get ignored. Attention is the real currency of our times.

But no hard feelings. All this were voluntary contributions. For me it was a valuable experiment, because I can now better asses your culture here. Real life experiments, human-to-human interactions based in money, can help much to unravel reality, I really like that about cryptos.


Happy mining.

Enjoy your BURSTs of good moments.


If you like this, you can show it: BURST-ESVR-L2WJ-NT3Y-BWM6V - Perhaps first read this old but still valid GIVEBACK-LICENSE text linked here - thx.

---
EDIT: no text is ever ready. Made smaller changes.
193  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] - NEW BURST OP - MINE WITH YOUR HDD - ATs, AE, P2P MARKETPLACE, and MORE! on: April 23, 2016, 12:09:02 PM

You are welcome to start a Crowdfund. Exactly for this situation we made it possible!




Thanks BurstDevTeam - for wasting my time  Wink
194  Alternate cryptocurrencies / Service Announcements (Altcoins) / Re: AltSheets software: AltFolio = AltCoin PortFolio - surprising new homepage 2016 on: April 22, 2016, 01:51:09 AM

Do not use the old donation addresses anymore
- but they are gone from your sheetcopy now anyways.

So cool.

I had forgotten that whole functionality actually - but now it came in VERY handy.



retweet - thx.

(their tweet that made me realize it)

 Wink
195  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] - NEW BURST OP - MINE WITH YOUR HDD - ATs, AE, P2P MARKETPLACE, and MORE! on: April 22, 2016, 12:48:46 AM
I did use the exact phrase that was given to me. But every time I get: "Welcome to your new BURST account." Sad
That is an example why I formulated the last line in step (4) like I did, in this tutorial:
https://bitcointalk.org/index.php?topic=1323657.msg14434335#msg14434335

Go through all steps (1) to (6) - and if only for next time.

Still I am convinced I am using the exact same passphrase that I literaly wrote down.
Idea: Try typing it into a text editor so you can see each letter you are typing.
Then mark the whole phrase, and copy paste it into the login box. Perhaps that helps?

If not ... perhaps just let go, and book it under "learning".
25k are nice to have of course - but how much worries are 5$ worth?

And see one positive side of those burnt coins:
You have just made everyone else 0.001778 percent richer  

Wink
196  Alternate cryptocurrencies / Service Announcements (Altcoins) / Re: [ANN] BTC38.com - Crypto exchange launched its English sites on: April 20, 2016, 05:34:35 PM
The "support" link on http://www.btc38.com/trade_en.html is broken
"Service Center - Open a Ticket(recommend)" - no. Kaputt.

My issue is this, also sent as PM.
(But btc38 has not posted for 11 months, and has not logged in since October. Is he dead?)


Please help with API access


opening
Code:
http://api.btc38.com/v1/depth.php?c=btc&mk_type=cny
in the browser works fine.

But opening it via PYTHON I get a 403 and a "hack" error message.

This is the code to reproduce it:

Code:
    import requests # pip install requests
    r=requests.get("http://api.btc38.com/v1/depth.php?c=btc&mk_type=cny")
    print r.status_code
    answer=r.text
    fn="btc38_error.html"
    with open(fn, "w") as f:
        f.write(answer.encode('utf-8'))

The answer I get is this one:

Quote
当前访问疑似黑客攻击,已被知道创宇云安全拦截。

当前网址:file:///D:/btc38_error.html

客户端特征:Mozilla/5.0 (Windows NT 6.1; WOW64; rv:45.0) Gecko/20100101 Firefox/45.0

拦截时间:2016-04-20 19:26:46
如果您是网站管理员点击这里查看详情 [80001] 或者反馈误报
client: 31.187.127.135, server: fccdbaf, time: 2016-04-21 01:19:48


Please fix this, and then contact me.

Thanks!

 Smiley





197  Alternate cryptocurrencies / Altcoin Discussion / Re: [ABEE] AltSheets Block Explorer Extension v0.2.2 - for your Ethereum based coin on: April 15, 2016, 02:57:34 AM


... extracts from a PM, then slightly edited ...



Quote
... that you have done some updation to the etherparty EthExplorer

I have indeed.

Using his 0.1.0 base system, from the MIT branch of his repo ...
I have put a lot of work into it, to bring it almost one and a half steps forwards. Not yet two steps, but ... 1.3 steps :-)

So for example, my address balance extension works like a charm.


I have ported it to SOIL, and it is running there since New Years Eve, and without any problems: http://abee.soilcoin.xyz/

My address balance page looks like this.

There is a whole new advanced info page about the chain, the node, supply, etc.

... plus tons of little improvements, on the previously existing pages.

There are also API results pages, about supply, blocknumber, etc. --> which you need to get properly listed on coinmarketcap.

For all possible URLs, click all links in this posting.



Disclaimer: Ethereum does not provide a "getTransactions(account)" function, and I have not had the time nor funding yet to build an additional backend (that would be scanning the whole chain, to collect all transactions of all accounts) ... so the missing "holy grail" is:  transactions-per-account. In ABEE you can NOT lookup the transactions that were sent to or sent from an account. (I was actually really surprised to find out about that missing function, being used to the excellent NXT api ... I could not have imagined that. ETH is still ... work-in-progress, I suppose.)


However, if you know the transaction ID, then of course you can find and see a transaction, how many confirmations it has, etc.

And for each block, all the transactions are now shown too in my version.
    

    
Quote
But the EthExplorer can not show the account balance.
Yes.

And when I started I thought: Oh that is easy. ... But in the end, I managed :-)


Quote
... to update the EthExplorer ...

It would not be an update, because by now I have changed much too many things.

It would be a completely new thing. Porting my ABEE to your clone.

Please read this whole thread to learn everything about ABEE and ABEESOIL.
TL;DR: What is on the screenshots ... is working.


PM me if you are interested that I port ABEE to your ETH clone.




Enjoy whatever you do

 Wink
198  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] SOIL | ETHEREUM BASED | ENVIRONMENTAL | AGRICULTURE | SCIENCE | HACKATHON on: April 12, 2016, 03:28:05 PM
Hey!

Where can i find the richlist?

Regards

As far as I know there is none yet.

I could start working on a

blockchain scanner
database backend
for
ABEESOIL   (live, info)


Goals:

(1) address database,
     enables to get
      (1a) address balances --> richlist
      (1b) mining --> top miners

(2) addresses --> transactions
     enables a transaction history of personal accounts, the holy grail  Wink

(3) uncles count --> real supply


I would
  • create a backend,
  • that is traversing the whole > 500 000 blocks(congrats!) SOIL chain,
  • and which regularly updates with newly confirmed blocks;
  • the mentioned missing data is collected into a database,
  • which then can be queried via the block explorer
  • ... http://abee.soilcoin.xyz/

What do you think about that?
What else would be needed?
Which suggestions do you have?

 Smiley
199  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] SOIL | ETHEREUM BASED | ENVIRONMENTAL | AGRICULTURE | SCIENCE | HACKATHON on: April 12, 2016, 03:27:48 PM
Hah. Funny. Just now. I was working on an answer anyways ...

Hey!

Where can i find the richlist?

Regards

thats something that we discussed with altsheets, the creator of our ABEE block explorer, and will likely be implemented in future upgrades to his platform, but isnt something we have yet implemented. theres a few things that we hope will be available in future updates to ABEE, including contract explorers, etc. as with everything else in the SOILcoin network, its a constantly evolving process.

See next post.
200  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] - NEW BURST OP - MINE WITH YOUR HDD - ATs, AE, P2P MARKETPLACE, and MORE! on: April 12, 2016, 02:18:39 PM
Only little more than a day left for a successful crowdfund but the Android App is 95% ready for the first release.
Also small contributions are welcome.
https://wallet.burst-team.us:8125/atcrowdfund.html

What happens if not 100% are reached?

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 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!