DiamondHodler-crypto / PhilCoin

NA
0 stars 0 forks source link

Contract help #1

Open DiamondHodler-crypto opened 3 years ago

DiamondHodler-crypto commented 3 years ago

Can some edit my contract.

I would like every transaction has a 10% tax -5 automatically burn -3 goes to wallet of everyone who holds token -2 to my selected wallet

Has a feature of reanounce and burn manually.

please help! Heres my contract

pragma solidity ^0.4.23;

// based on https://github.com/OpenZeppelin/openzeppelin-solidity/tree/v1.10.0 /**

/**

/**

/**

/**

}

/**

/**

/**

/**

contract Philcoin is PausableToken, MintableToken { // public variables string public name = "Philcoin"; string public symbol = "PHC"; uint8 public decimals = 9;

constructor() public {
    totalSupply_ = 100000 * (10 ** uint256(decimals));
}

function () public payable {
    revert();
}

}

DiamondHodler-crypto commented 3 years ago

Also the balance is not showing up when I deploy this contract to testnet using remix.etherium.