Author

Topic: [ANN] Expanse (EXP) - 1st Stable fork of Ethereum (New Algo + PirlGuard) - page 303. (Read 961462 times)

legendary
Activity: 1190
Merit: 1004
This coin just seems to have so much more traction and interest than ETH and SHF.

Well done guys



Interest seems to be slowing down. This thread used to remain at the top of the altcoin announcements. I think it fell off the first page today. I think it's because there is no big DApp announced yet.


So... who is going to make the first big DApp for EXP?





I think it is because the FUD is slowing down actually, they were giving us a lot of free bumps. Wink

Now perhaps people are starting to realize there is nothing to worry about and the team will just keep delivering. There will be announcements in the future about other projects joining/using Expanse, I don't think there are any Dapps to announce yet, but they will come in time since we can pay them and advertise for them for free. Giving us a unique advantage.



I really like this DAO idea. It's almost like you are creating jobs for people.


legendary
Activity: 1470
Merit: 1000
cryptocollectorsclub.com
This coin just seems to have so much more traction and interest than ETH and SHF.

Well done guys



Interest seems to be slowing down. This thread used to remain at the top of the altcoin announcements. I think it fell off the first page today. I think it's because there is no big DApp announced yet.


So... who is going to make the first big DApp for EXP?





I think it is because the FUD is slowing down actually, they were giving us a lot of free bumps. Wink

Now perhaps people are starting to realize there is nothing to worry about and the team will just keep delivering. There will be announcements in the future about other projects joining/using Expanse, I don't think there are any Dapps to announce yet, but they will come in time since we can pay them and advertise for them for free. Giving us a unique advantage.
legendary
Activity: 1190
Merit: 1004
This coin just seems to have so much more traction and interest than ETH and SHF.

Well done guys



Interest seems to be slowing down. This thread used to remain at the top of the altcoin announcements. I think it fell off the first page today. I think it's because there is no big DApp announced yet.


So... who is going to make the first big DApp for EXP?



sr. member
Activity: 293
Merit: 251
Director - www.cubeform.io
Beta of the Explorer is online, will be continuing to update it throughout the day. Please forgive any bugs it may have, they will be patched shortly. ;]
It may be running a little behind while I'm updating it.

http://www.expanse.tech/explorer

long-awaited!

Would be nice, if you link the button top right of the website to the new explorer.

Incidentally:
The links to the block and miner account are dead.

e.g.
http://www.expanse.tech/explorer/block_number/20280
http://www.expanse.tech/explorer/miner/0x33852b3495ace01e8a1a15faa1b3c6be7c430b88

Try this for the Block :
http://www.expanse.tech/explorer/block/20280

I just uploaded the most recent set of updates, block_number is fixed and miner redirects to the search, miner/accounts lists/features should be added within the next day. A new set of updates will be rolled out on it about every hour until tonight, at which point I will be switching to another aspect of the project that needs attention. Grin
hero member
Activity: 700
Merit: 500
Beta of the Explorer is online, will be continuing to update it throughout the day. Please forgive any bugs it may have, they will be patched shortly. ;]
It may be running a little behind while I'm updating it.

http://www.expanse.tech/explorer

long-awaited!

Would be nice, if you link the button top right of the website to the new explorer.

Incidentally:
The links to the block and miner account are dead.

e.g.
http://www.expanse.tech/explorer/block_number/20280
http://www.expanse.tech/explorer/miner/0x33852b3495ace01e8a1a15faa1b3c6be7c430b88

Try this for the Block :
http://www.expanse.tech/explorer/block/20280
full member
Activity: 347
Merit: 100

how to write bat command to execute multi executable command file

ex: (this not work)

echo off
gexp attach
admin.peers
exp.getBalance(exp.coinbase)

when run this bat file we can see 3 info appear on console with one click

Not possible.
- the first command (called from command prompt or terminal) attaches to a running gexp console
  there you can enter any gexp commands, but your bat is currently in the first gexp call
- after returning from gexp console (type exit) you are back in the (win/linux) terminal.
- if now "admin.peers" is called, it is an unknown command for the win/linux command line, the same for your last command.

You cannot execute gexp commands from the terminal directly (except "gexp account new")

The only way (I know) to execute commands in the gexp console by batch is using the RPC API (see https://github.com/ethereum/wiki/wiki/JSON-RPC)


Solution found:
With the exec parameter you can call a javascript command from bat file, e.g.:

gexp --exec "exp.blockNumber" attach



You're the one  Cheesy
its work

gexp --exec "admin.peers" attach
gexp --exec "web3.fromWei(exp.getBalance(exp.coinbase))" attach
pause
sr. member
Activity: 293
Merit: 251
Director - www.cubeform.io
Beta of the Explorer is online, will be continuing to update it throughout the day. Please forgive any bugs it may have, they will be patched shortly. ;]
It may be running a little behind while I'm updating it.

http://www.expanse.tech/explorer

long-awaited!

Would be nice, if you link the button top right of the website to the new explorer.

Incidentally:
The links to the block and miner account are dead.

e.g.
http://www.expanse.tech/explorer/block_number/20280
http://www.expanse.tech/explorer/miner/0x33852b3495ace01e8a1a15faa1b3c6be7c430b88

Yup, we are working on getting the main site online today(or maybe tomorrow, I promise Grin) along with updates to the explorer. Will update you guys as soon as they are rockin!
hero member
Activity: 601
Merit: 500
Beta of the Explorer is online, will be continuing to update it throughout the day. Please forgive any bugs it may have, they will be patched shortly. ;]
It may be running a little behind while I'm updating it.

http://www.expanse.tech/explorer

long-awaited!

Would be nice, if you link the button top right of the website to the new explorer.

Incidentally:
The links to the block and miner account are dead.

e.g.
http://www.expanse.tech/explorer/block_number/20280
http://www.expanse.tech/explorer/miner/0x33852b3495ace01e8a1a15faa1b3c6be7c430b88
hero member
Activity: 601
Merit: 500

how to write bat command to execute multi executable command file

ex: (this not work)

echo off
gexp attach
admin.peers
exp.getBalance(exp.coinbase)

when run this bat file we can see 3 info appear on console with one click

Not possible.
- the first command (called from command prompt or terminal) attaches to a running gexp console
  there you can enter any gexp commands, but your bat is currently in the first gexp call
- after returning from gexp console (type exit) you are back in the (win/linux) terminal.
- if now "admin.peers" is called, it is an unknown command for the win/linux command line, the same for your last command.

You cannot execute gexp commands from the terminal directly (except "gexp account new")

The only way (I know) to execute commands in the gexp console by batch is using the RPC API (see https://github.com/ethereum/wiki/wiki/JSON-RPC)


Solution found:
With the exec parameter you can call a javascript command from bat file, e.g.:

gexp --exec "exp.blockNumber" attach

sr. member
Activity: 293
Merit: 251
Director - www.cubeform.io
I wonder if this could easily be ported over for EXP :-

Alethone
https://github.com/ethereum/webthree-umbrella/releases


http://cryptomining-blog.com/5734-ethereum-is-getting-more-user-friendly-with-alethone/

--edit

Yes it can be. If someone has time to change their build pipeline around a little

We have a cpp version as well in development and testing, including the webthree umbrella, as well as alethone, alethzero, and alethfive. We will be continuously rolling things out as soon as they are ready.
legendary
Activity: 3220
Merit: 1363
www.Crypto.Games: Multiple coins, multiple games

This looks nice. I would love to see this added on Expanse. It would make my life much easier  Cheesy
member
Activity: 85
Merit: 10
I wonder if this could easily be ported over for EXP :-

Alethone
https://github.com/ethereum/webthree-umbrella/releases


http://cryptomining-blog.com/5734-ethereum-is-getting-more-user-friendly-with-alethone/

--edit

Yes it can be. If someone has time to change their build pipeline around a little
legendary
Activity: 3220
Merit: 1363
www.Crypto.Games: Multiple coins, multiple games
Beta of the Explorer is online, will be continuing to update it throughout the day. Please forgive any bugs it may have, they will be patched shortly. ;]
It may be running a little behind while I'm updating it.

http://www.expanse.tech/explorer

Finally! A block explorer for Expanse. Can't wait for the stable release. Between Ethereum and Expanse, I choose Expanse as my favorite alt coin. Forget Ethereum, it's all about hype  Grin
legendary
Activity: 2184
Merit: 1011
Franko is Freedom
A friend of mine runs multipool.us (the original multi-pool) and wants to set up an EXP pool there, he was asking if there is an open source pool he could use for it. Let me know and I can pass on the info to him, thanks.


OCminer released an MPOS pool source code.




yes, here it is:

https://github.com/ocminer/ethcore-pool-mpos

ohhhhh This is awesome, good work dude. Much appreciated.
legendary
Activity: 902
Merit: 1001
Free trial of #AltFolio = save time, react faster
edit: crossposted here

Beta of the Explorer is online, will be continuing to update it throughout the day.
Please forgive any bugs it may have, they will be patched shortly. ;]
It may be running a little behind while I'm updating it.
http://www.expanse.tech/explorer

Congrats, looking good!

With the first step of my ABEE I had been targeting at something much less than that -
mostly because I was forced to save time, and money - but still be able to answer the
most urgent questions. Especially reporting the total /supply/ back to coinmarketcap is of
paramount important for a new coin, if it wants to get above rank 600 in the CMC table.

And to see "on which block are we", "how many confirmations has that transaction", "what is
the difficulty", etc. ... a simple (block, transaction, chain) lookup is already more comfortable
... than the empty nothing - right? Plus in 0.2.2: "How many coins does XYZ own" =
(address) lookup now, too. Simple version, but working. (Other clones: contact me!)

In the current state of the code, ABEE is a good alternative, especially for the first days.
And for later, as a secondary block explorer it also makes sense IMHO.

Perhaps driven by my own curiosity, I want to see some fancy analysis of etherclone blockchains.
Might happen, lots to explore. But ABEE's further development is frozen for now, due to lack of funding.


And now ... finally ... on around block 20,000 ... you also have a -and more advanced- block explorer.

Congrats again.

Good luck, EXP. Perhaps I might drop by again, one day?


But now finally ... back to my own projects.

 Smiley
sr. member
Activity: 414
Merit: 250
Can not wait for tomorrow in this case.
sr. member
Activity: 293
Merit: 251
Director - www.cubeform.io
Request for the block explorer: http://www.expanse.tech/explorer/

If I search an account or txid etc the direct URL will not be in the URL bar. For example if I search for this block: 0x74a47721035c91aba7d669e4397ac5d3a91e623feca3e4f3649b396e67368e76 the URL at the top of my browser will still just say http://www.expanse.tech/explorer/ instead of the direct link to the block info: http://www.expanse.tech/explorer/block/0x74a47721035c91aba7d669e4397ac5d3a91e623feca3e4f3649b396e67368e76

You got it! Need to catch up on sleep though so will get to it tomorrow with the other updates. ;]
sr. member
Activity: 360
Merit: 250
Token
Request for the block explorer: http://www.expanse.tech/explorer/

If I search an account or txid etc the direct URL will not be in the URL bar. For example if I search for this block: 0x74a47721035c91aba7d669e4397ac5d3a91e623feca3e4f3649b396e67368e76 the URL at the top of my browser will still just say http://www.expanse.tech/explorer/ instead of the direct link to the block info: http://www.expanse.tech/explorer/block/0x74a47721035c91aba7d669e4397ac5d3a91e623feca3e4f3649b396e67368e76
full member
Activity: 136
Merit: 100
This coin just seems to have so much more traction and interest than ETH and SHF.

Well done guys
mez
full member
Activity: 197
Merit: 100
We've added a Pool for EXP too:

http://exp.maxminers.net

Please spread some hash over ! Thanks a lot to ocminer for the help !

switched to your pool.
Jump to: