Skip to content

Commit

Permalink
feat: rename SBTToken to SBT
Browse files Browse the repository at this point in the history
  • Loading branch information
yashdesu committed Feb 20, 2024
1 parent 34a3586 commit 1669b34
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions contracts/SBTToken.sol
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@ import {Base64} from "@devprotocol/util-contracts/contracts/utils/Base64.sol";
import {ProxyAdmin} from "@openzeppelin/contracts/proxy/transparent/ProxyAdmin.sol";
import {ERC721EnumerableUpgradeable} from "@openzeppelin/contracts-upgradeable/token/ERC721/extensions/ERC721EnumerableUpgradeable.sol";

import {ISBTToken} from "./interfaces/ISBTToken.sol";
import {ISBT} from "./interfaces/ISBT.sol";

contract SBTToken is ISBTToken, ERC721EnumerableUpgradeable {
contract SBT is ISBT, ERC721EnumerableUpgradeable {
using Base64 for bytes;
using Strings for uint256;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// SPDX-License-Identifier: MPL-2.0
pragma solidity ^0.8.9;

interface ISBTToken {
interface ISBT {
/// @dev Data strucutre to represent all String attributes of the SBT.
struct StringAttribute {
string trait_type;
Expand Down

0 comments on commit 1669b34

Please sign in to comment.