Socket
Socket
Sign inDemoInstall

@jovijovi/ether-core

Package Overview
Dependencies
67
Maintainers
1
Versions
17
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    @jovijovi/ether-core

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


Version published
Weekly downloads
1
Maintainers
1
Created
Weekly downloads
 

Readme

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

Last updated on 21 Oct 2022

Did you know?

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc