michael-spengler / wwi17seb

2 stars 0 forks source link

DHBW o.Ä. Coin :) #1

Open michael-spengler opened 4 years ago

michael-spengler commented 4 years ago

Erstellung einer eigenen Währung (z.B. DHBW Coin) auf der Ethereum Blockchain als ERC20 Token mit https://remix.ethereum.org/ - Geldmenge 1.000.000 DHBW Coins - Optional: Publishing auf der Mc Afee Dex :)

Hawkman59 commented 4 years ago

Falk

JuThrone commented 4 years ago

Julian

ghost commented 4 years ago

Yassine

AndreasGueluekoglu commented 4 years ago

Andreas

daletman commented 4 years ago

David

nikolockenvitz commented 4 years ago

Niko

msandig commented 4 years ago

Martin

fabioki commented 4 years ago

Fabio

KayWess commented 4 years ago

Kay

bettinasc commented 4 years ago

Bettina 🙋🏼‍♀️

Hawkman59 commented 4 years ago

https://www.dappuniversity.com/articles/code-your-own-cryptocurrency-on-ethereum

Hawkman59 commented 4 years ago

Ich habe einfach mal einen Smartcontract im Rinkeby Testnetzwerk erstellt, welcher den Token "Aehre" implementiert/nutzt. https://rinkeby.etherscan.io/address/0x8f1c1ff6bf0169ac5f096d782bbedb72c9236cf6

Hawkman59 commented 4 years ago

Meine Wallet: 0xfDe94feCfC3F63d08863e5892cFfF05a2d16fC21

michael-spengler commented 4 years ago

Example Code for https://remix.ethereum.org/

pragma solidity ^0.5.0;

import "https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v2.3.0/contracts/token/ERC20/ERC20.sol";
import "https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v2.3.0/contracts/token/ERC20/ERC20Detailed.sol";

contract DHBWCoin is ERC20, ERC20Detailed {
    constructor () public   ERC20Detailed("DHBW Coin", "DHBW", 0){
        _mint(msg.sender,20000000000 * (10 ** uint256(decimals())));
    }
}