Skip to content
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
18 changes: 17 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,14 +51,14 @@ packages
├── block-sync-monitor
├── deposit-analyzer
├── indexer
├── indexer-cache-validator
├── indexer-event-watcher
├── indexer-monitor
├── messenger-relayer
├── mint-executor
├── mock-l1-to-l2-relayer
├── mock-l2-to-l1-relayer
├── predicate
├── referral
├── shared
├── token
├── token-map-register
Expand Down Expand Up @@ -86,6 +86,22 @@ docker build -f docker/Dockerfile -t intmax2-function .
docker run --rm -p 3000:3000 --env-file .env intmax2-function workspace token start
```


## Testing

The project uses Vitest for testing. Run tests with the following commands:

```sh
# Run all tests
yarn test

# Run tests in watch mode
yarn test --watch

# Run tests with coverage report
yarn coverage
```

## Redis

```sh
Expand Down
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
{
"name": "intmax2-function",
"version": "1.0.5",
"version": "1.0.6",
"license": "MIT",
"description": "A collection of function for INTMAX",
"description": "A collection of function for INTMAX2 blockchain",
"repository": {
"type": "git",
"url": "https://github.com/InternetMaximalism/intmax2-function.git"
Expand All @@ -18,7 +18,7 @@
"api"
],
"engines": {
"node": ">=18.0.0",
"node": ">=20.0.0",
"yarn": ">=4.0.0"
},
"workspaces": [
Expand Down