Skip to content

Commit

Permalink
chore: pr 131 comments (#135)
Browse files Browse the repository at this point in the history
# Description

This PR contains fixes for comments from #131 

# Changes

- [x] Fix readme error
- [x] Cleanup unused type in `FilterPolicy`
- [x] Add gitignore for default config file

## How to test
1. Follow `README.md` instructions for running locally.
  • Loading branch information
mfw78 authored Jan 21, 2024
1 parent dd70c3d commit 279f720
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 7 deletions.
5 changes: 4 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -17,4 +17,7 @@ node_modules/
yalc.lock

# Databases
database*
database*

# Default config
/config*.json
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Watch-Tower for Programmatic Orders 🐮🎶
# Watch-Tower for Programmatic Orders 🐄🤖

## Overview

Expand Down Expand Up @@ -56,7 +56,7 @@ For [DAppNode](https://dappnode.com), the watch-tower is available as a package.
# Install dependencies
yarn
# Run watch-tower
yarn cli run --chain-config <rpc>,<deployment-block> --page-size 5000
yarn cli run --config-path ./config.json
```

## Architecture
Expand Down
4 changes: 0 additions & 4 deletions src/utils/filterPolicy.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,6 @@ export interface FilterParams {
conditionalOrderParams: ConditionalOrderParams;
}

export interface FilterPolicyParams {
configBaseUrl: string;
// configAuthToken: string; // TODO: Implement authToken
}
export class FilterPolicy {
protected config: PolicyConfig | undefined;

Expand Down

0 comments on commit 279f720

Please sign in to comment.