Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@jovijovi/ether-core

Package Overview
Dependencies
Maintainers
1
Versions
17
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@jovijovi/ether-core

Out-of-the-box core APIs for Ethereum ecosystem

  • 0.5.4
  • latest
  • Source
  • npm
  • Socket score

Version published
Maintainers
1
Created
Source

Ether Core

npm GitHub Actions Coverage

Out-of-the-box core APIs for Ethereum ecosystem.

Philosophy

:kiss: KISS. Keep it small and simple.

Features

  • Out-of-the-box Ethereum APIs

Development Environment

  • typescript 4.8.4
  • node v16.18.0
  • ts-node v10.9.1
  • yarn v1.22.19

Install

npm install @jovijovi/ether-core

or

yarn add @jovijovi/ether-core

Usage

import {core} from '@jovijovi/ether-core';

const walletInfo = await core.NewWallet();
const wallet = core.GetWallet(walletInfo.pk);
const receipt = await core.Transfer(YOUR_WALLET_ADDRESS, wallet.address, '1', wallet.privateKey);
if (receipt.status !== core.params.StatusSuccessful) {
	log.RequestId().error("Transfer failed, error=%o", receipt);
	return;
}

Roadmap

  • Documents

License

MIT

Keywords

FAQs

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

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