Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Minor fixes #26

Merged
merged 1 commit into from
Oct 15, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,19 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.1.1] - 2023-10-15

### Fixed

- Readme file example usage fixed.
- TS config file fixed.

## [0.1.0] - 2023-10-14

### Added

- Initial implementation of the Murmur API wrapper.

[unreleased]: https://github.com/ideal-lab5/murmur.js/compare/v0.1.1...HEAD
[0.1.1]: https://github.com/ideal-lab5/murmur.js/releases/tag/v0.1.1
[0.1.0]: https://github.com/ideal-lab5/murmur.js/releases/tag/v0.1.0
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ You need to configure axios and polkadot-js instances to be injected into the Mu
```javascript
import { ApiPromise, WsProvider, Keyring } from '@polkadot/api'
import axios from 'axios'
import { MurmurClient } from 'murmur.js'
import { MurmurClient } from '@ideallabs/murmur.js'

/* Polkadot API initialization */
const provider = new WsProvider('ws://127.0.0.1:9944')
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@ideallabs/murmur.js",
"version": "0.1.0",
"version": "0.1.1",
"description": "A wrapper to interact with the Murmur API",
"license": "Apache-2.0",
"repository": "https://github.com/ideal-lab5/murmur.js",
Expand Down
3 changes: 1 addition & 2 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,7 @@
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"declaration": true,
"typeRoots": ["node_modules/@types"],
"types": ["jest", "node"]
"typeRoots": ["node_modules/@types"]
},
"include": ["./src/**/*"],
"exclude": ["node_modules"]
Expand Down
Loading