# Code dễ deploy remix

By [tonythanh2012](https://paragraph.com/@tonythanh) · 2023-09-01

---

    pragma solidity 0.8.17;
    
    
    // SPDX-License-Identifier: MIT
    
    
    contract AirdropAdventure { string public name = "Scroll Airdrop"; string public symbol = "SA"; uint8 public decimals = 18; uint256 public totalSupply = 100000000;
    
    
    mapping (address => uint256) public balances; address public owner;
    
    
    constructor() { owner = msg.sender; balances[owner] = totalSupply; }
    
    
    function transfer(address recipient, uint256 amount) public { require(balances[msg.sender] >= amount, "Insufficient balance."); balances[msg.sender] -= amount; balances[recipient] += amount; } 
    }

---

*Originally published on [tonythanh2012](https://paragraph.com/@tonythanh/code-d-deploy-remix)*
