Bitcoin Forum
May 11, 2024, 06:03:25 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Poll
Question: Would you like fly to rebrand to "Las Vegas" coin, and do a swap and add masternodes, POS would be 25%, Min stake time 1 day. Pow for 20,000 blocks, mining quark. Reward .5 "Las Vegas" per block.
Yes, all of the above as stated.
Yes, I approve all of the above, but POS to be 50%
Yes, I would like all of the above but NO POW, POS only.
Yes, I would like all of the above , but I would like 2 "Las Vegas coins" for 1 fly.
Yes, but I want 50% POS and 4 "Las Vegas" coins to for 1 fly coin.
Yes, but I want 4 "Las Vegas" coins for 1 fly coin. POS to be 25%.
NO, do nothing. Continue to just develop fly.

Pages: « 1 ... 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 125 126 127 128 129 130 131 132 133 134 135 136 137 »
  Print  
Author Topic: FLY COIN ANN.Swapping to "Las Vegas"coin,+Masternodes,Darksend,Stealth, instantX  (Read 186119 times)
This is a self-moderated topic. If you do not want to be moderated by the person who started this topic, create a new topic.
Limx Dev
Copper Member
Legendary
*
Offline Offline

Activity: 2324
Merit: 1348



View Profile
September 13, 2016, 07:09:53 AM
 #1821


i think thats the tricky part

u dont check balances of other addresses on normal bitcoin based wallets
u check just single tx which are involved in a transaction

so if someone send coin u know if he is the owner of that coins because he was able sign with correct key
and u can check that this tx he use as input is really unspend until yet

but u have no idea whats his wallet balance is

to do this u would have to know all his incoming and outgoing tx

and not just the few that are involved in a transaction

but if u say u have a solution then im looking forward to see it work

the only solution i see would be
1. each node is a little blockexplorer writting a database that constant track balance of each address
2. u try implement some stuff from miniblockchain (i think cryptonite is the only coin using it and its still in beta stage since forever)
they try to keep a balance of each address stored in the blockchain in a way that in theory u never need to sync more than 10000 blocks
and u know the correct balance of each address

both paths seems to be very complicated

but im no coder and have just a small limited knowledge about how blockchains based on bitcoins are working

maybe im total wrong  Cool

unfortunately yes, you are totally wrong =p

that little block explorer database concept you mentioned is exactly what txleveldb provides metadata for. PoS wouldnt actually be possible without it. the txleveldb already keeps track of the metadata for every transaction in the chain because it is used for metadata about the blocks in the chain. anyone who downloads the chain already has every transaction for every address, they are stored on your computer whenever you sync a block. you just normally dont care about anyone elses transactions except the ones that involve you. so it is fully possible to look up someone elses addresses balance with everything in the wallet as it is, you just need to make the function to do it.




To help balance things:

 - Coins to unlock Flynode should not stake or receive bonus, only Flynode fees.
    - public posted address that shows in the Flynode list in the wallet.

why not? they cant give the masternode reward to themselves, so it doesnt matter if they stake otherwise?
not sure what you mean by public posted address, but the masternode list is held by every client already so if u ever want to know who is running a masternode you can just reference that list. just like you can lookup what peers you are connected to. will give you the same info, CMasterNode is an extension of CNode

- Random selection of node is not guaranteed random.
    - Use an order of sequence from the list of known nodes, and each wallet will step through the Flynodes that are visible to their wallet.
    - Flynode goes down, it loses it's priority and works from the bottom again.  
    - Reliable Flynodes stay in the cycle and receive consistent rewards.
    - Bad actors will receive less rewards.
random selection of node is not guaranteed random? i dont understand what you mean here, it is completely random. uses the built in random functionality so its about as fair as RNG will ever be. if you are concerned that it wont be fair and some people will get more rewards than others, then this is only true in the short term. since its a random number the % should even out to be the same number of rewards to all clients over time as is true with any random algorithm.

all flynodes should be visible to all wallets as long as that flynode is online. you are syncing a list that should always agree with the network. everyone will always have the same flynode list.

if a flynode goes down it is just removed from the list until it comes back online, this is not a statically coded list. it is based on node messaging. so this ties into your next point that yes, reliable fly nodes stay in the cycle because you need to be online to even be considered.

bad actors dont receieve any rewards, if your node has a misbehaving count that is higher than a certain number you arent eligible for selection anyway.

- Flynode should not have an active wallet
    - Coins to unlock a Flynode should not need to be in the wallet of the Flynode (you are setting up attack targets).
    - Use an Address and secret key combination to unlock the node.  
    - The rewards are set to the Address that is running in another wallet (secure behind a firewall).

it was never stated that your flynode had to be an active/unlocked wallet. it just has to be on the network (client has to be running, not unlocked). as with any cryptocurrency the security of the wallet is your responsibility. being a flynode should not decrease your wallet security at all from a code standpoint. it is still the responsibility of the person running a wallet to make sure their system and home networks are secure.

if the coins of a flynode arent in the flynode how do you know its a valid flynode? just keep the wallet locked if you are concerned about someone attacking your network.  



I recommend a normal masternode system with Tor and 1000 Fly per Node. Then POS and Node 50/50. I think that is work for 1-2 weeks. 

Bitcore BTX - a UTXO fork of Bitcoin - since 2017
___██ WebSite
██ Telegram
___██ Github
██ Github - Releases/ Wallets
___██ SBTX Pancakeswap
██ ChainzID Explorer
___██ UTXO fork
██ Coinmarketcap.com
Advertised sites are not endorsed by the Bitcoin Forum. They may be unsafe, untrustworthy, or illegal in your jurisdiction.
cryptonit
Legendary
*
Offline Offline

Activity: 3038
Merit: 1053


bit.diamonds | uNiq.diamonds


View Profile WWW
September 13, 2016, 08:05:10 AM
 #1822


that little block explorer database concept you mentioned is exactly what txleveldb provides metadata for. PoS wouldnt actually be possible without it. the txleveldb already keeps track of the metadata for every transaction in the chain because it is used for metadata about the blocks in the chain. anyone who downloads the chain already has every transaction for every address, they are stored on your computer whenever you sync a block. you just normally dont care about anyone elses transactions except the ones that involve you. so it is fully possible to look up someone elses addresses balance with everything in the wallet as it is, you just need to make the function to do it.


this is clear to me that the local copy of the blockchain know any transaction and so u can find out the balance of each address

but can u imagine how much load it create to calculate a address balance

make a importprivkey and u know it its over 1 min for a single address

in fact its a whole chain rescan

that why i said u need a additional database with better index optimized for searching
maybe only store transactions of registered flynodes

i would listen to limx dev
a normal masternode system flat POS block rewards and split reward between POS minter and masternode
thats a save path to a working system

the other path could create something new but its very uncertain u able u achieve it

to me it looks far more complicated to make that vision of flynode happen then teh antidump features where
and we know all how that experiment endet

 
  Diamond [DMD]     uNiq.Diamonds  
Scarce✦✦✦✦ Valuable ✦✦✦✦ Secure ✦                     ▬ a collector experience ▬                
vegasguy (OP)
Legendary
*
Offline Offline

Activity: 1610
Merit: 1003


"Yobit pump alert software" Link in my signature!


View Profile
September 13, 2016, 10:07:19 PM
 #1823


that little block explorer database concept you mentioned is exactly what txleveldb provides metadata for. PoS wouldnt actually be possible without it. the txleveldb already keeps track of the metadata for every transaction in the chain because it is used for metadata about the blocks in the chain. anyone who downloads the chain already has every transaction for every address, they are stored on your computer whenever you sync a block. you just normally dont care about anyone elses transactions except the ones that involve you. so it is fully possible to look up someone elses addresses balance with everything in the wallet as it is, you just need to make the function to do it.


this is clear to me that the local copy of the blockchain know any transaction and so u can find out the balance of each address

but can u imagine how much load it create to calculate a address balance

make a importprivkey and u know it its over 1 min for a single address

in fact its a whole chain rescan

that why i said u need a additional database with better index optimized for searching
maybe only store transactions of registered flynodes

i would listen to limx dev
a normal masternode system flat POS block rewards and split reward between POS minter and masternode
thats a save path to a working system

the other path could create something new but its very uncertain u able u achieve it

to me it looks far more complicated to make that vision of flynode happen then teh antidump features where
and we know all how that experiment endet

Cryptonit, I think comparing the anti-dump system risk, and the flynode risk are two different things. Here is why... the antidump system was a key part of sending and withdrawals, the flynode system is NOT. So when the antidump system failed, it prevented transactions, a MAJOR component. With the flynode, should it by chance not work correctly, fly will still function. People will still be able to move funds around, and its not a "show stopper" like the antidump system. If enough people posted here, that they strongly favor a standard masternode system, then I would strongly consider changing it. Also I would consider who it is thats posting. If its been long time fly loyalists saying they dont want this flynode, and they want a standard masternode system that would cause me to seriously consider a standard masternode. Know this , if we implemented a standard masternode system, then Im not sure it would add any value to fly. I would like to give flynode a shot first, then if for some reason, its not what we expected, then I will implement a standard masternode system.

Vegas

I want to make sure everyone knows that I just released my software called "Yobit pump alert". THis is custom software that uses an algo to detect the start of a pump here on yobit, the second it starts. YOu can even filter the coins you see by price. Most pumps start less than 100 sats , so you can easily filter the cheap coins, so they are the only ones displayed Smiley https://bitcointalk.org/index.php?topic=1945937.msg20241953#msg20241953
kiklo
Legendary
*
Offline Offline

Activity: 1092
Merit: 1000



View Profile
September 13, 2016, 10:29:57 PM
 #1824

hmm,
one point of interest, since Fly is a rare coin with numbers below 1 billion.

In a standard masternode system,
those coins being held do not stake, which is no issue for PoW coins,
however for a PoS coin, this would decrease the amount of staking coins and decrease the network difficulty, thereby weakening your PoS Security.

However your FlyNode,
there would be no decrease in network difficulty and in fact since these nodes will be running ~24x7, should cause an increase in your PoS Security.   Wink

For a PoS coin Flynode design would be better than the old masternode design, from a security standpoint.

 Cool
vegasguy (OP)
Legendary
*
Offline Offline

Activity: 1610
Merit: 1003


"Yobit pump alert software" Link in my signature!


View Profile
September 14, 2016, 12:35:10 AM
 #1825

hmm,
one point of interest, since Fly is a rare coin with numbers below 1 billion.

In a standard masternode system,
those coins being held do not stake, which is no issue for PoW coins,
however for a PoS coin, this would decrease the amount of staking coins and decrease the network difficulty, thereby weakening your PoS Security.

However your FlyNode,
there would be no decrease in network difficulty and in fact since these nodes will be running ~24x7, should cause an increase in your PoS Security.   Wink

For a PoS coin Flynode design would be better than the old masternode design, from a security standpoint.

 Cool

Whats your fly address Wink


I want to make sure everyone knows that I just released my software called "Yobit pump alert". THis is custom software that uses an algo to detect the start of a pump here on yobit, the second it starts. YOu can even filter the coins you see by price. Most pumps start less than 100 sats , so you can easily filter the cheap coins, so they are the only ones displayed Smiley https://bitcointalk.org/index.php?topic=1945937.msg20241953#msg20241953
vegasguy (OP)
Legendary
*
Offline Offline

Activity: 1610
Merit: 1003


"Yobit pump alert software" Link in my signature!


View Profile
September 14, 2016, 12:46:39 AM
 #1826

Guys I watch the gauges. I always need to know if Im headed in the right direction. There are many signals. It could be user feedback, or activity on the exchange, the activity on the thread and more. It lets me know if I am headed down the right path or not. Well, fly is really starting to pick up steam. That tells me , that they really like the idea, and are getting as much fly as they can , before there is none left. The WORST thing you can do now is send funds to the exchange. If we want the price to go up, then we need to hold. Because now there is a major shortage of fly on Yobit. There is and will be more demand as things move further. Here is universal law. Supply and demand. When the demand far outweighs the supply, prices go very high. Im going to ask everyone to hold and not send to the exchange to make the supply even less, thus raising prices even more. The screen shot below was taken just minutes ago, it tells me everything I needed to know Wink



https://www.yobit.net/en/trade/FLY/BTC


Vegas


I want to make sure everyone knows that I just released my software called "Yobit pump alert". THis is custom software that uses an algo to detect the start of a pump here on yobit, the second it starts. YOu can even filter the coins you see by price. Most pumps start less than 100 sats , so you can easily filter the cheap coins, so they are the only ones displayed Smiley https://bitcointalk.org/index.php?topic=1945937.msg20241953#msg20241953
wingless
Member
**
Offline Offline

Activity: 102
Merit: 10


View Profile
September 14, 2016, 01:43:08 AM
 #1827

Is it possible to realistically solo mine this coin? If so, can you do it through the gui wallet? Or do you need a stand alone miner?

Thanks
vegasguy (OP)
Legendary
*
Offline Offline

Activity: 1610
Merit: 1003


"Yobit pump alert software" Link in my signature!


View Profile
September 14, 2016, 02:04:30 AM
 #1828

Is it possible to realistically solo mine this coin? If so, can you do it through the gui wallet? Or do you need a stand alone miner?

Thanks

Im sorry mining is over. We are POS only now. However in a few weeks we will have a multipool that pays out in fly.

Thanks
Vegas

I want to make sure everyone knows that I just released my software called "Yobit pump alert". THis is custom software that uses an algo to detect the start of a pump here on yobit, the second it starts. YOu can even filter the coins you see by price. Most pumps start less than 100 sats , so you can easily filter the cheap coins, so they are the only ones displayed Smiley https://bitcointalk.org/index.php?topic=1945937.msg20241953#msg20241953
pokeytex
Legendary
*
Offline Offline

Activity: 1504
Merit: 1002



View Profile
September 14, 2016, 02:11:30 AM
 #1829

@vegasguy - anyway you can make sure that the wallet links on the OP have the version number listed?  It is confusing without it.

vegasguy (OP)
Legendary
*
Offline Offline

Activity: 1610
Merit: 1003


"Yobit pump alert software" Link in my signature!


View Profile
September 14, 2016, 02:14:40 AM
 #1830

@vegasguy - anyway you can make sure that the wallet links on the OP have the version number listed?  It is confusing without it.

Excellent idea. Ill put the date released also.

Thanks

Vegas

I want to make sure everyone knows that I just released my software called "Yobit pump alert". THis is custom software that uses an algo to detect the start of a pump here on yobit, the second it starts. YOu can even filter the coins you see by price. Most pumps start less than 100 sats , so you can easily filter the cheap coins, so they are the only ones displayed Smiley https://bitcointalk.org/index.php?topic=1945937.msg20241953#msg20241953
midnight_miner
Hero Member
*****
Offline Offline

Activity: 652
Merit: 500


We only want the FACTS!


View Profile WWW
September 14, 2016, 02:37:44 AM
 #1831

hmm,
one point of interest, since Fly is a rare coin with numbers below 1 billion.

In a standard masternode system,
those coins being held do not stake, which is no issue for PoW coins,
however for a PoS coin, this would decrease the amount of staking coins and decrease the network difficulty, thereby weakening your PoS Security.

However your FlyNode,
there would be no decrease in network difficulty and in fact since these nodes will be running ~24x7, should cause an increase in your PoS Security.   Wink

For a PoS coin Flynode design would be better than the old masternode design, from a security standpoint.

 Cool

Do you have any math to back up your statement?  I don't see that it holds water.
kiklo
Legendary
*
Offline Offline

Activity: 1092
Merit: 1000



View Profile
September 14, 2016, 04:49:19 AM
 #1832

hmm,
one point of interest, since Fly is a rare coin with numbers below 1 billion.

In a standard masternode system,
those coins being held do not stake, which is no issue for PoW coins,
however for a PoS coin, this would decrease the amount of staking coins and decrease the network difficulty, thereby weakening your PoS Security.

However your FlyNode,
there would be no decrease in network difficulty and in fact since these nodes will be running ~24x7, should cause an increase in your PoS Security.   Wink

For a PoS coin Flynode design would be better than the old masternode design, from a security standpoint.

 Cool

Do you have any math to back up your statement?  I don't see that it holds water.


Hmm,
it should be apparent , but since you asked for math ,
here you go.   Smiley

hashProofOfStake <= [Coin-age] x [Target]      
[Coin-age] = [amount of coins] x [days in stake]      
      

 Cool
kiklo
Legendary
*
Offline Offline

Activity: 1092
Merit: 1000



View Profile
September 14, 2016, 05:47:22 AM
 #1833

Kiklo's Premium Blockchain Snapshot Service

FlyCoin SnapShot updated to 9-14-2016

Snapshot
https://bitcointalk.org/index.php?topic=1378653.msg16243107#msg16243107

Bootstrap
https://mega.nz/#F!CJRnyDDL!vbYN-3mvj9RBE7Phl27Sjg

 Cool
bittamak
Sr. Member
****
Offline Offline

Activity: 444
Merit: 250


View Profile
September 14, 2016, 06:09:39 AM
 #1834

Looks like the Dev is confident of implementing the new suggestions...it's certainly good to see the concerns/questions raised from community and as long as Dev has answers, i don't see a reason why we can't build the new system...Smiley
midnight_miner
Hero Member
*****
Offline Offline

Activity: 652
Merit: 500


We only want the FACTS!


View Profile WWW
September 14, 2016, 07:50:25 PM
 #1835

hmm,
one point of interest, since Fly is a rare coin with numbers below 1 billion.

In a standard masternode system,
those coins being held do not stake, which is no issue for PoW coins,
however for a PoS coin, this would decrease the amount of staking coins and decrease the network difficulty, thereby weakening your PoS Security.

However your FlyNode,
there would be no decrease in network difficulty and in fact since these nodes will be running ~24x7, should cause an increase in your PoS Security.   Wink

For a PoS coin Flynode design would be better than the old masternode design, from a security standpoint.

 Cool

Do you have any math to back up your statement?  I don't see that it holds water.


Hmm,
it should be apparent , but since you asked for math ,
here you go.   Smiley

hashProofOfStake <= [Coin-age] x [Target]      
[Coin-age] = [amount of coins] x [days in stake]      
      

 Cool

I wish modeling p2p networks and staking wallets was that simple.  How do you factor in user perception and statistical variables such as the number of nodes vs Flynodes?
CryptoGore
Full Member
***
Offline Offline

Activity: 181
Merit: 100

Bitflipy.com - $$_Flip your lucky coin_$$


View Profile WWW
September 14, 2016, 07:50:56 PM
 #1836

i'm new to this, any guide to masternodes?

▄ ▀ ▄ ▀   BTC FLIP YOUR LUCKY COIN BTC Free credit signup BTC WWW.BITFLIPY.COM BTC  ▄ ▀ ▄ ▀
●▬●▬●▬●▬●▬●▬●▬●▬●▬●▬●   BitFlipy.com   ●▬●▬●▬●▬●▬●▬●▬●▬●▬●▬●
▄ ▀ ▄ ▀  OFFICIAL THREAD   ▄ ▀ ▄ ▀
metamorphin
Legendary
*
Offline Offline

Activity: 1106
Merit: 1004


No risk, no fun!


View Profile WWW
September 14, 2016, 07:54:26 PM
 #1837

i'm new to this, any guide to masternodes?

We are not ready yet, but of course we will have a guide for a FlyNode.

Be smart and buy the first coins to reach one FlyNode.

Greetz
Steve
vegasguy (OP)
Legendary
*
Offline Offline

Activity: 1610
Merit: 1003


"Yobit pump alert software" Link in my signature!


View Profile
September 14, 2016, 08:09:38 PM
 #1838

Guys, Ive updated some of the information on the OP, including a link to Presstabs' block explorer. Also added the version # of the wallet and date released (Thank you Pokeytex, for this great suggestion). Later I will add a new banner called "Flynode", and write the description and details.

Vegas


I want to make sure everyone knows that I just released my software called "Yobit pump alert". THis is custom software that uses an algo to detect the start of a pump here on yobit, the second it starts. YOu can even filter the coins you see by price. Most pumps start less than 100 sats , so you can easily filter the cheap coins, so they are the only ones displayed Smiley https://bitcointalk.org/index.php?topic=1945937.msg20241953#msg20241953
kiklo
Legendary
*
Offline Offline

Activity: 1092
Merit: 1000



View Profile
September 15, 2016, 12:59:16 AM
 #1839

I wish modeling p2p networks and staking wallets was that simple.  How do you factor in user perception and statistical variables such as the number of nodes vs Flynodes?

User Perception     = Irrelevant
Number of Nodes   = Important to help with syncing and help in blocking a sybil attack ,
However # of Staking coins has a greater effect on security than # of Nodes .
Reason: Longest Chain with the Highest Difficulty always wins.

The more coins that are staking the higher the security, since the fly node design would have more people stay online longer, their coins will be staking more.
Where as the old masternode design guarantees those coins are not staking and deceases the overall % of coin even available to stake,
ie: Less Coins Staking , Lowers the hashProofOfStake , which means weaker security.
     More Coins Staking , Raises the hashProofOfStake  , which means stronger security.

It is Logic, it is not complicated.  Smiley

 Cool
Woody20285
Legendary
*
Offline Offline

Activity: 1218
Merit: 1002


Supporting DMD, ERC & PIO


View Profile
September 16, 2016, 10:05:11 PM
 #1840

                       Happy Birthday FlyCoin!



             1 Year Old Today & Still Moving Forward
Pages: « 1 ... 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 125 126 127 128 129 130 131 132 133 134 135 136 137 »
  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!