Skip to content

Instantly share code, notes, and snippets.

View zzzbedream's full-sized avatar
🏠
Working from home

Lucas Cifuentes zzzbedream

🏠
Working from home
View GitHub Profile
@zzzbedream
zzzbedream / RUSD.sol
Created February 12, 2026 23:56
Created using remix-ide: Realtime Ethereum Contract Compiler and Runtime. Load this file by pasting this gists URL or ID at https://remix.ethereum.org/#version=soljson-v0.8.31-pre.1+commit.b59566f6.js&optimize=undefined&runs=200&gist=
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.20;
import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
contract RUSD is ERC20 {
constructor() ERC20("RemesaUSD", "RUSD") {
// Mint inicial para ti
_mint(msg.sender, 1_000_000 * 10 ** decimals());
}