Bitcoin Forum
June 17, 2024, 03:22:24 AM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: « 1 ... 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 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 ... 314 »
  Print  
Author Topic: [ANN][SHIFT] The New Web | IPFS/Phantom | ShiftNrg.org Hosted Decentralized!  (Read 547549 times)
z0n0
Legendary
*
Offline Offline

Activity: 1274
Merit: 1006



View Profile
September 18, 2015, 08:29:49 AM
 #1421

btw - on instructions ( https://github.com/shiftcurrency/shift/wiki/Mining ) says: port 53901 but when I run "shift-windows-amd64 --rpc" it says: Listening on [::]:53900

Is that normal / OK ?

Code:
C:\Shift>shift-windows-amd64 --rpc
I0918 10:26:14.120904    4492 database.go:73] Alloted 16MB cache to C:\Users\zonott\AppData\Roaming\Shift\chaindata
I0918 10:26:14.162907    4492 database.go:73] Alloted 16MB cache to C:\Users\zonott\AppData\Roaming\Shift\dapp
I0918 10:26:14.176907    4492 backend.go:301] Protocol Versions: [61 60], Network Id: 1
I0918 10:26:14.177907    4492 backend.go:338] Blockchain DB Version: 3
I0918 10:26:14.273913    4492 chain_manager.go:237] Last block (#76070) eb0f4fd93117a0d86c97b8f8d1bc4845787f1c670be90faa
b6baac4423f4a3e1 TD=12909820312602956
I0918 10:26:17.268084    4492 cmd.go:125] Starting SHIFT/v0.3.0/windows/go1.5.1
I0918 10:26:17.269084    4492 server.go:311] Starting Server
I0918 10:26:17.340088    4492 udp.go:207] Listening, enode://47e91621913440dcc3a307cbcb7cc8e7a5a9c04393cae07f8c32d1e9782
fe182121c901f2260841f85525bb88051d59fc1db49a5db6b3686011c8f3bc72c6068@0.0.0.0:53900
I0918 10:26:17.342088    4492 server.go:552] Listening on [::]:53900
I0918 10:26:17.342088    4492 backend.go:567] Server started
I0918 10:26:17.345089    4492 ipc_windows.go:724] IPC service started (\\.\pipe\shf.ipc)
I0918 10:26:28.665736    4492 chain_manager.go:661] imported 1 block(s) (0 queued 0 ignored) including 0 txs in 25.0014m
s. #76071 [8067a970 / 8067a970]
ShiftTeam (OP)
Hero Member
*****
Offline Offline

Activity: 483
Merit: 510


The Shift Team


View Profile WWW
September 18, 2015, 09:49:16 AM
 #1422

btw - on instructions ( https://github.com/shiftcurrency/shift/wiki/Mining ) says: port 53901 but when I run "shift-windows-amd64 --rpc" it says: Listening on [::]:53900

Is that normal / OK ?

Code:
C:\Shift>shift-windows-amd64 --rpc
I0918 10:26:14.120904    4492 database.go:73] Alloted 16MB cache to C:\Users\zonott\AppData\Roaming\Shift\chaindata
I0918 10:26:14.162907    4492 database.go:73] Alloted 16MB cache to C:\Users\zonott\AppData\Roaming\Shift\dapp
I0918 10:26:14.176907    4492 backend.go:301] Protocol Versions: [61 60], Network Id: 1
I0918 10:26:14.177907    4492 backend.go:338] Blockchain DB Version: 3
I0918 10:26:14.273913    4492 chain_manager.go:237] Last block (#76070) eb0f4fd93117a0d86c97b8f8d1bc4845787f1c670be90faa
b6baac4423f4a3e1 TD=12909820312602956
I0918 10:26:17.268084    4492 cmd.go:125] Starting SHIFT/v0.3.0/windows/go1.5.1
I0918 10:26:17.269084    4492 server.go:311] Starting Server
I0918 10:26:17.340088    4492 udp.go:207] Listening, enode://47e91621913440dcc3a307cbcb7cc8e7a5a9c04393cae07f8c32d1e9782
fe182121c901f2260841f85525bb88051d59fc1db49a5db6b3686011c8f3bc72c6068@0.0.0.0:53900
I0918 10:26:17.342088    4492 server.go:552] Listening on [::]:53900
I0918 10:26:17.342088    4492 backend.go:567] Server started
I0918 10:26:17.345089    4492 ipc_windows.go:724] IPC service started (\\.\pipe\shf.ipc)
I0918 10:26:28.665736    4492 chain_manager.go:661] imported 1 block(s) (0 queued 0 ignored) including 0 txs in 25.0014m
s. #76071 [8067a970 / 8067a970]

53900 is the p2p port. The server.go is stating that it opens up the p2p socket, not the rpc socket. In other words, yes normal.

EDIT: saw your question about RPC. --rpc just enables the rpc-server on localhost. If you should explain so everyone understands, you could say that RPC allows remote execution of commands. Which means, there are some security implications. --rpc only enables it on localhost, as it should be.

The dangerous stuff begins when you add, --rpcaddr "yourexternalip" and that the rpc port is reached in public. but as stated, thats not the default behaviour.

Regards
z0n0
Legendary
*
Offline Offline

Activity: 1274
Merit: 1006



View Profile
September 18, 2015, 10:10:48 AM
 #1423

btw - on instructions ( https://github.com/shiftcurrency/shift/wiki/Mining ) says: port 53901 but when I run "shift-windows-amd64 --rpc" it says: Listening on [::]:53900

Is that normal / OK ?

Code:
C:\Shift>shift-windows-amd64 --rpc
I0918 10:26:14.120904    4492 database.go:73] Alloted 16MB cache to C:\Users\zonott\AppData\Roaming\Shift\chaindata
I0918 10:26:14.162907    4492 database.go:73] Alloted 16MB cache to C:\Users\zonott\AppData\Roaming\Shift\dapp
I0918 10:26:14.176907    4492 backend.go:301] Protocol Versions: [61 60], Network Id: 1
I0918 10:26:14.177907    4492 backend.go:338] Blockchain DB Version: 3
I0918 10:26:14.273913    4492 chain_manager.go:237] Last block (#76070) eb0f4fd93117a0d86c97b8f8d1bc4845787f1c670be90faa
b6baac4423f4a3e1 TD=12909820312602956
I0918 10:26:17.268084    4492 cmd.go:125] Starting SHIFT/v0.3.0/windows/go1.5.1
I0918 10:26:17.269084    4492 server.go:311] Starting Server
I0918 10:26:17.340088    4492 udp.go:207] Listening, enode://47e91621913440dcc3a307cbcb7cc8e7a5a9c04393cae07f8c32d1e9782
fe182121c901f2260841f85525bb88051d59fc1db49a5db6b3686011c8f3bc72c6068@0.0.0.0:53900
I0918 10:26:17.342088    4492 server.go:552] Listening on [::]:53900
I0918 10:26:17.342088    4492 backend.go:567] Server started
I0918 10:26:17.345089    4492 ipc_windows.go:724] IPC service started (\\.\pipe\shf.ipc)
I0918 10:26:28.665736    4492 chain_manager.go:661] imported 1 block(s) (0 queued 0 ignored) including 0 txs in 25.0014m
s. #76071 [8067a970 / 8067a970]

53900 is the p2p port. The server.go is stating that it opens up the p2p socket, not the rpc socket. In other words, yes normal.

EDIT: saw your question about RPC. --rpc just enables the rpc-server on localhost. If you should explain so everyone understands, you could say that RPC allows remote execution of commands. Which means, there are some security implications. --rpc only enables it on localhost, as it should be.

The dangerous stuff begins when you add, --rpcaddr "yourexternalip" and that the rpc port is reached in public. but as stated, thats not the default behaviour.

Regards

Thank you sir.
Xdragon
Hero Member
*****
Offline Offline

Activity: 543
Merit: 500


View Profile
September 18, 2015, 10:35:26 AM
 #1424

Strong buy support on bittrex
Gumbork
Hero Member
*****
Offline Offline

Activity: 583
Merit: 500



View Profile
September 18, 2015, 01:06:35 PM
 #1425

Strong buy support on bittrex

yes things are getting better now.


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

██ █
█ ██ █
█ ██ █
█ ██ █
█ ██ █
█ ██ █
█ ██ █
█ ██ █
█ ██ █
█ ██ █
██ █
free2yu
Sr. Member
****
Offline Offline

Activity: 266
Merit: 250



View Profile
September 18, 2015, 03:14:05 PM
 #1426

Strong buy support on bittrex

yes things are getting better now.
  we  need  Poloniex  , that  is the  biggest  exchange  now !

    dev  ,pleaes  call this  exchange ,we need it !

  please  everyone  support that ,let dev  know !
ShiftTeam (OP)
Hero Member
*****
Offline Offline

Activity: 483
Merit: 510


The Shift Team


View Profile WWW
September 18, 2015, 03:26:53 PM
 #1427

Strong buy support on bittrex

yes things are getting better now.
 we  need  Poloniex  , that  is the  biggest  exchange  now !

    dev  ,pleaes  call this  exchange ,we need it !

  please  everyone  support that ,let dev  know !

Yeah. It would be great. Lets not hurry though. We are here to stay. Our team got a genuine interest in developing Shift and cryptos in general.

Kind regards
ShiftConnect
Sr. Member
****
Offline Offline

Activity: 364
Merit: 250



View Profile
September 18, 2015, 04:40:40 PM
 #1428

Strong buy support on bittrex

yes things are getting better now.
  we  need  Poloniex  , that  is the  biggest  exchange  now !

    dev  ,pleaes  call this  exchange ,we need it !

  please  everyone  support that ,let dev  know !

We can only fulfill the technical requirements and put in the formal application, the decision is theirs and we won't pressure them.

We do know you want SHIFT to get on Polo, but there is only so much we can do.

A lot of their opinion is based on user demand. Let them know you want to trade us on their exchange!

Tweet and ask support in the chatbox if they could consider adding us Smiley


SHIFT Response Team
hankman
Full Member
***
Offline Offline

Activity: 182
Merit: 100


View Profile
September 18, 2015, 05:57:17 PM
 #1429




SHF is pretty hot but maybe doesn't have the volume. If someone has an extra $20 to spend on bittrex fees they should fake 50 BTC worth of volume. If you do it well enough Poloniex might not notice and they will add SHF thinking its good volume. Getting on poloniex could never get some real SHF volume going on.





Sneaky moves. I bet polo would realize its fake volume if someone did fake the volume.
hankman
Full Member
***
Offline Offline

Activity: 182
Merit: 100


View Profile
September 18, 2015, 06:24:59 PM
 #1430




All aboard the SHF rocket to the moon! haha. This looks like real volume on bittrex. price is going up with it.


HeXaN
Full Member
***
Offline Offline

Activity: 122
Merit: 100


View Profile
September 18, 2015, 06:33:06 PM
 #1431

When the pow ends?
ShiftConnect
Sr. Member
****
Offline Offline

Activity: 364
Merit: 250



View Profile
September 18, 2015, 06:36:05 PM
 #1432

When the pow ends?

Hey HeXaN,

the PoW period will last until 2 Mill coins have been mined.

After that the community votes if SHIFT stays PoW, switches to PoS or adopts a hybrid model.


SHIFT Response Team
dygus
Legendary
*
Offline Offline

Activity: 1193
Merit: 1000


Peaky Blinder


View Profile
September 18, 2015, 06:41:08 PM
 #1433

When the pow ends?

Hey HeXaN,

the PoW period will last until 2 Mill coins have been mined.

After that the community votes if SHIFT stays PoW, switches to PoS or adopts a hybrid model.



Hybrid model would be best IMO and 10 M coins in total amount.

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

Activity: 1190
Merit: 1004


View Profile
September 18, 2015, 06:53:59 PM
 #1434




SHF seems to be growing today. Nice price movement upwards and more volume.



ShiftConnect
Sr. Member
****
Offline Offline

Activity: 364
Merit: 250



View Profile
September 18, 2015, 07:00:17 PM
 #1435

When the pow ends?

Hey HeXaN,

the PoW period will last until 2 Mill coins have been mined.

After that the community votes if SHIFT stays PoW, switches to PoS or adopts a hybrid model.



Hybrid model would be best IMO and 10 M coins in total amount.

Well this will be your decision when we reach 2 Mill Wink


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

Activity: 518
Merit: 500



View Profile WWW
September 18, 2015, 07:10:36 PM
 #1436




SHF is pretty hot but maybe doesn't have the volume. If someone has an extra $20 to spend on bittrex fees they should fake 50 BTC worth of volume. If you do it well enough Poloniex might not notice and they will add SHF thinking its good volume. Getting on poloniex could never get some real SHF volume going on.





Sneaky moves. I bet polo would realize its fake volume if someone did fake the volume.

Or they use a trade bot too...

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
fartbags
Legendary
*
Offline Offline

Activity: 1190
Merit: 1004


View Profile
September 18, 2015, 07:18:36 PM
 #1437




SHF is pretty hot but maybe doesn't have the volume. If someone has an extra $20 to spend on bittrex fees they should fake 50 BTC worth of volume. If you do it well enough Poloniex might not notice and they will add SHF thinking its good volume. Getting on poloniex could never get some real SHF volume going on.





Sneaky moves. I bet polo would realize its fake volume if someone did fake the volume.

Or they use a trade bot too...



I really want to get on poloniex before the other 100 etheruem clones come out.  I think quick movement is required to get this coin at a different level than all of the next clones.



ShiftConnect
Sr. Member
****
Offline Offline

Activity: 364
Merit: 250



View Profile
September 18, 2015, 07:50:47 PM
 #1438


I really want to get on poloniex before the other 100 etheruem clones come out.  I think quick movement is required to get this coin at a different level than all of the next clones.


We have just put in a second request based on community demand and to include the new block explorer.

We know Poloniex is a good exchange and a secure home for coins, but we do not want to pressure them. The decision has to be theirs.

If you want SHF listed on Polo let them know too. Tweet, request or contact them in their chatbox Smiley


SHIFT Response Team
WCIR
Full Member
***
Offline Offline

Activity: 144
Merit: 100


View Profile
September 18, 2015, 08:23:24 PM
 #1439


ShiftConnect
Sr. Member
****
Offline Offline

Activity: 364
Merit: 250



View Profile
September 18, 2015, 09:24:03 PM
 #1440

Oh, nice!

You're linking to the old block explorer. Check the first page we have a new one.


SHIFT Response Team
Pages: « 1 ... 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 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 ... 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!