Bitcoin Forum
June 17, 2024, 09:36:02 AM *
News: Voting for pizza day contest
 
   Home   Help Search Login Register More  
Pages: « 1 ... 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 [74] 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 ... 314 »
  Print  
Author Topic: [ANN][SHIFT] The New Web | IPFS/Phantom | ShiftNrg.org Hosted Decentralized!  (Read 547549 times)
ShiftConnect
Sr. Member
****
Offline Offline

Activity: 364
Merit: 250



View Profile
September 20, 2015, 10:06:56 AM
 #1461

We are progressing ever so slightly Wink

SHIFT is on Coinmarketcap:
http://coinmarketcap.com/currencies/shift/



Great to see they finally got the market cap and total supply working on it....

  just  50k  Available Supply , too much, hehe!

It's a little over 500k....So, total mined just surpassed the premine....

So, our nearest goal is to reach first hundred on coinmarketcap.

Room to grow I would say Wink


SHIFT Response Team
SpeedDemon13
Hero Member
*****
Offline Offline

Activity: 518
Merit: 500



View Profile WWW
September 20, 2015, 10:12:14 AM
 #1462

What's wrong with my transaction command? Is there something wrong/missing that would not work?

Code:
eth.sendTransaction({from: '0xaaaaaaaaa...', to: '0xbbbbbbbbbbb...', value: 1})

You have to define the value:

eth.sendTransaction({from: 'your address', to: 'destination address', value: web3.toWei(amount of shift to send, "ether")})

It will output a tx address....

CRYPTSY exchange: https://www.cryptsy.com/users/register?refid=9017 BURST= BURST-TE3W-CFGH-7343-6VM6R BTC=1CNsqGUR9YJNrhydQZnUPbaDv6h4uaYCHv ETH=0x144bc9fe471d3c71d8e09d58060d78661b1d4f32 SHF=0x13a0a2cb0d55eca975cf2d97015f7d580ce52d85 EXP=0xd71921dca837e415a58ca0d6dd2223cc84e0ea2f SC=6bdf9d12a983fed6723abad91a39be4f95d227f9bdb0490de3b8e5d45357f63d564638b1bd71 CLAMS=xGVTdM9EJpNBCYAjHFVxuZGcqvoL22nP6f SOIL=0x8b5c989bc931c0769a50ecaf9ffe490c67cb5911
ShiftConnect
Sr. Member
****
Offline Offline

Activity: 364
Merit: 250



View Profile
September 20, 2015, 10:12:26 AM
 #1463


The premine needs to be put into an escrow arrangement like expanse, otherwise shift will lose the clone wars.


Agreed. We will try to find a solution that provides transparent handling and doesn't hinder economic growth.

We want to lock the funds to further community trust but be able to spend them when the need arises.


SHIFT Response Team
z0n0
Legendary
*
Offline Offline

Activity: 1274
Merit: 1006



View Profile
September 20, 2015, 10:53:16 AM
 #1464

What's wrong with my transaction command? Is there something wrong/missing that would not work?

Code:
eth.sendTransaction({from: '0xaaaaaaaaa...', to: '0xbbbbbbbbbbb...', value: 1})

You have to define the value:

eth.sendTransaction({from: 'your address', to: 'destination address', value: web3.toWei(amount of shift to send, "ether")})

It will output a tx address....


I get this:


Code:
eth.sendTransaction({from: '0xaaaa....', to: '0xbbbbb...', value: web3.toWei(1, "ether")})
TypeError: 'toWei' is not a function
    at <anonymous>:1:131
SpeedDemon13
Hero Member
*****
Offline Offline

Activity: 518
Merit: 500



View Profile WWW
September 20, 2015, 10:59:55 AM
 #1465

What's wrong with my transaction command? Is there something wrong/missing that would not work?

Code:
eth.sendTransaction({from: '0xaaaaaaaaa...', to: '0xbbbbbbbbbbb...', value: 1})

You have to define the value:

eth.sendTransaction({from: 'your address', to: 'destination address', value: amount of shift to send})

It will output a tx address....


I get this:


Code:
eth.sendTransaction({from: '0xaaaa....', to: '0xbbbbb...', value: web3.toWei(1, "ether")})
TypeError: 'toWei' is not a function
    at <anonymous>:1:131

My bad, forgot that Shift doesn't use that string.

Use this instead: eth.sendTransaction({from: 'your address', to: 'destination address', value: amount of shift to send})

It should work.

CRYPTSY exchange: https://www.cryptsy.com/users/register?refid=9017 BURST= BURST-TE3W-CFGH-7343-6VM6R BTC=1CNsqGUR9YJNrhydQZnUPbaDv6h4uaYCHv ETH=0x144bc9fe471d3c71d8e09d58060d78661b1d4f32 SHF=0x13a0a2cb0d55eca975cf2d97015f7d580ce52d85 EXP=0xd71921dca837e415a58ca0d6dd2223cc84e0ea2f SC=6bdf9d12a983fed6723abad91a39be4f95d227f9bdb0490de3b8e5d45357f63d564638b1bd71 CLAMS=xGVTdM9EJpNBCYAjHFVxuZGcqvoL22nP6f SOIL=0x8b5c989bc931c0769a50ecaf9ffe490c67cb5911
z0n0
Legendary
*
Offline Offline

Activity: 1274
Merit: 1006



View Profile
September 20, 2015, 11:24:13 AM
 #1466

What's wrong with my transaction command? Is there something wrong/missing that would not work?

Code:
eth.sendTransaction({from: '0xaaaaaaaaa...', to: '0xbbbbbbbbbbb...', value: 1})

You have to define the value:

eth.sendTransaction({from: 'your address', to: 'destination address', value: amount of shift to send})

It will output a tx address....


I get this:


Code:
eth.sendTransaction({from: '0xaaaa....', to: '0xbbbbb...', value: web3.toWei(1, "ether")})
TypeError: 'toWei' is not a function
    at <anonymous>:1:131

My bad, forgot that Shift doesn't use that string.

Use this instead: eth.sendTransaction({from: 'your address', to: 'destination address', value: amount of shift to send})

It should work.

Yup, that worked.
Thanks!

Do you know if its possible to send all funds in your wallet with one command?
Lets say if I have 100 SHF in wallet and want to send all - if I insert value:100 it will say insufficient funds gas*price+value...
SpeedDemon13
Hero Member
*****
Offline Offline

Activity: 518
Merit: 500



View Profile WWW
September 20, 2015, 11:25:16 AM
 #1467

What's wrong with my transaction command? Is there something wrong/missing that would not work?

Code:
eth.sendTransaction({from: '0xaaaaaaaaa...', to: '0xbbbbbbbbbbb...', value: 1})

You have to define the value:

eth.sendTransaction({from: 'your address', to: 'destination address', value: amount of shift to send})

It will output a tx address....


I get this:


Code:
eth.sendTransaction({from: '0xaaaa....', to: '0xbbbbb...', value: web3.toWei(1, "ether")})
TypeError: 'toWei' is not a function
    at <anonymous>:1:131

My bad, forgot that Shift doesn't use that string.

Use this instead: eth.sendTransaction({from: 'your address', to: 'destination address', value: amount of shift to send})

It should work.

Yup, that worked.
Thanks!

Your welcome....

CRYPTSY exchange: https://www.cryptsy.com/users/register?refid=9017 BURST= BURST-TE3W-CFGH-7343-6VM6R BTC=1CNsqGUR9YJNrhydQZnUPbaDv6h4uaYCHv ETH=0x144bc9fe471d3c71d8e09d58060d78661b1d4f32 SHF=0x13a0a2cb0d55eca975cf2d97015f7d580ce52d85 EXP=0xd71921dca837e415a58ca0d6dd2223cc84e0ea2f SC=6bdf9d12a983fed6723abad91a39be4f95d227f9bdb0490de3b8e5d45357f63d564638b1bd71 CLAMS=xGVTdM9EJpNBCYAjHFVxuZGcqvoL22nP6f SOIL=0x8b5c989bc931c0769a50ecaf9ffe490c67cb5911
Maverick69
Sr. Member
****
Offline Offline

Activity: 458
Merit: 250



View Profile
September 20, 2015, 01:47:27 PM
 #1468

We are progressing ever so slightly Wink

SHIFT is on Coinmarketcap:
http://coinmarketcap.com/currencies/shift/



Good to have a total coin number. Now a website, even minimal would help a lot, to be listed on Poloniex for example.  Grin
ShiftConnect
Sr. Member
****
Offline Offline

Activity: 364
Merit: 250



View Profile
September 20, 2015, 02:44:51 PM
 #1469

We are progressing ever so slightly Wink

SHIFT is on Coinmarketcap:
http://coinmarketcap.com/currencies/shift/



Good to have a total coin number. Now a website, even minimal would help a lot, to be listed on Poloniex for example.  Grin

Teka is working on it Smiley

SHIFT Response Team
Argwai96
Legendary
*
Offline Offline

Activity: 1036
Merit: 1000


Thug for life!


View Profile
September 20, 2015, 04:56:34 PM
 #1470

Buy support is building up, waiting for dumpers.....
Gumbork
Hero Member
*****
Offline Offline

Activity: 583
Merit: 500



View Profile
September 20, 2015, 05:18:51 PM
 #1471

I guess is a good time to buy 500k in the current supply, 25% of the 2 million to be mined.


              ▄
            ▄███▄
          ▄███████▄
   ▄▄▄    █
█████████
   ███
    ███████████▄
██    ████    ████████▄
      ████    ██████████
  ████    ████▀██████████
  ████    ██▀   ▀█████████▄
      █████       █████████▄
      ███▀         ▀████████
  ██████▀           ▀███████
  █████▀             ▀█████
   ████ █▄▄▄     ▄▄▄█ ████
    ███ ▀███████████▀ ███
     ▀▀█▄ █████████ ▄█▀▀
        ▀▀▄▄ ▀▀▀ ▄▄▀▀
●●
●●
●●
●●
●●
●●
|●  facebook
●  reddit
●  ann thread
|
█ ██
█ ██ █
█ ██ █
█ ██ █
█ ██ █
█ ██ █
█ ██ █
█ ██ █
█ ██ █
█ ██ █
█ ██

██ █
█ ██ █
█ ██ █
█ ██ █
█ ██ █
█ ██ █
█ ██ █
█ ██ █
█ ██ █
█ ██ █
██ █
dygus
Legendary
*
Offline Offline

Activity: 1193
Merit: 1000


Peaky Blinder


View Profile
September 20, 2015, 09:22:40 PM
 #1472

finally ppl start dumping.

CHANGE FINANCE First Decentralised Global Crypto Bank
[color=#15B5E2 ]LINK TO ICO | LINK TO DISCUSSION
Argwai96
Legendary
*
Offline Offline

Activity: 1036
Merit: 1000


Thug for life!


View Profile
September 20, 2015, 09:44:21 PM
 #1473

finally ppl start dumping.

yea, really nice to see 14k again.
Gumbork
Hero Member
*****
Offline Offline

Activity: 583
Merit: 500



View Profile
September 20, 2015, 09:58:24 PM
 #1474

finally ppl start dumping.

yea, really nice to see 14k again.

is looking like a dump, please go head and dump it more please 11k stats would be just wonderful.


              ▄
            ▄███▄
          ▄███████▄
   ▄▄▄    █
█████████
   ███
    ███████████▄
██    ████    ████████▄
      ████    ██████████
  ████    ████▀██████████
  ████    ██▀   ▀█████████▄
      █████       █████████▄
      ███▀         ▀████████
  ██████▀           ▀███████
  █████▀             ▀█████
   ████ █▄▄▄     ▄▄▄█ ████
    ███ ▀███████████▀ ███
     ▀▀█▄ █████████ ▄█▀▀
        ▀▀▄▄ ▀▀▀ ▄▄▀▀
●●
●●
●●
●●
●●
●●
|●  facebook
●  reddit
●  ann thread
|
█ ██
█ ██ █
█ ██ █
█ ██ █
█ ██ █
█ ██ █
█ ██ █
█ ██ █
█ ██ █
█ ██ █
█ ██

██ █
█ ██ █
█ ██ █
█ ██ █
█ ██ █
█ ██ █
█ ██ █
█ ██ █
█ ██ █
█ ██ █
██ █
Zywiec
Sr. Member
****
Offline Offline

Activity: 414
Merit: 250


View Profile
September 21, 2015, 02:45:58 AM
 #1475


The premine needs to be put into an escrow arrangement like expanse, otherwise shift will lose the clone wars.



Voice of reason.

Personally I know premine is safe and would not be dumped by DevTeam for sure.
Howeever another person could not find it easy as me. So, in that point it would be great to follow EXPASNE's way.
ShiftTeam (OP)
Hero Member
*****
Offline Offline

Activity: 483
Merit: 510


The Shift Team


View Profile WWW
September 21, 2015, 05:09:50 AM
 #1476


The premine needs to be put into an escrow arrangement like expanse, otherwise shift will lose the clone wars.



Voice of reason.

Personally I know premine is safe and would not be dumped by DevTeam for sure.
Howeever another person could not find it easy as me. So, in that point it would be great to follow EXPASNE's way.

EXPANSE HAS A HUGE PREMINE, basically unlimited amount of funds compared to what is being mined. In SHIFT the premine is minimal and will not be put in a smart contract. We will however use a third party escrow.

Regards
wildduck
Legendary
*
Offline Offline

Activity: 966
Merit: 1001


View Profile
September 21, 2015, 06:22:10 AM
 #1477

is looking like a dump, dump in my buy orders Smiley
fartbags
Legendary
*
Offline Offline

Activity: 1190
Merit: 1004


View Profile
September 21, 2015, 06:24:26 AM
 #1478

is looking like a dump, dump in my buy orders Smiley



And into my buy orders. Let it drop back to 10k again or maybe even to 5k. 15k is cheap but why not get it even cheaper.



dygus
Legendary
*
Offline Offline

Activity: 1193
Merit: 1000


Peaky Blinder


View Profile
September 21, 2015, 06:56:39 AM
 #1479

What about website, how is progress?

CHANGE FINANCE First Decentralised Global Crypto Bank
[color=#15B5E2 ]LINK TO ICO | LINK TO DISCUSSION
Teka
Hero Member
*****
Offline Offline

Activity: 840
Merit: 1000



View Profile
September 21, 2015, 08:38:25 AM
 #1480

What about website, how is progress?

Well its a weekday again so I will continue work today.
Pages: « 1 ... 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 [74] 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 ... 314 »
  Print  
 
Jump to:  

Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!