Bitcoin Forum
April 25, 2024, 10:08:22 AM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: [1] 2 3 4 5 6 7 8 9 »  All
  Print  
Author Topic: [ANN] Your Vote Matters (YVM) - Token with strategy driven by holders  (Read 1870 times)
YVMat (OP)
Copper Member
Jr. Member
*
Offline Offline

Activity: 97
Merit: 1


View Profile
January 23, 2019, 06:52:38 AM
Last edit: March 06, 2019, 12:52:06 PM by YVMat
Merited by Mihawk (1)
 #1



     

     

     

     


SPECIFICATION

name:     YourVoteMatters
symbols:   YVM
contract creator: https://etherscan.io/address/0x8548234bd2f8033b910c8313b9d314b6a453c1c9
contract: https://etherscan.io/address/0x807a8889e84cc9a2b3271c45e886b0a4469b64fc
code: https://etherscan.io/address/0x807a8889e84cc9a2b3271c45e886b0a4469b64fc#code
total:    10 000*
decimals:  18
* P.S.: We reserve 90K for covering expenses (listings, promotion, wages etc)
10K is issued and will be placed on the market. All emissions above can be done only after a simple majority of votes decision after suggestion.



BACKGROUND

There is a situation in the market when offers prevail over the demand and most of the offers are pretty the same. You may ask what we are talking about, here is the answer: have a look at https://etherscan.io/ and compare codes of first 100 tokens. Amazing isn't it? Unique projects can be counted on the fingers of one hand (thanks God not Freddy Krueger’s ??). All other projects have nothing more than the standard ERC 20 code and this is sad. Most of these projects do not bring up value nor add it to the entire crypto-community; people have a negative opinion on what is happening, the market is in the red area. Very few traders can trade within bearish trend, and everyone wonders what will happen to Bitcoin.

In its turn, new interesting projects are able to give the market a new breath of fresh air and boost to new heights. After all, we heard a lot, that price of Ethereum dropped due to the large number of scam ICOs. The rest of the market suffers for the same reason. You can sit and wait for the moment when scammers are no longer profitable by issuing scam projects. Alternatively, one can create interesting and honest projects establishing the level to separate from them. On your own create necessary market conditions with which scam projects will die out and, at the same time, keep Bitcoin or Ethereum rates up.

And…as usual the words are sweet but what is the reality? In fact, all is harder than one can imagine. In current situation trust gaining objective is not just, so to say, difficult but a little harder than to get over that fairy ice wall from popular fantasy story. Actually, one won’t get over it unless try…so we need to try it. Preparation, equipment, tools and only goal ahead…only thing – don’t look down.


INTRO

Let’s imagine a company managed by stockholders. The more shares you have the more influence power you have on the company. Basically, we meet this approach throughout all spheres of life. We have rights for: vote, freedom, in general, such rules that ensure the protection of the dignity and freedom of each individual person. So it turns out that as a part of society you take part in its life.

Otherwise we can observe crypto community: there are “devs” and “hamsters”. First make money on the second and there is no alternative to cooperate. Well yes, there are major traders, probably. Rumors say there are three whales supporting the market. There were projects, which became big ones thanks to the community, but where are they now? The same location as the whole market is – at the bottom. How did they get there? Did not find mutual understanding, quarreled, wanted to go on different ways of development, generally failed to make the joint decision. After all, there is no tool to make this decision legitime.

Here we face a challenge how to make this kind of decision legitime. Actually, there is no need to go far for the solution. Use Blockchain! (Voting possibility will be established using it). This solution is as simple as ultimately appropriate. Remember at the beginning of the section we talked about a company and shares, so consider that the tokens will act as shares, and holders as shareholders. Looks interesting? – However, Dev can have an unlimited source of shares – How to protect the shareholders? Dev shall not be considered as shareholder in the contract. Basically, Dev won’t possess tokens. Tokens are to be issued only at demand and immediately go to Exchanges for sale. Even more, only those tokens may vote which are on holders’ wallets but not on Exchanges. This way the joint decisions will be ultimately legitime.


CONCEPT


  • The essense is to manage the project by holders, where number of tokens held equals to number of votes holder has.
  • Topic to vote can be brought up by any holder. Wallet developer shall not be subject to voting right.
  • Originally, Dev issues some number of tokens to cover its expenses and further project support.
  • All the rest of project life is managed by voting whereas holders bring up topics to vote.


VOTING RULES:

1. Any holder can bring up a suggestion to vote.

2. Further development and marketing suggestions can be brought up.

3. Suggestion is to be put up in details on forum thread and the voting is done via contract to avoid high fee for transaction.

4. Each suggestion/offer must contain the Goal (Idea) and ways/vision to achieve it.
P.S. No need to waste your time and money for suggestion like pricing equal to 10btc without real roadmap how to reach it. Suggestions like “we won’t just sell lower” won’t work. Unfortunately, you won’t be heard at least by All holders.

5. Based on that, your offers should not contain directions to the market participants, as long as there is no tool to trace it.

6. Rules can and will be amended.


HOW IT WORKS (CODE SAMPLES WITH DESCRIPTION)

The contract contains the basic code for ERC-20 standard required to work on Exchanges.
Added SafeMath library to save transactions costs for calculations.
Entire contract code is publicly available at etherscan.io
Below provided are the most important extracts from the code with detailed descriptions.
Independence and reliability of voting is provided by a closed structure for each voting:

Code:
struct stSuggestion {
string  text; //Voting text
uint256 total_yes; //Vote "for"
uint256 total_no; //Vote "against"
uint256 timeStop; //time to vote end
bool finished; // Flag to indicate completed voting
uint voters_count; //Total voters
mapping(uint => address) voters_addrs; //Wallets addresses of voters
mapping(address  => uint256) voters_value; //Number of votes from each wallet
    }

All voting items are kept in special list:
Code:
mapping (uint => stSuggestion) suggestions;

Main functions of contract:
Code:
addSuggestion
Creates new voting item and remembers text and date stated by user.
Remaining voting parameters are forcibly reset:
suggestions[newID].text = s;
suggestions[newID].total_yes = 0;
suggestions[newID].total_no  = 0;
suggestions[newID].timeStop =  now + forDays * 1 days;
suggestions[newID].finished = false;
suggestions[newID].voters_count = 0;

Terminates tokens user spent for voting suggestion:
balances[msg.sender] = balances[msg.sender].sub(Price);
totalSupply = totalSupply.sub(Price);
getSuggestion
Returns publicly available voting information by ordinal number. Nobody can get the addresses of the voters, not even the developer:
return (
            suggestions[id].text,
            suggestions[id].total_yes,
            suggestions[id].total_no,
            suggestions[id].timeStop,
            suggestions[id].finished,
            suggestions[id].voters_count
            );
finishSuggestion
This function will close the voting and return tokens to addresses of the voters:
   
For each voter
for ( i = 1; i <= suggestions[id].voters_count; i++){
addr = suggestions[id].voters_addrs[i];
val  = suggestions[id].voters_value[addr];
balances[addr] = balances[addr].add( val ); // Return tokens to voter
totalSupply = totalSupply.add( val ); // Notify contract that tokens are back to flow
}
function Vote
Allows to vote. It is required to specify voting number, quantity of votes and vote status "For" or "Against"

if (MyVote)
suggestions[id].total_yes += Value; //Votes "For"
else
suggestions[id].total_no  += Value; // Votes "Against"

//Remember who voted and with how many tokens
suggestions[id].voters_count++;
suggestions[id].voters_addrs[ suggestions[id].voters_count ] = msg.sender;
suggestions[id].voters_value[msg.sender] = suggestions[id].voters_value[msg.sender].add(Value);
balances[msg.sender] = balances[msg.sender].sub(Value); // Withdraw tokens from user
totalSupply = totalSupply.sub(Value); //Notify contract that votes taken from flow

Additional functions for working with the contract through API:
Code:
setSuggPrice	- set a price for placing a vote suggestion
getListSize - returns number of voting suggestions in contract
isSuggestionNeedToFinish - checks if voting needs to be ended


ROADMAP

Pending implementation via vote system. Suggest, discuss, implement and verify voting system for vitality!)))


CONCLUSION

Will be issued later. First, need to observe how this project will move on. There is hope that the project will be developing with interest and excitement, ideally, with no devs active involvement but with participants enthusiasm. We are eager to watch the result of all efforts!
1714039702
Hero Member
*
Offline Offline

Posts: 1714039702

View Profile Personal Message (Offline)

Ignore
1714039702
Reply with quote  #2

1714039702
Report to moderator
"If you don't want people to know you're a scumbag then don't be a scumbag." -- margaritahuyan
Advertised sites are not endorsed by the Bitcoin Forum. They may be unsafe, untrustworthy, or illegal in your jurisdiction.
1714039702
Hero Member
*
Offline Offline

Posts: 1714039702

View Profile Personal Message (Offline)

Ignore
1714039702
Reply with quote  #2

1714039702
Report to moderator
AAF
Jr. Member
*
Offline Offline

Activity: 82
Merit: 1


View Profile
January 23, 2019, 06:56:13 AM
 #2

what price do you expect to enter the market?
YVMat (OP)
Copper Member
Jr. Member
*
Offline Offline

Activity: 97
Merit: 1


View Profile
January 23, 2019, 07:18:33 AM
 #3

what price do you expect to enter the market?

So far, before listing and right after we plan to emit rather small volume of tokens this can help us to establish attractive pricing for it.
Later on holders are to decide the strategy by voting.
Xair
Newbie
*
Offline Offline

Activity: 5
Merit: 0


View Profile
January 24, 2019, 02:21:17 PM
 #4

Holder driven market is a very interesting concept...  Shocked

Any estimates on an ICO / listing timeline?
YVMat (OP)
Copper Member
Jr. Member
*
Offline Offline

Activity: 97
Merit: 1


View Profile
January 25, 2019, 05:48:30 AM
Last edit: January 25, 2019, 08:31:19 AM by YVMat
 #5

Holder driven market is a very interesting concept...  Shocked

Any estimates on an ICO / listing timeline?

There is no ICO actually but for those who want to buy before listing pls PM.
Listing is schduled for 1st decade of February.
alexyenov
Newbie
*
Offline Offline

Activity: 4
Merit: 0


View Profile
January 28, 2019, 10:14:41 AM
 #6

Amazing idea!
Managing the development of the project from the coin holders is incredible!
Now, finally, we will be able to determine for ourselves how we see development.
No other project on the market has previously offered such creative freedom. Developers - just great! Coin is waiting for a huge, resounding success!
Good luck, Team !
Dr.Sponge
Member
**
Offline Offline

Activity: 616
Merit: 10


View Profile
January 28, 2019, 10:20:36 AM
 #7

what price do you expect to enter the market?

So far, before listing and right after we plan to emit rather small volume of tokens this can help us to establish attractive pricing for it.
Later on holders are to decide the strategy by voting.
Since your project is only matters to the vote of the holders, what did you do and how you like to get the profit by developing the tokens?
YVMat (OP)
Copper Member
Jr. Member
*
Offline Offline

Activity: 97
Merit: 1


View Profile
January 28, 2019, 10:20:49 AM
 #8

Amazing idea!
Managing the development of the project from the coin holders is incredible!
Now, finally, we will be able to determine for ourselves how we see development.
No other project on the market has previously offered such creative freedom. Developers - just great! Coin is waiting for a huge, resounding success!
Good luck, Team !

Thank you so much!
With all your support this will be mutually benificial project!
YVMat (OP)
Copper Member
Jr. Member
*
Offline Offline

Activity: 97
Merit: 1


View Profile
January 28, 2019, 10:29:37 AM
 #9

what price do you expect to enter the market?

So far, before listing and right after we plan to emit rather small volume of tokens this can help us to establish attractive pricing for it.
Later on holders are to decide the strategy by voting.
Since your project is only matters to the vote of the holders, what did you do and how you like to get the profit by developing the tokens?

The idea of token is that HOLDERS are to decide by suggetions and voting which direction to develop the project.
Devs do not have vote. We only reserve 90K for covering expences (listings, promotion, wages etc)
10K is issued and will be placed on the market. All emissions above can be done only after a simple majority of votes decision after suggestion.
mrbanjo
Sr. Member
****
Offline Offline

Activity: 1134
Merit: 276


View Profile
January 28, 2019, 10:33:49 AM
 #10

The idea is very good, something new to this market. But the problem is that at this stage the idea of voting for those who hold assets discredited themselves. Something like this I see it. Maybe in a growing market, something positive will happen, but so far without a huge community that is mainly lazy, projects simply cannot work.
YVMat (OP)
Copper Member
Jr. Member
*
Offline Offline

Activity: 97
Merit: 1


View Profile
January 28, 2019, 11:00:52 AM
 #11

The idea is very good, something new to this market. But the problem is that at this stage the idea of voting for those who hold assets discredited themselves. Something like this I see it. Maybe in a growing market, something positive will happen, but so far without a huge community that is mainly lazy, projects simply cannot work.

Appreciate your opinion.
Who knows when market will go up. Why not try help it up together? Any project needs community. Join.. Wink 
laks777
Jr. Member
*
Offline Offline

Activity: 123
Merit: 5


View Profile
January 28, 2019, 11:57:13 AM
 #12

The idea is very interesting, especially due to the fact that there will be few tokens, and you can easily provide them with cash and support the price on the market, and the more coin holders become, the higher the price will be! Very promising for those who like to keep coins, especially when the price grows Bitcoin to $ 20,000, everyone will immediately appreciate
YVMat (OP)
Copper Member
Jr. Member
*
Offline Offline

Activity: 97
Merit: 1


View Profile
January 28, 2019, 02:20:45 PM
 #13

The idea is very interesting, especially due to the fact that there will be few tokens, and you can easily provide them with cash and support the price on the market, and the more coin holders become, the higher the price will be! Very promising for those who like to keep coins, especially when the price grows Bitcoin to $ 20,000, everyone will immediately appreciate

Thanks for understanding and support!
Good luck with joining us  Wink
laks777
Jr. Member
*
Offline Offline

Activity: 123
Merit: 5


View Profile
January 28, 2019, 04:49:27 PM
 #14

I will follow your project, I am sure that he has a good future, which will only benefit your users and the community as a whole!
YVMat (OP)
Copper Member
Jr. Member
*
Offline Offline

Activity: 97
Merit: 1


View Profile
January 28, 2019, 05:51:45 PM
 #15

I will follow your project, I am sure that he has a good future, which will only benefit your users and the community as a whole!

Great, welcome! more community more profit for all! Smiley
Pavelnew
Newbie
*
Offline Offline

Activity: 7
Merit: 0


View Profile
January 28, 2019, 06:30:55 PM
 #16

I like such projects. Not so often such meet. This is not a scam. But this is just an incredible idea that you will have. No matter how loud it sounded! I always buy some at the very beginning. Suddenly he has great prospects and someday I will suddenly become a millionaire. I look forward to it. Of course, the chances are the breakfasts, especially when Bitcoin has fallen so badly, but this will not always be the case. I will be watching your coin and project, it will be very interesting. I hope there will someday be a listing on the Binance and other major exchanges around the world. Roll Eyes
Pavelnew
Newbie
*
Offline Offline

Activity: 7
Merit: 0


View Profile
January 28, 2019, 06:51:16 PM
 #17

Only now I read the comments that were left earlier, and realized that I was not mistaken in praising the project. Fine!
ASTAP
Newbie
*
Offline Offline

Activity: 25
Merit: 0


View Profile
January 29, 2019, 02:08:24 AM
 #18

what price do you expect to enter the market?

So far, before listing and right after we plan to emit rather small volume of tokens this can help us to establish attractive pricing for it.
Later on holders are to decide the strategy by voting.
To get started and work direction of the most correct and attractive
ASTAP
Newbie
*
Offline Offline

Activity: 25
Merit: 0


View Profile
January 29, 2019, 02:12:32 AM
 #19

Holder driven market is a very interesting concept...  Shocked

Any estimates on an ICO / listing timeline?

There is no ICO actually but for those who want to buy before listing pls PM.
Listing is schduled for 1st decade of February.

Now many are starting without ICO. This direction is very popular and has more confidence. usually such projects rely on their own funding.
Future owners of assets do not risk.
ASTAP
Newbie
*
Offline Offline

Activity: 25
Merit: 0


View Profile
January 29, 2019, 02:18:27 AM
Last edit: January 29, 2019, 03:09:52 AM by ASTAP
 #20

Amazing idea!
Managing the development of the project from the coin holders is incredible!
Now, finally, we will be able to determine for ourselves how we see development.
No other project on the market has previously offered such creative freedom. Developers - just great! Coin is waiting for a huge, resounding success!
Good luck, Team !
In fact, there are already such projects. And they are successfully developing. Unhurried, but stable. These are projects that are aimed at the real economy.
T.E. their product can be used by any resident of the land and in many directions. From buying beer to traveling. All their expenses paid by asset
Pages: [1] 2 3 4 5 6 7 8 9 »  All
  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!