Skip to content

Commit

Permalink
Merge pull request #17 from Gearbox-protocol/erc-20-metadata
Browse files Browse the repository at this point in the history
feat: add `ERC20Metadata`
  • Loading branch information
0xmikko authored Mar 1, 2024
2 parents aae160b + b90dd67 commit 701121f
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions contracts/tokens/ERC20Metadata.sol
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
// SPDX-License-Identifier: BUSL-1.1
// Gearbox Protocol. Generalized leverage for DeFi protocols
// (c) Gearbox Foundation, 2024.
pragma solidity ^0.8.17;

/// @title ERC20Metadata
contract ERC20Metadata {
string public name;
string public symbol;
uint8 public immutable decimals;

constructor(string memory name_, string memory symbol_, uint8 decimals_) {
name = name_;
symbol = symbol_;
decimals = decimals_;
}
}

0 comments on commit 701121f

Please sign in to comment.