New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

@logion/solidity-contracts

Package Overview
Dependencies
Maintainers
2
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@logion/solidity-contracts

Logion Smart Contract library for Solidity

latest
Source
npmnpm
Version
0.1.0-1
Version published
Maintainers
2
Created
Source

logion Smart Contracts

Smart contracts establishing the link between your tokens and the logion network.

Currently, a single contract is provided: Logion. This contract links an NFT (e.g. ERC721 or ERC1155) to a logion collection item.

Overview

Installation

$ yarn install --dev @logion/solidity-contracts

Usage

Once installed, you can use the contract in the library by importing them:

pragma solidity ^0.8.17;

import "@openzeppelin/contracts/token/ERC1155/ERC1155.sol";
import "@logion/contracts/Logion.sol";

contract MyCollectible is ERC1155, Logion {
    constructor()
        ERC1155("https://some.domain/{id}.json")
        Logion(
            Strings.toHexString(address(this)), // The address of the contract is being used to generate a unique item ID per token
            "334801581596596632473758891935041239976", // The collection LOC ID
            "certificate.logion.network" // The domain for building a logion certificate URL
        )
    {
    }
}

FAQs

Package last updated on 13 Oct 2022

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts