Skip to content

Commit

Permalink
Resolve conflicts
Browse files Browse the repository at this point in the history
  • Loading branch information
vponline committed Oct 5, 2023
2 parents 2ad1f75 + c356371 commit 2d0a1bd
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 1 deletion.
11 changes: 11 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -98,6 +98,14 @@ The Airnode address of the beacon.

The template ID of the beacon.

### `deviationThresholdCoefficient`

The global coefficient applied to all deviation checks. Used to differentiate alternate deployments. For example:

```jsonc
"deviationThresholdCoefficient": 1,
```

## Docker

### Build
Expand All @@ -114,4 +122,7 @@ The docker image can be ran locally with:

```sh
yarn docker:run



```
3 changes: 2 additions & 1 deletion config/airseeker.example.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,5 +25,6 @@
}
}
}
}
},
"deviationThresholdCoefficient": 1
}
1 change: 1 addition & 0 deletions src/config/schema.ts
Original file line number Diff line number Diff line change
Expand Up @@ -98,6 +98,7 @@ export const configSchema = z
.object({
sponsorWalletMnemonic: z.string().refine((mnemonic) => ethers.utils.isValidMnemonic(mnemonic), 'Invalid mnemonic'),
chains: chainsSchema,
deviationThresholdCoefficient: z.number(),
})
.strict();

Expand Down

0 comments on commit 2d0a1bd

Please sign in to comment.