An open API service indexing awesome lists of open source software.

https://github.com/capt-nemo429/eip12-types

A type package for Ergo Platform's dApp Connector
https://github.com/capt-nemo429/eip12-types

blockchain ergo ergoplatform typescript wallet

Last synced: about 2 months ago
JSON representation

A type package for Ergo Platform's dApp Connector

Awesome Lists containing this project

README

        

[![npm](https://badgen.net/npm/v/@nautilus-js/eip12-types)](https://www.npmjs.com/package/@nautilus-js/eip12-types)
[![License](https://badgen.net/github/license/capt-nemo429/eip12-types/)](https://github.com/capt-nemo429/eip12-types/LICENSE)

# @nautilus-js/eip12-types

Static typing library for Ergo Blockchain's dApp Connector Protocol.

## Setup

1. Install the package

```sh
npm i --save-dev @nautilus-js/eip12-types
```

2. Configure `tsconfig.json`

```typescript
// tsconfig.json
{
"compilerOptions": {
// [...]
// Add "@nautilus-js/eip12-types" to types array
"types": ["@nautilus-js/eip12-types"],
}
}
```