Skip to content

Instantly share code, notes, and snippets.

View daffadevhosting's full-sized avatar
💭
I may be slow to respond.

Daffa Aditya daffadevhosting

💭
I may be slow to respond.
View GitHub Profile
@daffadevhosting
daffadevhosting / WBNB.sol
Created March 5, 2023 00:01
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.3+commit.8d00100c.js&optimize=false&runs=200&gist=
// SPDX-License-Identifier: GNU GENERAL PUBLIC LICENSE V3
pragma solidity =0.8.3;
contract WBNB {
string public name = "Wrapped BNB";
string public symbol = "WBNB";
uint8 public decimals = 18;
event Approval(address indexed src, address indexed guy, uint wad);
event Transfer(address indexed src, address indexed dst, uint wad);