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
- Host: GitHub
- URL: https://github.com/capt-nemo429/eip12-types
- Owner: capt-nemo429
- License: mit
- Created: 2022-07-06T23:11:48.000Z (almost 3 years ago)
- Default Branch: master
- Last Pushed: 2022-11-18T00:22:09.000Z (over 2 years ago)
- Last Synced: 2024-03-15T14:10:58.157Z (about 1 year ago)
- Topics: blockchain, ergo, ergoplatform, typescript, wallet
- Language: TypeScript
- Homepage:
- Size: 50.8 KB
- Stars: 3
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-ergo - eip12-types - 12 dApp Connector standard. [`TS`] *(Community)* (📚 SDKs & Libraries <a id="sdks--libraries"></a> / 🤝 Community SDKs/Libraries <a id="community-sdkslibraries"></a>)
README
[](https://www.npmjs.com/package/@nautilus-js/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"],
}
}
```