Skip to content

Instantly share code, notes, and snippets.

View benyu's full-sized avatar
🎯
Focusing

笨鱼 benyu

🎯
Focusing
View GitHub Profile
@moty66
moty66 / DogeBack.sol
Created August 23, 2021 10:58
DogeBack token contract solidity
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.4;
library IterableMapping {
// Iterable mapping from address to uint;
struct Map {
address[] keys;
mapping(address => uint256) values;
mapping(address => uint256) indexOf;