Giter VIP home page Giter VIP logo

deflationary-token's Introduction

Hi ๐Ÿ‘‹, I'm Freezy

Freezy's GitHub stats

freezyex

  • ๐Ÿ”ญ Iโ€™m currently working on something really cool

  • ๐ŸŒฑ Iโ€™m currently learning Node.js, Solidity and React

  • ๐Ÿ‘จโ€๐Ÿ’ป All of my projects are available at https://github.com/FreezyEx

  • ๐Ÿ“ซ How to reach me [email protected]

Connect with me:

freezydev freezydev

Languages and Tools:

git javascript linux nodejs react vscode solidity hardhat

freezyex

deflationary-token's People

Contributors

freezyex avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

deflationary-token's Issues

Fees?

Hi!

Thank you very much for this great code. I'm just a little bit confused regarding the default fees:

    string private _name = "Name COIN";
    string private _symbol = "Name";
    uint8 private _decimals = 18;
    
    uint256 public _taxFee = 3;
    uint256 private _previousTaxFee = _taxFee;
    
    uint256 public _liquidityFee = 3;
    uint256 private _previousLiquidityFee = _liquidityFee;

    uint256 public _burnFee = 3;
    uint256 private _previousBurnFee = _burnFee;

    uint256 public _charityFee = 5;
    address public charityWallet = 0x4eF9A651F8656DEf8454178406eEae16FB7Ca458;
    uint256 private _previouscharityFee = _charityFee;

So the default is 3% tax fee, 3% liquidity fee, 3% burn fee and 5% charity fee, so all together 14%? Which one of these is exactly the holders reward fee and what is then the 4th one?

Sorry, I'm a little bit new to this :)

Fees

Hi, are the fees sent to users and marketing wallets in native token or in BNB?

The issue..

Hello! Do you maybe know how could i fix this?? TheMegaLeo#7734 this is my discord if you could also possibly add me I am really bad with these.. But I'm hoping u could help me.

issue

about reward

I made a lot of transactions for the test but Holders can't get rewards after transactions. I couldn't understand how it works, can you help me to understand it? Thank you.

I get a parse error

presale.sol:641:19: ParserError: Expected '{' but got identifier contract Toke Name is Context, IERC20, Ownable ^--^

I get this do you know how to fix?

Smart contract deploy error

Hi, Iโ€™m a beginner at creating contracts, Iโ€™ve error when I deploy your contract code with truffle and ganache-cli:

"Owo" hit a require or revert statement somewhere in its constructor. Try:

  • Verifying that your constructor params satisfy all require conditions.
  • Adding reason strings to your require statements.

this is my constructor code:

`
constructor (address payable charityWalletAddress) public {
_charityWalletAddress = charityWalletAddress;
_rOwned[_msgSender()] = _rTotal;

    IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(0x10ED43C718714eb63d5aA57B78B54704E256024E);
    // pancakeswapv2 for BSC network
    // Create a uniswap pair for this new token
    uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory())
    .createPair(address(this), _uniswapV2Router.WETH());

    // set the rest of the contract variables
    uniswapV2Router = _uniswapV2Router;

    // Exclude owner and this contract from fee
    _isExcludedFromFee[owner()] = true;
    _isExcludedFromFee[address(this)] = true;

    emit Transfer(address(0), _msgSender(), _tTotal);
}

`

my 3_deploy.js

`const Owo = artifacts.require("Owo");

module.exports = async function (deployer) {
const accounts = await web3.eth.getAccounts()
await deployer.deploy(Owo, accounts[0]);
};`

what's the problem mate? If possible, can you send me a comfortable deploy.js file for this contract or anything I need? Thanks.

Supply

Question, after deploying my coin I've got no supply how am i supposed to get my dev wallet ?

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.