Author

Topic: WAVES. Ultimate crypto-tokens blockchain platform. - page 314. (Read 2389197 times)

member
Activity: 106
Merit: 10
legendary
Activity: 1590
Merit: 1002
Great recap with all prograss. I have to give the LPOS with Leasing a try.

Thanks

yeah - me too
sr. member
Activity: 444
Merit: 250
That was fantastic recap with all the important links, now we know where WAVES is heading the next couple of weeks.
member
Activity: 74
Merit: 10
Absolutely Great! Thank you yoyoamigo for this great recap of all the WAVES progress...
legendary
Activity: 1582
Merit: 1001
www.neutroncoin.com
Great recap with all prograss. I have to give the LPOS with Leasing a try.

Thanks
legendary
Activity: 966
Merit: 1009
well done.
I expect a good future of waves.
Just throw some btc to buy in waves.  Grin
member
Activity: 77
Merit: 10
COO Waves Labs
Cool! Thanks for awesome recap
sr. member
Activity: 434
Merit: 250
great recap!
hero member
Activity: 622
Merit: 504
Your only Amigo, in the World of Crypto



Last Updated on: 4th April 2017
Missed the previous recap? Click here
The next recap is out! Click here


1] Mainnet + Testnet v0.6.2 > v0.6.3 |Link:1,2,3 ExtraLink:2a
    --- NEW: DEX Matcher
    --- NEW: Asset Burn transaction
    --- NEW: LPOS with Leasing and Leasing Cancel transactions
    --- NEW: New configuration file format
    --- NEW: Increased UTX pool size
    --- IMPORTANT: New transactions will become available on Mainnet on 3 April 2017.
2] WavesLiteApp v0.4.11 > v0.4.12 |Link:1
3] (Unconfirmed) Waves Wallet App for iOS out in mid April? |Link:1
4] Article & Blog: Liquid.pro to transfer all stock options orders to WAVES blockchain |Link:1 ExtraLink:1a,b,c,d,e,f,g,h
5] Article & Blog: 'Incentivizing POS Mining - introducing MRT (Miners Reward Token)' |Link:1 ExtraLink:1a,b
6] Article (BankingTech): Blockchain and Bitcoin round up |Link:1
7] Magazine (CoreMedia): April Issue |Link:1
8] Added to '2017 Global Blockchain Startup Map' |Link:1
9] Added to 'MindMeister's Mindmap: Leading Blockchain Projects' |Link:1,2
10] Spotted on IOTA Exchange |Link:1
11] Approved for AZURE Platform. Waiting to be published |Link:1
12] WAVES Weekly will be back! |Link:1
Ecosystem
sr. member
Activity: 434
Merit: 250
I think many alts are down these days due to btc rally.

However I think the waves cant rise yet much more due to another reason: I think that some big 'whale' (it is speculated it is iconomi) invested a lot of money into waves ico and they want to get rid of the waves..they offloaded some time ago but it seems they might have more. Maybe not even them but lots of sells with exactly 3000 waves smells like something like that. Big large sell walls.

Or maybe whales are still accumulating.
hero member
Activity: 546
Merit: 500
You gotta look at it and laugh. Stratis is going for 31 k atm and will very soon take over waves. Waves which got more fundings and more time cant even get above ico.



Stratis is dumping right now while Waves is holding its value  Wink

Look our mud hut village went up quicker than your marble city and more people are living in it. #checkmateRomans


It's not about building a pump and dump coin Wink

Waves will be useful
full member
Activity: 140
Merit: 100
You gotta look at it and laugh. Stratis is going for 31 k atm and will very soon take over waves. Waves which got more fundings and more time cant even get above ico.



Stratis is dumping right now while Waves is holding its value  Wink

Look our mud hut village went up quicker than your marble city and more people are living in it. #checkmateRomans
hero member
Activity: 546
Merit: 500
You gotta look at it and laugh. Stratis is going for 31 k atm and will very soon take over waves. Waves which got more fundings and more time cant even get above ico.



Stratis is dumping right now while Waves is holding its value  Wink
newbie
Activity: 42
Merit: 0
Update from Sasha on slack:

"Still updating at tidex, 4 assets will be added tomorrow morning US time. Also fiat markets will be added shortly after that"
newbie
Activity: 28
Merit: 0
You gotta look at it and laugh. Stratis is going for 31 k atm and will very soon take over waves. Waves which got more fundings and more time cant even get above ico.

sr. member
Activity: 292
Merit: 259
wagerr.com
Hello ! guys, an update from Sigwo Technologies

To use Sigwo Technologies Waves DEX via CLI and Python:
For Ubuntu Linux:
Install pip (sudo apt-get install pip)
Install PyWaves (pip install pywaves)
Type in nano dex.py and paste in:
Code:
import pywaves as pw

pw.setNode("http://waves.sigwo.tech","mainnet")
pw.setMatcher("http://dex.sigwo.tech")

myAddress = pw.Address(privateKey="YOUR ADDRESS PRIVATE KEY")

BTC = pw.Asset('8LQW8f7P5d5PZM7GtZEBgaqRPGSzS3DfPuiXrURJ4AJS')
MER = pw.Asset('HzfaJp8YQWLvQG4FkUxq2Q7iYWMYQ2k8UF89vVJAjWPj')

MER_WAVES = pw.AssetPair(MER, pw.WAVES)
MER_BTC = pw.AssetPair(MER, BTC)

myOrder = myAddress.sell(assetPair = MER_WAVES, amount = 2000, price = 1, maxLifetime=86400)
Change the amount and price to your suiting, remembering this is priced in WAVES per MERCURY. You may also change the assetPair to MER_BTC to price in BTC.
Save and close this file.
Then you can run python dex.py

To lease my node your Waves so you don't have to run a full node to receive rewards:
For Ubuntu Linux:
Install pip (sudo apt-get install pip)
Install PyWaves (pip install pywaves)
Type in nano lease.py and paste in:
Code:
import pywaves as pw

pw.setNode(node = 'http://waves.sigwo.tech', chain = 'mainnet')

myAddress = pw.Address(privateKey = 'YOUR ADDRESS PRIVATE KEY')
minerAddress = pw.Address('3PPKDQ3G67gekeobR8MENopXytEf6M8WXhs')

# lease 1000 Waves to minerAddress, change to your suiting
leaseId = myAddress.lease(minerAddress, 100000000000)

Change the 100000000000 to how many Waves you want to lease out.
Save and close this file.
Then you can run python lease.py

To cancel the lease:
For Ubuntu Linux:
Install pip (sudo apt-get install pip)
Install PyWaves (pip install pywaves)
Type in nano stopLease.py and paste in:
Code:
import pywaves as pw

pw.setNode(node = 'http://waves.sigwo.tech', chain = 'mainnet')

myAddress = pw.Address(privateKey = 'YOUR ADDRESS PRIVATE KEY')
minerAddress = pw.Address('3PPKDQ3G67gekeobR8MENopXytEf6M8WXhs')

leaseId = myAddress.lease(minerAddress, 100000000000)
myAddress.leaseCancel(leaseId)
Then you can run python stopLease.py to stop leasing your Waves
legendary
Activity: 952
Merit: 1000
The Birth Of A Blockchain: From Ripples To Making 'Crypto' Waves

https://twitter.com/AitkenRL/status/849022491200823300

I have tweeted this here if anyone else wants to retweet:

https://twitter.com/Soul_Eater_43/status/849025742222569472
legendary
Activity: 2310
Merit: 1000
The Birth Of A Blockchain: From Ripples To Making 'Crypto' Waves

https://twitter.com/AitkenRL/status/849022491200823300
legendary
Activity: 2310
Merit: 1000
full member
Activity: 195
Merit: 100
Didn't visit this thread for more than 5 mounths. Still no pump( Hope one day it's gonna happen.
Jump to:
© 2020, Bitcointalksearch.org