Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/hoangph271/pricer
https://github.com/hoangph271/pricer
Last synced: 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/hoangph271/pricer
- Owner: hoangph271
- Created: 2021-07-02T15:37:45.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2024-02-29T16:37:13.000Z (10 months ago)
- Last Synced: 2024-02-29T17:39:32.930Z (10 months ago)
- Language: TypeScript
- Homepage:
- Size: 6.88 MB
- Stars: 3
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
- Create a `.env` file based on `.env.example`
- Create `pages/api/coins/_paid_entries` module as following:
```ts
export const paidEntries: Record = {
BTC,
ETH,
// ...Other coins/tokens
}// With PaidEntry:
type PaidEntry = {
name: string,
date: string,
amountUsd: number,
amount: number
}
```- Run `pnpm deploy:latest`