1.0.1 • Published 2 years ago

@auroralabs/contracts v1.0.1

Weekly downloads
-
License
MIT
Repository
github
Last release
2 years ago

Soulbound 👻 Token Smart Contracts

Installation

$ npm install @auroralabs/contracts

Usage

  • Contract
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.16;

import "@auroralabs/contracts/SBT.sol";

contract MySoulboundToken is SBT {
    constructor() SBT("My Soulbound", "SBT", 16) {}
}
  • Interface
import "@auroralabs/contracts/interfaces/ISBT.sol";