https://github.com/jfkz/simplehash-api
TypeScript-ready implementation for SimpleHash.com
https://github.com/jfkz/simplehash-api
Last synced: 3 months ago
JSON representation
TypeScript-ready implementation for SimpleHash.com
- Host: GitHub
- URL: https://github.com/jfkz/simplehash-api
- Owner: jfkz
- Created: 2022-08-24T18:28:40.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2025-02-21T13:16:47.000Z (4 months ago)
- Last Synced: 2025-02-21T13:51:31.792Z (4 months ago)
- Language: TypeScript
- Size: 124 KB
- Stars: 5
- Watchers: 2
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# SimpleHash API
[](https://nodei.co/npm/simplehash-api/)
## Introduction
SimpleHash is Multi-chain NFT API. Live on Ethereum, Polygon, Solana, Optimism and Arbitrum.
Read more about it [here](https://simplehash.com/).
## Installation
```bash
npm i simplehash-api
```## Example usage
```node
import * as SimpleHash from 'simplehash-api';(async () => {
const simpleHash = SimpleHash.createApi(API_KEY);const transfers = await simpleHash.transfersByNft('solana', 'FmhJc5zWfifRi9azMBtWnhAqXNwqwvzV7kqX5M5zGyL4');
console.log(transfers);
})();```
## TODO
* Add more APIs
* Add more examples
* Add more tests
* Add more documentation© 2022, [@jfkz](https://github.com/jfkz)