Skip to content

Commit 1669b34

Browse files
author
Yash Agrawal
committed
feat: rename SBTToken to SBT
1 parent 34a3586 commit 1669b34

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

contracts/SBTToken.sol

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@ import {Base64} from "@devprotocol/util-contracts/contracts/utils/Base64.sol";
66
import {ProxyAdmin} from "@openzeppelin/contracts/proxy/transparent/ProxyAdmin.sol";
77
import {ERC721EnumerableUpgradeable} from "@openzeppelin/contracts-upgradeable/token/ERC721/extensions/ERC721EnumerableUpgradeable.sol";
88

9-
import {ISBTToken} from "./interfaces/ISBTToken.sol";
9+
import {ISBT} from "./interfaces/ISBT.sol";
1010

11-
contract SBTToken is ISBTToken, ERC721EnumerableUpgradeable {
11+
contract SBT is ISBT, ERC721EnumerableUpgradeable {
1212
using Base64 for bytes;
1313
using Strings for uint256;
1414

contracts/interfaces/ISBTToken.sol renamed to contracts/interfaces/ISBT.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// SPDX-License-Identifier: MPL-2.0
22
pragma solidity ^0.8.9;
33

4-
interface ISBTToken {
4+
interface ISBT {
55
/// @dev Data strucutre to represent all String attributes of the SBT.
66
struct StringAttribute {
77
string trait_type;

0 commit comments

Comments
 (0)