# Code dá»… deploy remix **Published by:** [tonythanh2012](https://paragraph.com/@tonythanh/) **Published on:** 2023-09-01 **URL:** https://paragraph.com/@tonythanh/code-d-deploy-remix ## Content 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; } } ## Publication Information - [tonythanh2012](https://paragraph.com/@tonythanh/): Publication homepage - [All Posts](https://paragraph.com/@tonythanh/): More posts from this publication - [RSS Feed](https://api.paragraph.com/blogs/rss/@tonythanh): Subscribe to updates