Bitcoin Forum

Alternate cryptocurrencies => Tokens (Altcoins) => Topic started by: YVMat on January 23, 2019, 06:52:38 AM



Title: [ANN] Your Vote Matters (YVM) - Token with strategy driven by holders
Post by: YVMat on January 23, 2019, 06:52:38 AM
https://i.imgur.com/KN2q9Qx.png (https://yourvotematters.online)


https://i.imgur.com/wZs7AyR.jpg (https://yourvotematters.online/index.php?content=home)      https://i.imgur.com/JDCpNBt.jpg (https://yourvotematters.online/index.php?content=wallet)

https://i.imgur.com/JqE1d2y.jpg (https://www.livecoin.net/trade/index?currencyPair=YVM%2FBTC)      https://i.imgur.com/x8Ymi3E.jpg (https://twitter.com/YVMToken)

https://i.imgur.com/LMoMjiE.jpg (https://etherscan.io/address/0x807a8889e84cc9a2b3271c45e886b0a4469b64fc)      https://i.imgur.com/K4cjZAe.jpg (https://www.yourvotematters.online/phpBB3/)

https://i.imgur.com/T64H7Do.jpg (https://www.coingecko.com/en/coins/yourvotematters?utm_content=yourvotematters&utm_medium=search_coin&utm_source=coingecko)      https://i.imgur.com/d9RAXKu.jpg (https://discord.gg/JxJYdve)


SPECIFICATION

name:     YourVoteMatters
symbols:   YVM
contract creator: https://etherscan.io/address/0x8548234bd2f8033b910c8313b9d314b6a453c1c9 (https://etherscan.io/address/0x8548234bd2f8033b910c8313b9d314b6a453c1c9)
contract: https://etherscan.io/address/0x807a8889e84cc9a2b3271c45e886b0a4469b64fc (https://etherscan.io/address/0x807a8889e84cc9a2b3271c45e886b0a4469b64fc)
code: 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/ (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!


Title: Re: [ANN] Your Vote Matters (YVM) - Token with strategy driven by holders
Post by: AAF on January 23, 2019, 06:56:13 AM
what price do you expect to enter the market?


Title: Re: [ANN] Your Vote Matters (YVM) - Token with strategy driven by holders
Post by: YVMat on January 23, 2019, 07:18:33 AM
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.


Title: Re: [ANN] Your Vote Matters (YVM) - Token with strategy driven by holders
Post by: Xair on January 24, 2019, 02:21:17 PM
Holder driven market is a very interesting concept...  :o

Any estimates on an ICO / listing timeline?


Title: Re: [ANN] Your Vote Matters (YVM) - Token with strategy driven by holders
Post by: YVMat on January 25, 2019, 05:48:30 AM
Holder driven market is a very interesting concept...  :o

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.


Title: Re: [ANN] Your Vote Matters (YVM) - Token with strategy driven by holders
Post by: alexyenov on January 28, 2019, 10:14:41 AM
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 !


Title: Re: [ANN] Your Vote Matters (YVM) - Token with strategy driven by holders
Post by: Dr.Sponge on January 28, 2019, 10:20:36 AM
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?


Title: Re: [ANN] Your Vote Matters (YVM) - Token with strategy driven by holders
Post by: YVMat on January 28, 2019, 10:20:49 AM
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!


Title: Re: [ANN] Your Vote Matters (YVM) - Token with strategy driven by holders
Post by: YVMat on January 28, 2019, 10:29:37 AM
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.


Title: Re: [ANN] Your Vote Matters (YVM) - Token with strategy driven by holders
Post by: mrbanjo on January 28, 2019, 10:33:49 AM
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.


Title: Re: [ANN] Your Vote Matters (YVM) - Token with strategy driven by holders
Post by: YVMat on January 28, 2019, 11:00:52 AM
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.. ;) 


Title: Re: [ANN] Your Vote Matters (YVM) - Token with strategy driven by holders
Post by: laks777 on January 28, 2019, 11:57:13 AM
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


Title: Re: [ANN] Your Vote Matters (YVM) - Token with strategy driven by holders
Post by: YVMat on January 28, 2019, 02:20:45 PM
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  ;)


Title: Re: [ANN] Your Vote Matters (YVM) - Token with strategy driven by holders
Post by: laks777 on January 28, 2019, 04:49:27 PM
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!


Title: Re: [ANN] Your Vote Matters (YVM) - Token with strategy driven by holders
Post by: YVMat on January 28, 2019, 05:51:45 PM
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! :)


Title: Re: [ANN] Your Vote Matters (YVM) - Token with strategy driven by holders
Post by: Pavelnew on January 28, 2019, 06:30:55 PM
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. ::)


Title: Re: [ANN] Your Vote Matters (YVM) - Token with strategy driven by holders
Post by: Pavelnew on January 28, 2019, 06:51:16 PM
Only now I read the comments that were left earlier, and realized that I was not mistaken in praising the project. Fine!


Title: Re: [ANN] Your Vote Matters (YVM) - Token with strategy driven by holders
Post by: ASTAP on January 29, 2019, 02:08:24 AM
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


Title: Re: [ANN] Your Vote Matters (YVM) - Token with strategy driven by holders
Post by: ASTAP on January 29, 2019, 02:12:32 AM
Holder driven market is a very interesting concept...  :o

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.


Title: Re: [ANN] Your Vote Matters (YVM) - Token with strategy driven by holders
Post by: ASTAP on January 29, 2019, 02:18:27 AM
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


Title: Re: [ANN] Your Vote Matters (YVM) - Token with strategy driven by holders
Post by: ASTAP on January 29, 2019, 02:28:32 AM
from which date you plan to open trading on Livecoin


Title: Re: [ANN] Your Vote Matters (YVM) - Token with strategy driven by holders
Post by: ASTAP on January 29, 2019, 02:59:56 AM
I can now buy your tokken on the exchange? Or how it can now be purchased? On Livecoin all by 0


Title: Re: [ANN] Your Vote Matters (YVM) - Token with strategy driven by holders
Post by: ASTAP on January 29, 2019, 05:02:20 AM
Today, the Proof-of-Stake (PoS) algorithm is very popular. Ethereum, Casper, Zilbercoin in the ZilberPay ecosystem and many other projects and coins are based on it. Many coins and projects have a growing interest in PoS protocols. The Proof-of-Work (PoW) algorithm outdated and not relevant:
        Proposal 1) Consider the possibility of implementing the Proof-of-Stake (PoS) algorithm in your project to the developers and programmers of YVM
* Careful consideration and analysis of the mistakes of other projects is especially important when developing a protocol capable of becoming the basis of the project of the YVM and the global economy, on which millions of people and possibly enterprises will rely in the future.
         Proposal 2) To analyze and monitor security errors that were made by other projects. The project YVM should be protected and safe
* The YVM development team should handle the YVM SOFTWARE (SOFTWARE) as carefully as the software of a nuclear reactor :). In the technical literature, this class of software is called critical systems. There are three types of such systems: critical for security, for the task and for the life of the project. The project YVM should correspond to all three types *.
If suddenly there are more proposals for voting and discussion I will write.


Title: Re: [ANN] Your Vote Matters (YVM) - Token with strategy driven by holders
Post by: Pavelnew on January 29, 2019, 07:55:05 AM
Holder driven market is a very interesting concept...  :o

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.

And it attracted me too.


Title: Re: [ANN] Your Vote Matters (YVM) - Token with strategy driven by holders
Post by: Saydia on January 29, 2019, 09:43:58 AM
why don't you have a website? any less serious project has a site.
and order yourself a normal logo. Everything looks very cheap for now.


Title: Re: [ANN] Your Vote Matters (YVM) - Token with strategy driven by holders
Post by: YVMat on January 29, 2019, 09:56:16 AM
Listing of the Your Vote Matters token (YVM) will happen this week. Get prepared, guys!
We'll keep you informed!


Title: Re: [ANN] Your Vote Matters (YVM) - Token with strategy driven by holders
Post by: TechComputer on January 29, 2019, 09:58:00 AM
Listing of the Your Vote Matters token (YVM) will happen this week. Get prepared, guys!
We'll keep you informed!
Wonder what exchange the YVM tokens can get listed? I wish that they are listing it on the great exchange like binance and kucoin


Title: Re: [ANN] Your Vote Matters (YVM) - Token with strategy driven by holders
Post by: YVMat on January 29, 2019, 10:02:13 AM
why don't you have a website? any less serious project has a site.
and order yourself a normal logo. Everything looks very cheap for now.

Not all that glitters is gold!
and multiple crypto projects with great looking websites and other stuff just failed.
Most of the questions we can discuss here openly or via PM.
Later as long as community of holders grow they can suggest and decide what to do and how.

Anyway....website is in progress of development. Will follow later a bit.


Title: Re: [ANN] Your Vote Matters (YVM) - Token with strategy driven by holders
Post by: YVMat on January 29, 2019, 10:23:32 AM
I can now buy your tokken on the exchange? Or how it can now be purchased? On Livecoin all by 0

YVM is going through technical verifiction now on https://www.livecoin.net/trade/index?currencyPair=YVM%2FBTC

Should everything is ok the wallet will be opened for trading by end of this week.


Title: Re: [ANN] Your Vote Matters (YVM) - Token with strategy driven by holders
Post by: YVMat on January 29, 2019, 11:41:56 AM
I can now buy your tokken on the exchange? Or how it can now be purchased? On Livecoin all by 0

YVM has been listed on Livecoin but in technical verification mode now..by end of week trading should start.
Alternatively anyone can PM us to buy token before opening trading on exchange.
Price is 0.002btc. This is the price trading will start with on Livecoin.


Title: Re: [ANN] Your Vote Matters (YVM) - Token with strategy driven by holders
Post by: ASTAP on January 29, 2019, 12:42:43 PM
I can now buy your tokken on the exchange? Or how it can now be purchased? On Livecoin all by 0

YVM has been listed on Livecoin but in technical verification mode now..by end of week trading should start.
Alternatively anyone can PM us to buy token before opening trading on exchange.
Price is 0.002btc. This is the price trading will start with on Livecoin.
what the price of tokken was determined from


Title: Re: [ANN] Your Vote Matters (YVM) - Token with strategy driven by holders
Post by: YVMat on January 29, 2019, 01:53:04 PM
I can now buy your tokken on the exchange? Or how it can now be purchased? On Livecoin all by 0

YVM has been listed on Livecoin but in technical verification mode now..by end of week trading should start.
Alternatively anyone can PM us to buy token before opening trading on exchange.
Price is 0.002btc. This is the price trading will start with on Livecoin.
what the price of tokken was determined from

The background for the price is very low total supply.
Price will grow after trading start.


Title: Re: [ANN] Your Vote Matters (YVM) - Token with strategy driven by holders
Post by: YVMat on January 30, 2019, 07:16:40 AM
YVM token trading has been opened at Livecoin.net
Welcome to trade!
https://www.livecoin.net/trade/index?currencyPair=YVM%2FBTC


Title: Re: [ANN] Your Vote Matters (YVM) - Token with strategy driven by holders
Post by: Saydia on January 30, 2019, 08:16:23 AM
why don't you have a website? any less serious project has a site.
and order yourself a normal logo. Everything looks very cheap for now.

Not all that glitters is gold!
and multiple crypto projects with great looking websites and other stuff just failed.
Most of the questions we can discuss here openly or via PM.
Later as long as community of holders grow they can suggest and decide what to do and how.

Anyway....website is in progress of development. Will follow later a bit.

fine, we will wait. and we hope that this will be a functional site, otherwise how people will use your services.


Title: Re: [ANN] Your Vote Matters (YVM) - Token with strategy driven by holders
Post by: Saydia on January 30, 2019, 08:21:15 AM
I found you a website!  ;D ;D ;D ;D ;D ;D ;D
https://www.yourvotematters.co.uk/


Title: Re: [ANN] Your Vote Matters (YVM) - Token with strategy driven by holders
Post by: YVMat on January 30, 2019, 08:58:36 AM
I found you a website!  ;D ;D ;D ;D ;D ;D ;D
https://www.yourvotematters.co.uk/

ROFL....nice, nice.
Need to take it over  ;D ;D ;D


Title: Re: [ANN] Your Vote Matters (YVM) - Token with strategy driven by holders
Post by: YVMat on January 30, 2019, 09:11:31 AM
why don't you have a website? any less serious project has a site.
and order yourself a normal logo. Everything looks very cheap for now.

Not all that glitters is gold!
and multiple crypto projects with great looking websites and other stuff just failed.
Most of the questions we can discuss here openly or via PM.
Later as long as community of holders grow they can suggest and decide what to do and how.

Anyway....website is in progress of development. Will follow later a bit.

fine, we will wait. and we hope that this will be a functional site, otherwise how people will use your services.

Exactly, it has to be functional.


Title: Re: [ANN] Your Vote Matters (YVM) - Token with strategy driven by holders
Post by: AAF on January 31, 2019, 08:56:13 AM
Hey guys! And when the vote itself will work? ::) ::) ::)


Title: Re: [ANN] Your Vote Matters (YVM) - Token with strategy driven by holders
Post by: YVMat on January 31, 2019, 09:10:53 AM
Hey guys! And when the vote itself will work? ::) ::) ::)

Well....we have just deployed the website which is subject to constant improvements.
Here is voting option implemented along with wallet and total description.

https://yourvotematters.online


Title: Re: [ANN] Your Vote Matters (YVM) - Token with strategy driven by holders
Post by: AAF on January 31, 2019, 09:29:53 AM
Hey guys! And when the vote itself will work? ::) ::) ::)

Well....we have just deployed the website which is subject to constant improvements.
Here is voting option implemented along with wallet and total description.

https://yourvotematters.online

Oh interesting! I will study. Do you have any instructions?


Title: Re: [ANN] Your Vote Matters (YVM) - Token with strategy driven by holders
Post by: YVMat on January 31, 2019, 09:39:09 AM
Hey guys! And when the vote itself will work? ::) ::) ::)

Well....we have just deployed the website which is subject to constant improvements.
Here is voting option implemented along with wallet and total description.

https://yourvotematters.online

Oh interesting! I will study. Do you have any instructions?

The Guide will be published pretty soon. Editing now.


Title: Re: [ANN] Your Vote Matters (YVM) - Token with strategy driven by holders
Post by: YVMat on January 31, 2019, 09:59:27 AM
YVM token Withdrawal on Livecoin is active now!

Now holders have ability to suggest topics for voting and vote on website
https://yourvotematters.online


Title: Re: [ANN] Your Vote Matters (YVM) - Token with strategy driven by holders
Post by: krevetko4k0 on January 31, 2019, 10:04:42 AM
YVM token Withdrawal on Livecoin is active now!

Now holders have ability to suggest topics for voting and vote on website
https://yourvotematters.online

at last! Lets make some noise! )


Title: Re: [ANN] Your Vote Matters (YVM) - Token with strategy driven by holders
Post by: YVMat on January 31, 2019, 05:14:36 PM
Some dick just opened funny voting. Let's make it more serious.
And don't forget you spend at least fee for ETH transation...
https://yourvotematters.online


Title: Re: [ANN] Your Vote Matters (YVM) - Token with strategy driven by holders
Post by: Mihawk on January 31, 2019, 11:07:29 PM
Some dick just opened funny voting. Let's make it more serious.
And don't forget you spend at least fee for ETH transation...
yourvotematters.online
The lack of seriousness is everywhere! It's a young kidding ;D, but I'll be looking at a more serious situation! How many YVM's in circulating at the moment and when does CoinMarketCap?


Title: Re: [ANN] Your Vote Matters (YVM) - Token with strategy driven by holders
Post by: YVMat on February 01, 2019, 06:11:19 AM
Some dick just opened funny voting. Let's make it more serious.
And don't forget you spend at least fee for ETH transation...
yourvotematters.online
The lack of seriousness is everywhere! It's a young kidding ;D, but I'll be looking at a more serious situation! How many YVM's in circulating at the moment and when does CoinMarketCap?

YVM10K at the moment.
We have just launched the projet and need time for development. Currently only one exhcange where the token is listed. For CMC at least 2 exchanges required.
Probably we'll start with Bitgur and later CMC


Title: Re: [ANN] Your Vote Matters (YVM) - Token with strategy driven by holders
Post by: runrrunr on February 01, 2019, 06:20:06 PM
In reading through the introduction to this project it occurs to me that there is nothing, thus far, technically that is going to set it apart from others. But what does set it apart is the core idea of being driven by those who possess the asset—that shareholders make recommendations/suggestions and have influence based on their level of investment. This is how, I believe, the project will attract investors, involvement, and attention (decentralized ownership).

In light of this, I make a couple suggestions:

1. You need a social media presence. Twitter should be your first step. Telegram your second. There should be a dedicated social media individual. The community could agree on an amount to fund someone willing to take on the task (a small amount of YVM weekly/monthly as a thank you and direct access to dev team i think would be good enough incentives assuming the person was doing a good job).

2. You should offer a few select individuals with large influence in the crypto world a small amount of YVM (enough to be able to be involved, but not to have any sway over voting unless they begin putting their own money into the project). Do not trade YVM for these people’s public dissemination of info on YVM, merely offer them the opportunity to be involved for free and allow them to spread info about it if they see value in the project and community. If this project is going to succeed it will do so because the community and minds involved make it good—in many ways this is a crowdsourced project.

3. Offer incentives for the best ideas (those voted into implementation)—not necessarily YVM, but at least recognition to the community.

4. Run contests.

If all this sounds like giving things away, that’s because it is. To acquire attention you need to have something completely novel or something you are giving away or a place people want to be—this is how you build momentum. Once you have momentum you can generally dispense with all the giving away. The long term hope is that you are creating a space people want to be because they will have a measure of control over what they are invested in (the novelty part), but for both these things you need eyes because the crypto world is so busy and everyone is constantly vying for everyones attention.

That’s what I see. I hope it’s helpful. I’m interested to see where this project will go, especially with such a low circulating supply.

Aloha ‘oe,
runrrunr


Title: Re: [ANN] Your Vote Matters (YVM) - Token with strategy driven by holders
Post by: laks777 on February 01, 2019, 06:32:01 PM
YVM token Withdrawal on Livecoin is active now!

Now holders have ability to suggest topics for voting and vote on website
https://yourvotematters.online

Great news, earned 50% of your deposit in 1 day already on your coin!


Title: Re: [ANN] Your Vote Matters (YVM) - Token with strategy driven by holders
Post by: Mihawk on February 01, 2019, 06:32:30 PM
YVM10K at the moment.
We have just launched the projet and need time for development. Currently only one exhcange where the token is listed. For CMC at least 2 exchanges required.
Probably we'll start with Bitgur and later CMC
Only 10k? Livecoin's last day volume was 43k! Does this mean that these tokens are going through different hands and if the price has not changed, are these current levels purposeful? I think it's understandable because you just went to the market and are consolidating, right?


Title: Re: [ANN] Your Vote Matters (YVM) - Token with strategy driven by holders
Post by: YVMat on February 01, 2019, 07:04:18 PM
YVM10K at the moment.
We have just launched the projet and need time for development. Currently only one exhcange where the token is listed. For CMC at least 2 exchanges required.
Probably we'll start with Bitgur and later CMC
Only 10k? Livecoin's last day volume was 43k! Does this mean that these tokens are going through different hands and if the price has not changed, are these current levels purposeful? I think it's understandable because you just went to the market and are consolidating, right?

Trading rotation (volume) makes the difference. Anyway 10K is 10K.
You can check via https://etherscan.io

some tokens used in voting. Nevermind how stupid the first one was  :-X


Title: Re: [ANN] Your Vote Matters (YVM) - Token with strategy driven by holders
Post by: YVMat on February 01, 2019, 07:06:37 PM
YVM token Withdrawal on Livecoin is active now!

Now holders have ability to suggest topics for voting and vote on website
https://yourvotematters.online

Great news, earned 50% of your deposit in 1 day already on your coin!

 :o You must be a Master in Trading.....good for you


Title: Re: [ANN] Your Vote Matters (YVM) - Token with strategy driven by holders
Post by: YVMat on February 01, 2019, 07:09:58 PM
In reading through the introduction to this project it occurs to me that there is nothing, thus far, technically that is going to set it apart from others. But what does set it apart is the core idea of being driven by those who possess the asset—that shareholders make recommendations/suggestions and have influence based on their level of investment. This is how, I believe, the project will attract investors, involvement, and attention (decentralized ownership).

In light of this, I make a couple suggestions:

1. You need a social media presence. Twitter should be your first step. Telegram your second. There should be a dedicated social media individual. The community could agree on an amount to fund someone willing to take on the task (a small amount of YVM weekly/monthly as a thank you and direct access to dev team i think would be good enough incentives assuming the person was doing a good job).

2. You should offer a few select individuals with large influence in the crypto world a small amount of YVM (enough to be able to be involved, but not to have any sway over voting unless they begin putting their own money into the project). Do not trade YVM for these people’s public dissemination of info on YVM, merely offer them the opportunity to be involved for free and allow them to spread info about it if they see value in the project and community. If this project is going to succeed it will do so because the community and minds involved make it good—in many ways this is a crowdsourced project.

3. Offer incentives for the best ideas (those voted into implementation)—not necessarily YVM, but at least recognition to the community.

4. Run contests.

If all this sounds like giving things away, that’s because it is. To acquire attention you need to have something completely novel or something you are giving away or a place people want to be—this is how you build momentum. Once you have momentum you can generally dispense with all the giving away. The long term hope is that you are creating a space people want to be because they will have a measure of control over what they are invested in (the novelty part), but for both these things you need eyes because the crypto world is so busy and everyone is constantly vying for everyones attention.

That’s what I see. I hope it’s helpful. I’m interested to see where this project will go, especially with such a low circulating supply.

Aloha ‘oe,
runrrunr


Masterpiece!!! anyway  ;D You made our day!!! we'll definitely study it precisely....thanks, mate!


Title: Re: [ANN] Your Vote Matters (YVM) - Token with strategy driven by holders
Post by: runrrunr on February 01, 2019, 08:10:50 PM
Glad to help. 🤙


Title: Re: [ANN] Your Vote Matters (YVM) - Token with strategy driven by holders
Post by: Mihawk on February 05, 2019, 10:36:46 PM
24Volume: 213,804 YVM whose supply is 10k! The current cap does not exceed USD 7000! This project is definitely weird. ;D


Title: Re: [ANN] Your Vote Matters (YVM) - Token with strategy driven by holders
Post by: YVMat on February 06, 2019, 06:50:17 AM
24Volume: 213,804 YVM whose supply is 10k! The current cap does not exceed USD 7000! This project is definitely weird. ;D

...and we keep on taking all possible and impossible efforts to surprise you and others more and more  ;)


Title: Re: [ANN] Your Vote Matters (YVM) - Token with strategy driven by holders
Post by: YVMat on February 06, 2019, 07:56:25 AM
Hello everyone!

An extraordinary situation was revealed where there was doubling of tokens at the end of voting, that led to a phantom increase in TotalSupply value.
The algorithm has been corrected, the contract on the exchange will be automatically up-dated on Feb 8th.
Users of tokens will not notice the difference.
If you moved tokens to a cold wallet, please inform via forum PM for further refund.

Here is the official link to Livecoin news: https://www.livecoin.net/news/view/68?lang=en

Sorry for inconvenience,
YVM Devs teams


Title: Re: [ANN] Your Vote Matters (YVM) - Token with strategy driven by holders
Post by: YVMat on February 07, 2019, 09:37:58 AM
Hi there, mates,

Twitter account established. Pls, follow to read latest updates!

https://twitter.com/YVM77932233


Title: Re: [ANN] Your Vote Matters (YVM) - Token with strategy driven by holders
Post by: YVMat on February 07, 2019, 11:44:00 AM
Special Forum for YVM detailed discussion has been established at
https://www.yourvotematters.online/phpBB3/

Now YVM holders and those who are interested can discuss the future development of token right before suggeting and voting


Title: Re: [ANN] Your Vote Matters (YVM) - Token with strategy driven by holders
Post by: Mihawk on February 07, 2019, 07:39:19 PM
... An extraordinary situation was revealed where there was doubling of tokens at the end of voting, that led to a phantom increase in TotalSupply value.
The algorithm has been corrected, the contract on the exchange will be automatically up-dated on Feb 8th.
Users of tokens will not notice the difference.
If you moved tokens to a cold wallet, please inform via forum PM for further refund ...
Has this phantom increase in supply materialized and dumped those tokens into livecoin? The swap will happen at what time of Moscow?


Title: Re: [ANN] Your Vote Matters (YVM) - Token with strategy driven by holders
Post by: YVMat on February 08, 2019, 06:07:54 AM
... An extraordinary situation was revealed where there was doubling of tokens at the end of voting, that led to a phantom increase in TotalSupply value.
The algorithm has been corrected, the contract on the exchange will be automatically up-dated on Feb 8th.
Users of tokens will not notice the difference.
If you moved tokens to a cold wallet, please inform via forum PM for further refund ...
Has this phantom increase in supply materialized and dumped those tokens into livecoin? The swap will happen at what time of Moscow?

No, this phantom increase situation may happen only under special circumstances and has no affect to the market. We just revealed the potential fault and fixed it. As a result negotiated with Livecoin today 1:1 ratio swap of token contract will happen. What time is up to the exchange.
Most of holders will not even notice the change.

For those customers who withdrawn token out of exchange we will refund 1:1 via PM request here.


Title: Re: [ANN] Your Vote Matters (YVM) - Token with strategy driven by holders
Post by: YVMat on February 08, 2019, 11:44:06 AM
YVM token swap is almost complete by livecoin exchange.  Pretty soon Deposit/Withdrawal will be re-opened. We will keep you up-dated.

P.S. Those who has the token on external wallet PM us for refund, if we miss someone ocasionnaly.


Title: Re: [ANN] Your Vote Matters (YVM) - Token with strategy driven by holders
Post by: Mihawk on February 09, 2019, 01:11:19 AM
No, this phantom increase situation may happen only under special circumstances and has no affect to the market. We just revealed the potential fault and fixed it. As a result negotiated with Livecoin today 1:1 ratio swap of token contract will happen. What time is up to the exchange.
Most of holders will not even notice the change.
For those customers who withdrawn token out of exchange we will refund 1:1 via PM request here.
So this 10x price drop has nothing to do with this swap? Either way, it was successful, right? Because I can see the possibility of deposits.


Title: Re: [ANN] Your Vote Matters (YVM) - Token with strategy driven by holders
Post by: YVMat on February 09, 2019, 09:52:13 AM
No, this phantom increase situation may happen only under special circumstances and has no affect to the market. We just revealed the potential fault and fixed it. As a result negotiated with Livecoin today 1:1 ratio swap of token contract will happen. What time is up to the exchange.
Most of holders will not even notice the change.
For those customers who withdrawn token out of exchange we will refund 1:1 via PM request here.
So this 10x price drop has nothing to do with this swap? Either way, it was successful, right? Because I can see the possibility of deposits.


Exactly, price difference has nothing to do with swap. By the way it was complete yesterday without even trading stop.
Now actively negotiate with potential investors to help with price improvement.


Title: Re: [ANN] Your Vote Matters (YVM) - Token with strategy driven by holders
Post by: YVMat on February 11, 2019, 06:38:26 AM
About 40% of circulation supply of YVM was bought back this weekend!😋


Title: Re: [ANN] Your Vote Matters (YVM) - Token with strategy driven by holders
Post by: AAF on February 11, 2019, 07:19:40 AM
Hello! Would like to put up a Suggestion: improve mobile website reflection for YVM
Current status: not comfortable to use on smartphones, have to scroll all the directions shold you want to read the info. Subsequently, people prefer wait till PC available to study any info from website and can just forgot to look at it
What to do: make the website dispay user friendly on smartphones. Make it easy to download. Emphasize most important things.


Title: Re: [ANN] Your Vote Matters (YVM) - Token with strategy driven by holders
Post by: YVMat on February 11, 2019, 07:49:31 AM
Hello! Would like to put up a Suggestion: improve mobile website reflection for YVM
Current status: not comfortable to use on smartphones, have to scroll all the directions shold you want to read the info. Subsequently, people prefer wait till PC available to study any info from website and can just forgot to look at it
What to do: make the website dispay user friendly on smartphones. Make it easy to download. Emphasize most important things.

Good!
Now we have a suggestion. We have copied it in here https://www.yourvotematters.online/phpBB3/viewtopic.php?f=3&t=7#p18
for detailed discussion and Voting start if you want.


Title: Re: [ANN] Your Vote Matters (YVM) - Token with strategy driven by holders
Post by: AAF on February 11, 2019, 10:10:20 AM
Hello! Would like to put up a Suggestion: improve mobile website reflection for YVM
Current status: not comfortable to use on smartphones, have to scroll all the directions shold you want to read the info. Subsequently, people prefer wait till PC available to study any info from website and can just forgot to look at it
What to do: make the website dispay user friendly on smartphones. Make it easy to download. Emphasize most important things.

Good!
Now we have a suggestion. We have copied it in here https://www.yourvotematters.online/phpBB3/viewtopic.php?f=3&t=7#p18
for detailed discussion and Voting start if you want.

ok mate! I put a suggestion for voting ;D


Title: Re: [ANN] Your Vote Matters (YVM) - Token with strategy driven by holders
Post by: YVMat on February 11, 2019, 10:19:25 AM
Hello! Would like to put up a Suggestion: improve mobile website reflection for YVM
Current status: not comfortable to use on smartphones, have to scroll all the directions shold you want to read the info. Subsequently, people prefer wait till PC available to study any info from website and can just forgot to look at it
What to do: make the website dispay user friendly on smartphones. Make it easy to download. Emphasize most important things.

Good!
Now we have a suggestion. We have copied it in here https://www.yourvotematters.online/phpBB3/viewtopic.php?f=3&t=7#p18
for detailed discussion and Voting start if you want.

ok mate! I put a suggestion for voting ;D

First #YVM improvement Suggestion "YVM website mobile version modification" has been put on #voting by a holder!
http://yourvotematters.online/index.php?content=wallet …
Join the voting to define token future development!


Title: Re: [ANN] Your Vote Matters (YVM) - Token with strategy driven by holders
Post by: YVMat on February 12, 2019, 07:47:50 AM
Dear clients, new markets #YVM/#BTC, YVM/#ETH are available for trading https://www.livecoin.net/en/news/view/72

https://twitter.com/livecoin_net/status/1094995593611628545


Title: Re: [ANN] Your Vote Matters (YVM) - Token with strategy driven by holders
Post by: YVMat on February 12, 2019, 09:16:53 AM
We have added 5K more YVM tokens to total supply as specified in project development for devs purposes.
https://etherscan.io/token/0x807a8889e84cc9a2b3271c45e886b0a4469b64fc

We remind that according to specs devs can issue up to YVM100K - all above only by holders decision


Title: Re: [ANN] Your Vote Matters (YVM) - Token with strategy driven by holders
Post by: YVMat on February 12, 2019, 03:11:01 PM
Dear clients, the developers of YVM (Your Vote Matters) are inviting You to participate in a contest with valuable awards.
Start date: February 13, 2019
End date: February 22, 2019

 
Livecoin Exchange top 10 traders of YVM asset will get prizes, both buy and sell deals trading volumes will play into the calculation.
The minimum turnover required for winning a prize - 0.05 BTC
The results counting starts on February 13 at 10:00 UTC, finishes on February 22 at 10:00 UTC.
The winners will be awarded YVM coins credited to their accounts at Livecoin Exchange.
The number of winning places - 10.

List of award amount per place is given below:

1 place 500 YVM
2 place 200 YVM
3 place 100 YVM
4 place 80 YVM
5 place 60 YVM
6 place 40 YVM
7 place 20 YVM
8 place 10 YVM
9 place 8 YVM
10 place 6 YVM

https://www.livecoin.net/news/view/73?lang=en


Title: Re: [ANN] Your Vote Matters (YVM) - Token with strategy driven by holders
Post by: runrrunr on February 13, 2019, 08:18:18 PM
I see you guys are running a contest and established a twitter presence. Awesome work!

If i can make two suggestions:

1. Get a better twitter @ handle. The one you have looks kinda scammy. And since you’re not a scam you should put your best image forward.
2. Establish a telegram.

These are both relatively simple, but make a big difference in drawing in investors/holders.

I looked it up and “yvmcoin” is available across all platforms and for a website (as long as nobody reads this and donks it up by registering it before you can). It sounds reputable, is short and memorable, and clearly communicates who you are.

Great to see things progressing for the project. All the best for continued volume, growth, and success.

Aloha ‘oe,
runrrunr


Title: Re: [ANN] Your Vote Matters (YVM) - Token with strategy driven by holders
Post by: YVMat on February 14, 2019, 06:53:40 AM
I see you guys are running a contest and established a twitter presence. Awesome work!

If i can make two suggestions:

1. Get a better twitter @ handle. The one you have looks kinda scammy. And since you’re not a scam you should put your best image forward.
2. Establish a telegram.

These are both relatively simple, but make a big difference in drawing in investors/holders.

I looked it up and “yvmcoin” is available across all platforms and for a website (as long as nobody reads this and donks it up by registering it before you can). It sounds reputable, is short and memorable, and clearly communicates who you are.

Great to see things progressing for the project. All the best for continued volume, growth, and success.

Aloha ‘oe,
runrrunr

Thank you, mate for good suggestions for improvement!
1. We have changed twitter for "YVMToken" https://twitter.com/YVMToken
2. As to telegram...not yet sure. What about discord? But you can put this suggestion to voting here https://yourvotematters.online
this is one already put for vote. You can add on. Its free. Only transaction fee.


Title: Re: [ANN] Your Vote Matters (YVM) - Token with strategy driven by holders
Post by: Mihawk on February 14, 2019, 06:01:17 PM
Thank you, mate for good suggestions for improvement!
1. We have changed twitter for @YVMToken
2. As to telegram...not yet sure. What about discord? But you can put this suggestion to voting in yourvotematters.online
this is one already put for vote. You can add on. Its free. Only transaction fee.
I think telegram is more disorganized than discord! So anyone can create topics? Interesting. Changing the subject, there is now 15k of supply, right? Are you and your team the keepers? If so, the current price is justifiable. How will you dilute this amount of tokens on the market? And how will you convince investors? I'm finding this autonomy of voting and participation interesting, but it's not comfortable knowing that you all have tokens basically.


Title: Re: [ANN] Your Vote Matters (YVM) - Token with strategy driven by holders
Post by: klarki on February 15, 2019, 12:05:56 AM
We have added 5K more YVM tokens to total supply as specified in project development for devs purposes.
https://etherscan.io/token/0x807a8889e84cc9a2b3271c45e886b0a4469b64fc

We remind that according to specs devs can issue up to YVM100K - all above only by holders decision

YVM/BTC: https://www.livecoin.net/en/trade/index?currencyPair=YVM%2FBTC
YVM/ETH: https://www.livecoin.net/en/trade/index?currencyPair=YVM%2FETH



Title: Re: [ANN] Your Vote Matters (YVM) - Token with strategy driven by holders
Post by: YVMat on February 15, 2019, 07:40:27 AM
Thank you, mate for good suggestions for improvement!
1. We have changed twitter for @YVMToken
2. As to telegram...not yet sure. What about discord? But you can put this suggestion to voting in yourvotematters.online
this is one already put for vote. You can add on. Its free. Only transaction fee.
I think telegram is more disorganized than discord! So anyone can create topics? Interesting. Changing the subject, there is now 15k of supply, right? Are you and your team the keepers? If so, the current price is justifiable. How will you dilute this amount of tokens on the market? And how will you convince investors? I'm finding this autonomy of voting and participation interesting, but it's not comfortable knowing that you all have tokens basically.

Most of the tokens are already on the market in hands of traders (holders).
Anyone can get in the voting just having eth for transaction fee, but in order to win your point one has to vote with YVM which will return to his wallet after voting is complete.

Devs are not supposed to participate in voting according to rules listed in topic. This is the idea.

You may have noticed how many advice ppl share with devs after get in ownership of a coin.
So we decided to let most active and serious, proved by YVM ownership to direct the development of it.

Again, suggestions in forum are just suggestions. If YVM holders want to direct the development they HAVE TO put a vote in here https://www.yourvotematters.online/index.php?content=wallet

   

 
 


Title: Re: [ANN] Your Vote Matters (YVM) - Token with strategy driven by holders
Post by: YVMat on February 15, 2019, 10:08:47 AM
Due to higher demand we have added 5K more YVM tokens to total supply, as specified in project development for devs purposes.
https://etherscan.io/token/0x807a8889e84cc9a2b3271c45e886b0a4469b64fc

We remind that according to specs devs can issue up to YVM100K - all above only by holders decision


Title: Re: [ANN] Your Vote Matters (YVM) - Token with strategy driven by holders
Post by: Mihawk on February 18, 2019, 01:28:24 AM
Due to higher demand we have added 5K more YVM tokens to total supply, as specified in project development for devs purposes.
We remind that according to specs devs can issue up to YVM100K - all above only by holders decision
Now the supply is 24,955 YVM, right? Is the demand so high? The prices are showing us something else. :D


Title: Re: [ANN] Your Vote Matters (YVM) - Token with strategy driven by holders
Post by: YVMat on February 18, 2019, 07:07:35 AM
Due to higher demand we have added 5K more YVM tokens to total supply, as specified in project development for devs purposes.
We remind that according to specs devs can issue up to YVM100K - all above only by holders decision
Now the supply is 24,955 YVM, right? Is the demand so high? The prices are showing us something else. :D

As we keep on mention every time, devs reserve the right for 100K emission.
All above can be regulated by holders.
Observing the demand we steadily increase the supply within the frames stated.
Price has high volatility to let ppl make profit.


Title: Re: [ANN] Your Vote Matters (YVM) - Token with strategy driven by holders
Post by: Mihawk on February 18, 2019, 06:51:14 PM
As we keep on mention every time, devs reserve the right for 100K emission.
All above can be regulated by holders.
Observing the demand we steadily increase the supply within the frames stated.
Price has high volatility to let ppl make profit.
Right, I see more as an opportunity for accumulation than profit! At some point this will have to appreciate, at least 75k remain to release to the market. 100K will be the limit so it's still considered low supply! When will there be something important to use YVM? Just buying and selling won't add up to anything. ::)


Title: Re: [ANN] Your Vote Matters (YVM) - Token with strategy driven by holders
Post by: Margary on February 18, 2019, 07:12:01 PM
Due to higher demand we have added 5K more YVM tokens to total supply, as specified in project development for devs purposes.
We remind that according to specs devs can issue up to YVM100K - all above only by holders decision
Now the supply is 24,955 YVM, right? Is the demand so high? The prices are showing us something else. :D

it is able to show us the supply and demand on the cryptomarket. this is a very important indicator, which determines the further development of the project and its success among users.


Title: Re: [ANN] Your Vote Matters (YVM) - Token with strategy driven by holders
Post by: YVMat on February 19, 2019, 06:35:49 AM
As we keep on mention every time, devs reserve the right for 100K emission.
All above can be regulated by holders.
Observing the demand we steadily increase the supply within the frames stated.
Price has high volatility to let ppl make profit.
Right, I see more as an opportunity for accumulation than profit! At some point this will have to appreciate, at least 75k remain to release to the market. 100K will be the limit so it's still considered low supply! When will there be something important to use YVM? Just buying and selling won't add up to anything. ::)

Exactly, we are not about just buy/sell, the project itself has been created after gaining experience: Users always suggest how and what to do for Devs.
No Problem, this project is specially designed for Users.
We want to let them direct the future as they see it, by simple majority of votes anyone can win his/her suggestion for development.

As you may notice we steadily follow the advice from Users even written in here...
Established Twitter, Website, communication opportunity via separate forum to discuss any suggestion for vote, Mobile version improvement.

You ask what is the point that add on Value to YVM token apart from just trading - We keep on asking Users to get involved into YVM development via using its primary tool - Voting!!! put it in here and vote https://www.yourvotematters.online/index.php?content=wallet
There is only one vote item about Mobile version.....add on, if you know what and how the development should go on!!!
 


Title: Re: [ANN] Your Vote Matters (YVM) - Token with strategy driven by holders
Post by: YVMat on February 19, 2019, 06:45:29 AM
Voting on YVM website mobile version modification has been complete
https://www.yourvotematters.online/index.php?content=wallet

The version has been ordered. Soon there gonna be a release.

Thank you all! Continue direct the future of token!


Title: Re: [ANN] Your Vote Matters (YVM) - Token with strategy driven by holders
Post by: YVMat on February 20, 2019, 10:16:01 AM
Dear Users of #YVM #Token we remind you of possibility to direct the future development of the token by using
Forum anf Voting in here https://yourvotematters.online




Title: Re: [ANN] Your Vote Matters (YVM) - Token with strategy driven by holders
Post by: YVMat on February 20, 2019, 11:58:20 AM
#YVM token mobile version up-grade has been complete.
The release is scheduled for today.
https://yourvotematters.online


Title: Re: [ANN] Your Vote Matters (YVM) - Token with strategy driven by holders
Post by: Mihawk on February 20, 2019, 05:53:42 PM
I hope 100k is the limit! Again there was a 5k increase in circulating. Why not bring the other 70k? What are you waiting for?



#YVM token mobile version up-grade has been complete.
The release is scheduled for today.
https://yourvotematters.online
Congratulations on the work, already on the site?


Title: Re: [ANN] Your Vote Matters (YVM) - Token with strategy driven by holders
Post by: YVMat on February 20, 2019, 07:54:08 PM
I hope 100k is the limit! Again there was a 5k increase in circulating. Why not bring the other 70k? What are you waiting for?



#YVM token mobile version up-grade has been complete.
The release is scheduled for today.
https://yourvotematters.online
Congratulations on the work, already on the site?

Yes, 100K is the limit for devs. The reason we do it steadily is that there may be a chance to keep total supply even less than 100K...
So, more value, more demand....

and yes, the mobile version of the website has been released today. Yet, we noticed that some users may experience incorrect display of tags on website in different browsers. Working on fixing this. For the moment, we can suggest delete cookies.


Title: Re: [ANN] Your Vote Matters (YVM) - Token with strategy driven by holders
Post by: YVMat on February 21, 2019, 07:12:44 AM
I hope 100k is the limit! Again there was a 5k increase in circulating. Why not bring the other 70k? What are you waiting for?



#YVM token mobile version up-grade has been complete.
The release is scheduled for today.
https://yourvotematters.online
Congratulations on the work, already on the site?

Anyway, you can vote for full 100K emittence to market at once via voting suggestion here https://yourvotematters.online



Title: Re: [ANN] Your Vote Matters (YVM) - Token with strategy driven by holders
Post by: YVMat on February 21, 2019, 07:15:44 AM
Let us remind you that once the VOTING is complete you will get back all the tokens you used for it!


Title: Re: [ANN] Your Vote Matters (YVM) - Token with strategy driven by holders
Post by: YVMat on February 21, 2019, 07:44:27 AM
We remind you that the Contest for YVM will be complete tomorrow. Catch up!


Dear clients, the developers of YVM (Your Vote Matters) are inviting You to participate in a contest with valuable awards.
Start date: February 13, 2019
End date: February 22, 2019


Livecoin Exchange top 10 traders of YVM asset will get prizes, both buy and sell deals trading volumes will play into the calculation.
The minimum turnover required for winning a prize - 0.05 BTC
The results counting starts on February 13 at 10:00 UTC, finishes on February 22 at 10:00 UTC.
The winners will be awarded YVM coins credited to their accounts at Livecoin Exchange.
The number of winning places - 10.

List of award amount per place is given below:

1 place 500 YVM
2 place 200 YVM
3 place 100 YVM
4 place 80 YVM
5 place 60 YVM
6 place 40 YVM
7 place 20 YVM
8 place 10 YVM
9 place 8 YVM
10 place 6 YVM

https://www.livecoin.net/news/view/73?lang=en


Title: Re: [ANN] Your Vote Matters (YVM) - Token with strategy driven by holders
Post by: YVMat on February 22, 2019, 09:10:42 AM
There is new voting suggestion for YVM token development
Voting in progress https://yourvotematters.online/index.php?content=wallet

Welcome to joing the voting!


Title: Re: [ANN] Your Vote Matters (YVM) - Token with strategy driven by holders
Post by: YVMat on February 22, 2019, 05:49:24 PM
Dear customers, YVM (Your Vote Matters) contest completed. 10 winners got YVM awards onto their accounts at Livecoin. Please, find below the winners' hash list below

1c71405e90ded89427d3b71727ef5199 - 500 YVM
d04a35ecd2e07d7fa9325c4b9178f9d2 - 200 YVM
10c54570e7b01ff2781389a2b39ea2a2 - 100 YVM
de176e8a1293144229605c31143f8cc5 - 80 YVM
c07284719d6bc191db5abbd2ae5bffa3 - 60 YVM
a2fd3c7e420220f79565eba4431d1cb7 - 40 YVM
c96b20a4d10cbf6679a30267ae1cdfb8 - 20 YVM
2040c3e2dbd8b76fcba2b177bf02e139 - 10 YVM
9119a094c7bc8c1a6588dd0378f4dfed - 8 YVM
7713d2159c4cece8c37bf99453422419 - 6 YVM

https://www.livecoin.net/news/view/86?lang=en


Title: Re: [ANN] Your Vote Matters (YVM) - Token with strategy driven by holders
Post by: Mihawk on February 22, 2019, 06:11:24 PM
This contest would not go until 22:00 UTC? What happened to such an advance? I didn't use .05 BTC just because there are no supports. So I think 1k sat is possible. ;D I saw that you opened an interesting 'voting'. How would that be the new site?


Title: Re: [ANN] Your Vote Matters (YVM) - Token with strategy driven by holders
Post by: YVMat on February 22, 2019, 07:30:10 PM
This contest would not go until 22:00 UTC? What happened to such an advance? I didn't use .05 BTC just because there are no supports. So I think 1k sat is possible. ;D I saw that you opened an interesting 'voting'. How would that be the new site?

The contest announcement above says: The results counting starts on February 13 at 10:00 UTC, finishes on February 22 at 10:00 UTC.
So there was no "advance"

If the voting is complete with decision "For" then we will re-design it to look more attractive.


Title: Re: [ANN] Your Vote Matters (YVM) - Token with strategy driven by holders
Post by: Mihawk on February 22, 2019, 11:55:59 PM
...
If the voting is complete with decision "For" then we will re-design it to look more attractive.
Well, for me the site looks great and also more attractive in that way? Unfortunately I don't have any great ideas to put a vote on. :-\


Title: Re: [ANN] Your Vote Matters (YVM) - Token with strategy driven by holders
Post by: YVMat on February 23, 2019, 07:22:53 AM
...
If the voting is complete with decision "For" then we will re-design it to look more attractive.
Well, for me the site looks great and also more attractive in that way? Unfortunately I don't have any great ideas to put a vote on. :-\

Well, then may be you would vote "Against" the idea ? 

Pls, remember all YVM tokens used in voting will be re-funded as long as voting is complete.


Title: Re: [ANN] Your Vote Matters (YVM) - Token with strategy driven by holders
Post by: YVMat on February 25, 2019, 07:36:20 AM
WTF???
https://www.euronews.com/2019/02/24/is-it-a-phone-a-tablet-or-both
is that a future of smartphones or separate niche???

You can vote your opinion here https://yourvotematters.online/


Title: Re: [ANN] Your Vote Matters (YVM) - Token with strategy driven by holders
Post by: Guerrix on February 25, 2019, 09:13:41 AM
Really like this new aproach... Keeping an eye on the project.
Good luck.


Title: Re: [ANN] Your Vote Matters (YVM) - Token with strategy driven by holders
Post by: Mihawk on February 25, 2019, 11:57:47 PM
Well, then may be you would vote "Against" the idea ? 

Pls, remember all YVM tokens used in voting will be re-funded as long as voting is complete.
Because I don't see need doesn't mean I'm against it! ;D Also, the vote is over and will you redesign the site? Anyway, for me the site is showing some bugs.


Title: Re: [ANN] Your Vote Matters (YVM) - Token with strategy driven by holders
Post by: Mihawk on February 26, 2019, 08:02:20 AM
Why 80k of supply now? The market has not absorbed 30k and you add 50k more? What are you intending? ::)


Title: Re: [ANN] Your Vote Matters (YVM) - Token with strategy driven by holders
Post by: YVMat on February 26, 2019, 06:00:08 PM
Why 80k of supply now? The market has not absorbed 30k and you add 50k more? What are you intending? ::)

30K already on the market.
We observe current situation and act accordingly.


Title: Re: [ANN] Your Vote Matters (YVM) - Token with strategy driven by holders
Post by: YVMat on February 26, 2019, 06:02:59 PM
Well, then may be you would vote "Against" the idea ? 

Pls, remember all YVM tokens used in voting will be re-funded as long as voting is complete.
Because I don't see need doesn't mean I'm against it! ;D Also, the vote is over and will you redesign the site? Anyway, for me the site is showing some bugs.

Right, the voting has ended. We are going to redesign the website.
There are some bugs in current version. Going to fix all.


Title: Re: [ANN] Your Vote Matters (YVM) - Token with strategy driven by holders
Post by: Mihawk on February 27, 2019, 06:26:27 AM
30K already on the market.
We observe current situation and act accordingly.
Wait! I was just joking questioning the lack of absorption! Is the opportunity over? It's a funny situation! ;D


Right, the voting has ended. We are going to redesign the website.
There are some bugs in current version. Going to fix all.
Very good to hear that. When the site gets ready, communicate to the community! Will CoinGecko or CoinMarketCap add YVM?


Title: Re: [ANN] Your Vote Matters (YVM) - Token with strategy driven by holders
Post by: YVMat on February 27, 2019, 09:01:49 AM
30K already on the market.
We observe current situation and act accordingly.
Wait! I was just joking questioning the lack of absorption! Is the opportunity over? It's a funny situation! ;D


Right, the voting has ended. We are going to redesign the website.
There are some bugs in current version. Going to fix all.
Very good to hear that. When the site gets ready, communicate to the community! Will CoinGecko or CoinMarketCap add YVM?

Actually, CMC accepts request only with 2 exchanges coin listed.
Now it is only on livecoin but we work on more exchanges now.
Anyway, sumbitted request to CoinGecko....thanks for advice!


Title: Re: [ANN] Your Vote Matters (YVM) - Token with strategy driven by holders
Post by: YVMat on February 27, 2019, 02:50:49 PM
YVM is more and more MOST PUMPED! at livecoin

https://pbs.twimg.com/media/D0aw2TJWwAAeM7C.jpg


Title: Re: [ANN] Your Vote Matters (YVM) - Token with strategy driven by holders
Post by: Mihawk on February 27, 2019, 05:28:34 PM
YVM is more and more MOST PUMPED! at livecoin
Suddenly in the last hours there have been many changes in prices, but it appears that 'bears' are preventing any bullish state.

*It's not healthy what happened from yesterday to today rightly shows that there is a centralization of these tokens! The volume makes it clear that it's a group of people who own more than 75k YVM.*


Title: Re: [ANN] Your Vote Matters (YVM) - Token with strategy driven by holders
Post by: YVMat on February 28, 2019, 08:02:56 AM
YVM is more and more MOST PUMPED! at livecoin
Suddenly in the last hours there have been many changes in prices, but it appears that 'bears' are preventing any bullish state.

*It's not healthy what happened from yesterday to today rightly shows that there is a centralization of these tokens! The volume makes it clear that it's a group of people who own more than 75k YVM.*

Well, more than 30K sold out to market, as was mentionned earler. Total supply is 80K. Conclusion is that one "group of people" can't hold more than 75K YVM. Actually this is exchange wallet.

It is because of that amount sold price was changing so much.

BTW, the website is in progress of re-design. Soon there will be a release of new edition.
Anyway, any suggestions for token development are welcome for vote still in here https://www.yourvotematters.online/index.php?content=wallet

NB: tokens will be refunded as soon as a voting complete.


Title: Re: [ANN] Your Vote Matters (YVM) - Token with strategy driven by holders
Post by: Mihawk on February 28, 2019, 08:42:00 AM
I referred to you and these people! But only speculation on my part. Anyway, I have an idea! So, why do not you suggest something very interesting for the community to decide? ;D


Title: Re: [ANN] Your Vote Matters (YVM) - Token with strategy driven by holders
Post by: YVMat on February 28, 2019, 08:53:36 AM
I referred to you and these people! But only speculation on my part. Anyway, I have an idea! So, why do not you suggest something very interesting for the community to decide? ;D


 ;D ;D ;D Great idea! assuming YVM token created for community to suggest and vote.

anyway, we'll get deeply into 'very interesting' idea development as well.  :D


Title: Re: [ANN] Your Vote Matters (YVM) - Token with strategy driven by holders
Post by: YVMat on February 28, 2019, 03:25:20 PM
YVM has been added to CoinGecko list

https://www.coingecko.com/en/coins/yourvotematters?utm_content=yourvotematters&utm_medium=search_coin&utm_source=coingecko


Title: Re: [ANN] Your Vote Matters (YVM) - Token with strategy driven by holders
Post by: Mihawk on March 01, 2019, 05:02:09 AM
YVM has been added to CoinGecko list
Nice movement! Yesterday afternoon I saw this great news! It's interesting to know that with 3 BTC you more than buy all the coins. I also saw your new vote! Why did not you name the new exchange? Do you prefer thriller? ;D


Title: Re: [ANN] Your Vote Matters (YVM) - Token with strategy driven by holders
Post by: YVMat on March 01, 2019, 07:18:23 AM
YVM has been added to CoinGecko list
Nice movement! Yesterday afternoon I saw this great news! It's interesting to know that with 3 BTC you more than buy all the coins. I also saw your new vote! Why did not you name the new exchange? Do you prefer thriller? ;D

It is one of users who put in new suggestion for vote.
Now we will consider new exchanges and evaluate price for listing vs. potential pay-back.
And yes, we like thrillers  ;D


Title: Re: [ANN] Your Vote Matters (YVM) - Token with strategy driven by holders
Post by: Mihawk on March 01, 2019, 07:31:18 AM
I see! ;D Are you willing to pay any fee? The volume that YVM has been providing in recent days, probably good exchanges will accept them without discussion. ::)


Title: Re: [ANN] Your Vote Matters (YVM) - Token with strategy driven by holders
Post by: YVMat on March 01, 2019, 07:50:19 AM
I see! ;D Are you willing to pay any fee? The volume that YVM has been providing in recent days, probably good exchanges will accept them without discussion. ::)

We would definitely avoid paying any fee for listing but looks like it is not that simple.... :(

May be you, ocassionnaly, have some relations with good exchanges and can recommend them YVM.....we are ready to provide all technical info for listing  :)


Title: Re: [ANN] Your Vote Matters (YVM) - Token with strategy driven by holders
Post by: Mihawk on March 01, 2019, 08:42:47 AM
... :(
May be you, ocassionnaly, have some relations with good exchanges and can recommend them YVM.....we are ready to provide all technical info for listing  :)
Huh, I usually use more Bitmex! It's not shill. I'm just explaining normally where I use! Sometimes, small exchanges for speculation or even buy Shitcoins, such as Livecoin or something of the sort. This volume on Livecoin is respectful! It's not any group of traders that can trade this in small exchanges and you know it! ;) Maybe they're reading this thread and will be good at guiding YVM to good places! 8)
There are ways for YVM to get more attractive and the large volume exchanges add that token with enormous facilities!


Title: Re: [ANN] Your Vote Matters (YVM) - Token with strategy driven by holders
Post by: YVMat on March 02, 2019, 07:13:16 AM
... :(
May be you, ocassionnaly, have some relations with good exchanges and can recommend them YVM.....we are ready to provide all technical info for listing  :)
Huh, I usually use more Bitmex! It's not shill. I'm just explaining normally where I use! Sometimes, small exchanges for speculation or even buy Shitcoins, such as Livecoin or something of the sort. This volume on Livecoin is respectful! It's not any group of traders that can trade this in small exchanges and you know it! ;) Maybe they're reading this thread and will be good at guiding YVM to good places! 8)
There are ways for YVM to get more attractive and the large volume exchanges add that token with enormous facilities!

Appreciate your support!
Would be nice to experience those experts accceptance of our project more seriously.


Title: Re: [ANN] Your Vote Matters (YVM) - Token with strategy driven by holders
Post by: Mihawk on March 02, 2019, 09:42:31 AM
Appreciate your support!
Would be nice to experience those experts accceptance of our project more seriously.
You're welcome! Well, have you been to the market with the price 0.002 BTC and how is the situation this moment? I think less than 100x! That drop was when it was still 1/3 of the current supply. The question that is at stake is this, why raise prices if they can buy even cheaper? The response of the YVM team is being legal until then with interaction in the voting and proposing improvements, but this pace is slow enough not to convince any advance. As I said earlier! I'm still going to buy these tokens on 1k sat. ;D
It's not interesting to go to another exchange at these levels. Unless you have something in mind, the current price reflects what that token has to offer right now and you know it, right? I think it's really cool to be able to offer value to a token! Its introduction is very clear, most of the projects are just digital numbers.
But for example, why would I buy YVM to vote on new exchange? When I realize a vote off the curve and with many possibilities, I won't mind the price and buy some tokens to attend, but until then are simple details that are on the table.


Title: Re: [ANN] Your Vote Matters (YVM) - Token with strategy driven by holders
Post by: YVMat on March 05, 2019, 05:23:22 PM
New website design for YVM is ready. The layout is in progress now. Soon new edition will be released.

This action item is being done because of YVM Holders voted FOR it here https://www.yourvotematters.online/index.php?content=wallet


Title: Re: [ANN] Your Vote Matters (YVM) - Token with strategy driven by holders
Post by: Margary on March 05, 2019, 06:14:47 PM
New website design for YVM is ready. The layout is in progress now. Soon new edition will be released.

This action item is being done because of YVM Holders voted FOR it here https://www.yourvotematters.online/index.php?content=wallet

It is good, that you are working on the external design of the project. this is one of the important stages in development. however, I believe, that you need to focus more on popularizing ideas and improving the strategy.


Title: Re: [ANN] Your Vote Matters (YVM) - Token with strategy driven by holders
Post by: YVMat on March 05, 2019, 07:09:11 PM
New website design for YVM is ready. The layout is in progress now. Soon new edition will be released.

This action item is being done because of YVM Holders voted FOR it here https://www.yourvotematters.online/index.php?content=wallet

It is good, that you are working on the external design of the project. this is one of the important stages in development. however, I believe, that you need to focus more on popularizing ideas and improving the strategy.

You are right. We are brainstorming on constant improvements and it would be glad if ppl here share their ideas as well. Even better to put your suggestion in here for vote https://yourvotematters.online/index.php?content=wallet


Title: Re: [ANN] Your Vote Matters (YVM) - Token with strategy driven by holders
Post by: Ribak1992 on March 05, 2019, 09:59:49 PM
guys the idea is good, but as always the implementation almost never works as the community wants. almost all dao similar in structure sooner or later end in failure.


Title: Re: [ANN] Your Vote Matters (YVM) - Token with strategy driven by holders
Post by: YVMat on March 06, 2019, 07:56:28 AM
Hi Guys!
Let us remind you all can use alternatively our YVM forum to create threads to discuss both YVM further development and any other idea.
You can be issued admin rights for your threads.
https://yourvotematters.online/phpBB3/


Title: Re: [ANN] Your Vote Matters (YVM) - Token with strategy driven by holders
Post by: YVMat on March 06, 2019, 08:02:40 AM
guys the idea is good, but as always the implementation almost never works as the community wants. almost all dao similar in structure sooner or later end in failure.

Can't but agree with you. Nevertheless, we are struggling to be out of that "almost all".


Title: Re: [ANN] Your Vote Matters (YVM) - Token with strategy driven by holders
Post by: YVMat on March 06, 2019, 11:51:34 AM
Hmm...some Holders voted AGAINST listing YVM on another exchange.....
The Voting is still running so if someone want to change the decision, please, catch up with voting https://www.yourvotematters.online/index.php?content=wallet


Title: Re: [ANN] Your Vote Matters (YVM) - Token with strategy driven by holders
Post by: Mihawk on March 06, 2019, 12:23:12 PM
Hmm... Some Holders voted AGAINST listing YVM on another exchange...
Haha It's a funny situation! ;D I think I'm interested in voting now. Almost 1k added to circulating, right?


Title: Re: [ANN] Your Vote Matters (YVM) - Token with strategy driven by holders
Post by: YVMat on March 07, 2019, 06:30:22 AM
Hmm... Some Holders voted AGAINST listing YVM on another exchange...
Haha It's a funny situation! ;D I think I'm interested in voting now. Almost 1k added to circulating, right?

Added 1K is to devs wallet. It hasn't been added to circulation on the exchange.


Title: Re: [ANN] Your Vote Matters (YVM) - Token with strategy driven by holders
Post by: YVMat on March 07, 2019, 06:45:59 AM
Discord YVM server launched for those who want alternative communication means.
https://discord.gg/JxJYdve


Title: Re: [ANN] Your Vote Matters (YVM) - Token with strategy driven by holders
Post by: YVMat on March 07, 2019, 08:04:36 AM
New suggestion for vote on YVM development is in place here
https://www.yourvotematters.online/index.php?content=wallet

Join the voting!
Tokens will be refunded after voting completion.


Title: Re: [ANN] Your Vote Matters (YVM) - Token with strategy driven by holders
Post by: YVMat on March 07, 2019, 10:34:42 AM
Suggestion for Listing YVM on another exchange ended in AGAINST result voting today.
Oops...didn't expect.

https://www.yourvotematters.online/index.php?content=wallet


Title: Re: [ANN] Your Vote Matters (YVM) - Token with strategy driven by holders
Post by: Mihawk on March 07, 2019, 12:37:47 PM
Added 1K is to devs wallet. It hasn't been added to circulation on the exchange.
Yes, that's right! Unfortunately Livecoin does not allow for more in-depth analysis that would allow you to find out the amount of tokens or coins within the exchange.

Perhaps. YVM being added on another exchange would just be the target of speculation! It was the first vote with the most votes, right? ;D


Title: Re: [ANN] Your Vote Matters (YVM) - Token with strategy driven by holders
Post by: YVMat on March 08, 2019, 09:06:49 AM
Added 1K is to devs wallet. It hasn't been added to circulation on the exchange.
Yes, that's right! Unfortunately Livecoin does not allow for more in-depth analysis that would allow you to find out the amount of tokens or coins within the exchange.

Perhaps. YVM being added on another exchange would just be the target of speculation! It was the first vote with the most votes, right? ;D

Here is funny situation explaining why that happened. Holder missed  :)
 http://yourvotematters.online/phpBB3/viewtopic.php?f=7&t=7&sid=7168c5596a906b612898f44b570c4bf6


Title: Re: [ANN] Your Vote Matters (YVM) - Token with strategy driven by holders
Post by: YVMat on March 09, 2019, 09:55:46 AM
Running YVM Suggestion voting for: Re-design wallet. Make two slots to input #token amount either FOR or AGAINST and one button "VOTE" 

35/5 votes ratio, so far. 22hrs left to complete. Direct the development as holder now!

https://www.yourvotematters.online/index.php?content=wallet


Title: Re: [ANN] Your Vote Matters (YVM) - Token with strategy driven by holders
Post by: YVMat on March 10, 2019, 11:05:27 AM
#YVM Suggestion voting for: Re-design wallet. Make two slots to input #token amount either FOR or AGAINST and one button "VOTE"  COMPLETE!!!

New website will have new wallet.

Direct the development as holder now!

https://www.yourvotematters.online/index.php?content=wallet


Title: Re: [ANN] Your Vote Matters (YVM) - Token with strategy driven by holders
Post by: YVMat on March 10, 2019, 12:04:02 PM
YVM Suggestion voting for: Re-design wallet. Make two slots to input #token amount either FOR or AGAINST and one button "VOTE"  CLOSED!!

YVM tokens used for voting were returned back to holders.

https://www.yourvotematters.online/index.php?content=wallet


Title: Re: [ANN] Your Vote Matters (YVM) - Token with strategy driven by holders
Post by: YVMat on March 11, 2019, 07:54:33 AM
Here is first screenshot of new design for website and wallet for YVM.
Soon there will be a release, as we promised.  If you have ideas to fix smth be4 release welcome here https://www.yourvotematters.online/phpBB3/

https://i.imgur.com/0DCzwbQ.jpg


Title: Re: [ANN] Your Vote Matters (YVM) - Token with strategy driven by holders
Post by: YVMat on March 12, 2019, 08:58:03 AM
We have reached the max allowed supply for Devs $YVM 100K.
https://etherscan.io/token/0x807a8889e84cc9a2b3271c45e886b0a4469b64fc
There are plans for next week that should improve the demand and price subsequently.


Title: Re: [ANN] Your Vote Matters (YVM) - Token with strategy driven by holders
Post by: honghotcoin on March 12, 2019, 09:06:06 AM
It is good to experience the experts who accept your project more seriously.


Title: Re: [ANN] Your Vote Matters (YVM) - Token with strategy driven by holders
Post by: runrrunr on March 13, 2019, 01:21:45 AM
Hey Guys,

I see that you've started up a discord and are looking to improve wallet ui and voting. That's really awesome. I also see there's been a few nice volume spikes. If I may continue my offering of suggestions:

1. You need a logo desperately. I have dm'd you a couple on twitter that I made on my phone in a few minutes to give an idea. I'm sure you could find someone who can accomplish a much greater feat of genius.
2. I would recommend beginning to add some generalized hashtags to your twitter posts. Simple ones like #crypto #cryptocurrency #cryptotrading #cryptotwitter might garner a little attention and it's an easy addendum.
3. You also need a different banner for your twitter—even a single color is better than any fuzzy or low resolution background.
4. I would again recommend trying to get the attention of some of the larger social media presences. Possibly through dms. You should be trying to build a network with some of the other projects out there, or the big voices—it's part of what helps the community grow.
5. Speaking of community. Your twitter would benefit from some fun/social style postings even amidst the informative posts. The tweet about the BTC real estate transaction, for instance, was a good one; there was a photo and the content was interesting.

Congrats again on the successful contest!

I hope this is helpful. Here's to greater volume and adoption.

Aloha ‘oe,
runrrunr


Title: Re: [ANN] Your Vote Matters (YVM) - Token with strategy driven by holders
Post by: MayCentola on March 13, 2019, 04:48:25 AM
Anyone knows telegram? I would like to ask communities’s opinion about this project.


Title: Re: [ANN] Your Vote Matters (YVM) - Token with strategy driven by holders
Post by: YVMat on March 13, 2019, 07:45:15 AM
Anyone knows telegram? I would like to ask communities’s opinion about this project.

There is no telegram channel. All communication links are given on 1st page topic.


Title: Re: [ANN] Your Vote Matters (YVM) - Token with strategy driven by holders
Post by: YVMat on March 13, 2019, 08:01:01 AM
Hey Guys,

I see that you've started up a discord and are looking to improve wallet ui and voting. That's really awesome. I also see there's been a few nice volume spikes. If I may continue my offering of suggestions:

1. You need a logo desperately. I have dm'd you a couple on twitter that I made on my phone in a few minutes to give an idea. I'm sure you could find someone who can accomplish a much greater feat of genius.
2. I would recommend beginning to add some generalized hashtags to your twitter posts. Simple ones like #crypto #cryptocurrency #cryptotrading #cryptotwitter might garner a little attention and it's an easy addendum.
3. You also need a different banner for your twitter—even a single color is better than any fuzzy or low resolution background.
4. I would again recommend trying to get the attention of some of the larger social media presences. Possibly through dms. You should be trying to build a network with some of the other projects out there, or the big voices—it's part of what helps the community grow.
5. Speaking of community. Your twitter would benefit from some fun/social style postings even amidst the informative posts. The tweet about the BTC real estate transaction, for instance, was a good one; there was a photo and the content was interesting.

Congrats again on the successful contest!

I hope this is helpful. Here's to greater volume and adoption.

Aloha ‘oe,
runrrunr

Dear runrrunr,

we highly appreciate your advice and as you may have noticed even follow partially.
We may recommend you put your suggestions on vote in here https://www.yourvotematters.online/index.php?content=wallet
It is free to put a suggestion. Only voting is carried out with YVM tokens, however, even YVM are refunded to holder after voting completion.

The Idea of Token is to get development suggestions of Users and implement by simple majority of votes.




 

 




Title: Re: [ANN] Your Vote Matters (YVM) - Token with strategy driven by holders
Post by: YVMat on March 13, 2019, 11:01:19 AM
Hi there! we have up-dated the website and wallet design as was scheduled.
Welcome to check this out!


https://yourvotematters.online


Title: Re: [ANN] Your Vote Matters (YVM) - Token with strategy driven by holders
Post by: datguyian on March 13, 2019, 11:20:53 AM
Having code standards can be understood as a security layer because every developer can look for bugs in one version of code. If there are thousands of different versions, there is more risk to miss critical bugs.


Title: Re: [ANN] Your Vote Matters (YVM) - Token with strategy driven by holders
Post by: YVMat on March 13, 2019, 12:40:10 PM
Having code standards can be understood as a security layer because every developer can look for bugs in one version of code. If there are thousands of different versions, there is more risk to miss critical bugs.


Ermmmm....our smart contract is based on ERC-20 standard which is commonly used by ethereum network.
It has open source code which is verified by thousands of ETH users.


Title: Re: [ANN] Your Vote Matters (YVM) - Token with strategy driven by holders
Post by: Mihawk on March 15, 2019, 09:47:48 PM
We have reached the max allowed supply for Devs $YVM 100K.
There are plans for next week that should improve the demand and price subsequently.
I'll be waiting for that moment then! Because because it made no sense to seemingly increase the circulating, the absorption is slow! There is only 60k in blue glass and the price is 1900 sat.


Title: Re: [ANN] Your Vote Matters (YVM) - Token with strategy driven by holders
Post by: YVMat on March 16, 2019, 05:17:24 PM
Let us remind that you can discuss YVM development and other crypto items in our forum here https://yourvotematters.online

You can easily create your own threads and suggestions.


Title: Re: [ANN] Your Vote Matters (YVM) - Token with strategy driven by holders
Post by: Mihawk on March 16, 2019, 05:31:32 PM
Let us remind that you can discuss YVM development and other crypto items in our forum
You can easily create your own threads and suggestions.
Shouldn't development be proposed by the YVM devs and then shown to the community so that there is a vote to move on or not? The community creating suggestions in this situation will hardly happen! There is no stimulation. I said earlier, why don't you create an interesting topic for us to vote on? I don't know if you are a single person or group! But it doesn't matter. ;D


Title: Re: [ANN] Your Vote Matters (YVM) - Token with strategy driven by holders
Post by: YVMat on March 18, 2019, 07:04:30 AM
Did you manage to get on the train with YVM?

https://i.imgur.com/IXNZoBj.jpg


Title: Re: [ANN] Your Vote Matters (YVM) - Token with strategy driven by holders
Post by: YVMat on March 18, 2019, 07:05:39 AM
Let us remind that you can discuss YVM development and other crypto items in our forum
You can easily create your own threads and suggestions.
Shouldn't development be proposed by the YVM devs and then shown to the community so that there is a vote to move on or not? The community creating suggestions in this situation will hardly happen! There is no stimulation. I said earlier, why don't you create an interesting topic for us to vote on? I don't know if you are a single person or group! But it doesn't matter. ;D

It seems you are right. We will do that soon.


Title: Re: [ANN] Your Vote Matters (YVM) - Token with strategy driven by holders
Post by: Mihawk on March 18, 2019, 02:09:26 PM
Did you manage to get on the train with YVM?
Are you calling it a wagon then? ;D This train is going down very fast!


Title: Re: [ANN] Your Vote Matters (YVM) - Token with strategy driven by holders
Post by: Mihawk on March 18, 2019, 05:18:13 PM
It seems you are right. We will do that soon.
But do it after the train arrives at some destination! Is your team composed of people experienced in trading or things like that?


Title: Re: [ANN] Your Vote Matters (YVM) - Token with strategy driven by holders
Post by: YVMat on March 20, 2019, 09:48:07 AM
It seems you are right. We will do that soon.
But do it after the train arrives at some destination! Is your team composed of people experienced in trading or things like that?

Yes, we have experienced ones in trading.



Title: Re: [ANN] Your Vote Matters (YVM) - Token with strategy driven by holders
Post by: YVMat on March 20, 2019, 09:50:23 AM
Adding up wagons to the train  ;D

looks attractive, isn't it?

https://i.imgur.com/l5diXHm.png


Title: Re: [ANN] Your Vote Matters (YVM) - Token with strategy driven by holders
Post by: Mihawk on March 20, 2019, 05:13:03 PM
Yes, we have experienced ones in trading.
I understand, now it makes no sense, because with just with some BTC it's possible to buy these 100k of total supply!

Adding up wagons to the train  ;D

looks attractive, isn't it?
Well, it depends a lot on the point of view, prices are low but there is no strong sales, any buying move will cause the price to take off. I just bought 10 YVM a few days ago! That's equal to 0.01% of the total supply! If you had it from any coin of 21M supply, sure would be a good amount! I look forward to knowing what will happen to these YVM train tickets! ;D If I had bought those tickets now, I probably would have gotten almost 16 YVM! :'(


Title: Re: [ANN] Your Vote Matters (YVM) - Token with strategy driven by holders
Post by: Mihawk on March 22, 2019, 10:42:09 PM
The YVM Train is so unruly that I can not get out of my position! :-[ ;D


Title: Re: [ANN] Your Vote Matters (YVM) - Token with strategy driven by holders
Post by: YVMat on March 23, 2019, 07:33:29 AM
The YVM Train is so unruly that I can not get out of my position! :-[ ;D

Probably it has a Mustang character  ;D
and on PitStop now  ;D


Title: Re: [ANN] Your Vote Matters (YVM) - Token with strategy driven by holders
Post by: Mihawk on March 23, 2019, 07:56:25 AM
Probably it has a Mustang character  ;D
and on PitStop now  ;D
Haha I still think YVM is like train, but suddenly a deep transformation and then a mustang? How about Mercedes-Benz? ;D


Title: Re: [ANN] Your Vote Matters (YVM) - Token with strategy driven by holders
Post by: Mihawk on March 24, 2019, 06:50:21 AM
You know there are no people interested in the YVM train! My 10 tickets are of no interest to anyone! From 0.005 BTC to 0.000015 BTC. A trail to hell? ;D 8)


Title: Re: [ANN] Your Vote Matters (YVM) - Token with strategy driven by holders
Post by: YVMat on March 24, 2019, 04:32:04 PM
You know there are no people interested in the YVM train! My 10 tickets are of no interest to anyone! From 0.005 BTC to 0.000015 BTC. A trail to hell? ;D 8)

May be YVM train direction is not popular in this season....but once the hot season is back you may need your YVM 'tickets' to enjoy the trip  ;)



Title: Re: [ANN] Your Vote Matters (YVM) - Token with strategy driven by holders
Post by: YVMat on March 24, 2019, 04:36:39 PM
4 votings complete for YVM token.

https://yourvotematters.online/wallet.html#vote

Subsequesntly action items are in place after decisions.

Holders! keep on suggesting the development strategy and tactics for YVM!



Title: Re: [ANN] Your Vote Matters (YVM) - Token with strategy driven by holders
Post by: Mihawk on March 24, 2019, 10:45:48 PM
May be YVM train direction is not popular in this season....but once the hot season is back you may need your YVM 'tickets' to enjoy the trip  ;)
I sold my YVM tickets! I finally got out of one of the wagons! But there are not many people on this train. So I think they will be able to save themselves too! There is no more hot season! It's better to be realistic. Anyway, it was fun to be here and maybe something happens to you. Good luck.


Title: Re: [ANN] Your Vote Matters (YVM) - Token with strategy driven by holders
Post by: AAF on March 28, 2019, 10:54:08 AM
What if...in order to stimulate holders activity put a suggestion for vote - Issue more tokens to the circulation. So  if they want to keep existing supply they have to actively vote Against it. However, if they fail to vote in time, there will appear an official excuse for devs to issue more tokens)))


Title: Re: [ANN] Your Vote Matters (YVM) - Token with strategy driven by holders
Post by: YVMat on March 28, 2019, 12:26:19 PM
What if...in order to stimulate holders activity put a suggestion for vote - Issue more tokens to the circulation. So  if they want to keep existing supply they have to actively vote Against it. However, if they fail to vote in time, there will appear an official excuse for devs to issue more tokens)))

Hehe, we can see you just put that on vote  ;D
http://yourvotematters.online/wallet.html#vote


Title: Re: [ANN] Your Vote Matters (YVM) - Token with strategy driven by holders
Post by: YVMat on April 01, 2019, 07:25:27 AM
YVM voting for circulation supply increase is still in progress. You still can change the solution!
http://yourvotematters.online/wallet.html#vote


Title: Re: [ANN] Your Vote Matters (YVM) - Token with strategy driven by holders
Post by: YVMat on April 03, 2019, 07:26:54 AM
28hrs left before end of #YVM voting for circulation supply increase. You still can change the solution!

https://i.imgur.com/BcpIHZy.jpg


Title: Re: [ANN] Your Vote Matters (YVM) - Token with strategy driven by holders
Post by: YVMat on April 04, 2019, 05:48:15 AM
5hrs left before end of #YVM voting for circulation supply increase. You still can change the solution!
https://yourvotematters.online/wallet.html#vote

https://i.imgur.com/DArQyxy.jpg


https://twitter.com/YVMToken/status/1113678713072361472


Title: Re: [ANN] Your Vote Matters (YVM) - Token with strategy driven by holders
Post by: YVMat on April 04, 2019, 06:19:31 PM
#YVM voting for circulation supply increase has ENDED.
Now devs may emit more tokens to circulation.

https://yourvotematters.online/wallet.html#vote

https://i.imgur.com/UYGja8i.jpg



Title: Re: [ANN] Your Vote Matters (YVM) - Token with strategy driven by holders
Post by: Mihawk on July 07, 2019, 05:23:59 PM
Well, you abandoned the project so the amount of YVM in circulating has been increased. :) The price is 3 sat at Livecoin. Really this is abandoned.


Title: Re: [ANN] Your Vote Matters (YVM) - Token with strategy driven by holders
Post by: Fjri24 on July 07, 2019, 06:02:07 PM
Sangat menakjubkan...
Sungguh ini hebat banget sebuah proyek yang mempercayai kepada kepada pemegang...
Ini suatu keburuntungan bagi pemegangnya


Title: Re: [ANN] Your Vote Matters (YVM) - Token with strategy driven by holders
Post by: ChipperCrisper on August 24, 2020, 12:24:47 PM
It's ineteresting, some activity there. It trades again