https://github.com/jovijovi/ether-core
Out-of-the-box core APIs for Ethereum ecosystem.
https://github.com/jovijovi/ether-core
api core ether ether-core ethereum out-of-the-box typescript
Last synced: about 2 months ago
JSON representation
Out-of-the-box core APIs for Ethereum ecosystem.
- Host: GitHub
- URL: https://github.com/jovijovi/ether-core
- Owner: jovijovi
- License: mit
- Created: 2022-05-20T06:38:25.000Z (about 4 years ago)
- Default Branch: main
- Last Pushed: 2022-10-21T07:52:59.000Z (over 3 years ago)
- Last Synced: 2026-02-08T22:31:00.368Z (4 months ago)
- Topics: api, core, ether, ether-core, ethereum, out-of-the-box, typescript
- Language: TypeScript
- Homepage:
- Size: 514 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
README
# Ether Core
[](https://www.npmjs.com/package/@jovijovi/ether-core)
[](https://github.com/jovijovi/ether-core)
[](https://codecov.io/gh/jovijovi/ether-core)
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
```shell
npm install @jovijovi/ether-core
```
or
```shell
yarn add @jovijovi/ether-core
```
## Usage
```typescript
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](LICENSE)