New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

amethysta

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

amethysta

Smart Contract Validator

  • 1.0.2
  • latest
  • Source
  • npm
  • Socket score

Version published
Maintainers
1
Created
Source

Introduction

Library for validating smart contracts made on the Etherium Network. In order to facilitate the development of SmartContracts validation platforms, Amethysta is a great tool for Creating Explorers and Token Validators.

Install

To install this library in your project, use NPM to download.

npm install amethysta

Then import this library in the root of your project

/** 
 * If you download through git, 
 * import this library through the index.js route
*/
import Amethysta from "amethysta";

Constructor

After the import, build the sapphire Request Object so that the class functions are presented.

/** 
 *  If you want, you can configure
 *  some settings inside the builder,
 *  such as api version, schedule and protocol
*/
var sapphire = new Amethysta();

Functions

Now it is possible to use the functions within the project in a simple way.

GetSmartContract

Method that obtains the contents of a .sol smart contract to be validated. It will be parsed so that it can be read and interpreted by the validation algorithm.

    var smart = await safir.GetSmartContract('./MetaContract.sol');

this return:

{
  type: 'SourceUnit',
  children: [
    {
      type: 'PragmaDirective',
      name: 'solidity',
      value: '>=0.7.0 <0.9.0'
    },
    {
      type: 'ContractDefinition',
      name: 'MetaContract',
      baseContracts: [],
      subNodes: [Array],
      kind: 'contract'
    }
  ]
}

CheckSmartContract

this function checks the status of the previously made request, so that it can be confirmed if it is a valid request.

    var smart = await safir.GetSmartContract('./MetaContract.sol');
    var locale = await safir.CheckSmartContract(smart);

SendForRemix

This function verifies the contract with the Remix API where a verification is requested within the Etherium IPFS where it will return a Hash containing the request information, if it is successfully verified.

var remix = await safir.SendForRemix(smart);

this return

{
  Name: 'QmekfvjFTUq1n9Ku45c3aLXQfYPSSN81fLCRx2893B6oKL',
  Hash: 'QmekfvjFTUq1n9Ku45c3aLXQfYPSSN81fLCRx2893B6oKL',
  Size: '1372'
}

developer contact

Telegram: @VictorRatts

Keywords

FAQs

Package last updated on 26 Apr 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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc