Skip to content
This repository was archived by the owner on Aug 12, 2023. It is now read-only.

Commit 8e3fbe9

Browse files
authored
Update endpoints to improve long-term-support (#21)
* Return total fees for fills * Return `null` for token amounts when token is unknown * Make slight modification to network/relayer stats endpoints * Restructure articles endpoint * Modify fills endpoint limits * Handle edge cases and fix bug * Remove rogue logging statement * Refactor tokens endpoint * Update config and dependencies * Update lock file
1 parent d94b64d commit 8e3fbe9

18 files changed

+266
-133
lines changed
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
11
node_modules
2+
!.*

.eslintrc.js

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
module.exports = {
2+
extends: ['airbnb-base', 'plugin:prettier/recommended'],
23
env: {
34
jest: true,
5+
node: true,
46
},
5-
extends: ['airbnb-base', 'plugin:prettier/recommended'],
67
overrides: [
78
{
89
files: ['jest/setup.js'],

.huskyrc.js

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
module.exports = {
2+
hooks: {
3+
'pre-commit': 'lint-staged',
4+
},
5+
};

.lintstagedrc.js

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
module.exports = {
2+
'*.js': 'eslint --quiet',
3+
};

.npmrc

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
save-exact=true

0 commit comments

Comments
 (0)