[Ethereum] Guidance on creating new token with value tied to fiat currency & fixed increases in price (newbie)

contract-developmenttokens

I would like to create a new token, but I'm a complete newbie when it comes to Ethereum and cryptocurrencies/blockchain in general. I'm also not a programmer.

My goal is to create a fixed number of tokens. Every time a token is bought the following things should happen:

The token's price/value doubles. Ideally, I would like to tie the price to the USD or another fiat currency.

The payment is distributed to multiple parties. For example, the current value is $100. When it is bought for $200 75% goes to the seller and 25% goes to the original token creator.

If possible, the buyer will have the option to be listed publicly as the current owner or remain anonymous.

Thanks in advance for any guidance on how I can accomplish this!

Best Answer

The foundation have published a tutorial specifically about creating your own token contract.

Everything that you have described is possible.

You will need to write a smart contract in Solidity.

I am afraid you are going to have to become a programmer :)

Related Topic