-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixed all build,lint and test errors
- Loading branch information
1 parent
5804d00
commit b42fbec
Showing
39 changed files
with
281 additions
and
257 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,5 +3,4 @@ ABSINTHE_API_KEY= | |
ABSINTHE_EVENT_NAME= | ||
TESTNET= | ||
HOURS_INTERVAL= | ||
BLOCK_EXPLORER_URL= | ||
METRICS_FOLDER_PATH= |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,16 +6,16 @@ | |
"types": "dist/index.d.ts", | ||
"private": true, | ||
"scripts": { | ||
"lint": "eslint", | ||
"lint:fix": "eslint --fix", | ||
"test": "vitest run", | ||
"test:cov": "vitest run --coverage", | ||
"test:watch": "vitest watch", | ||
"build": "tsc -p ./tsconfig.build.json", | ||
"collect-metrics": "node dist/presentation/cli/CollectMetrics.js", | ||
"give-points": "node ./src/presentation/cli/GivePoints.ts" | ||
"give-points": "node ./src/presentation/cli/GivePoints.ts", | ||
"lint": "eslint src", | ||
"lint:fix": "eslint src --fix", | ||
"test": "vitest run", | ||
"test:cov": "vitest run --coverage", | ||
"test:watch": "vitest watch" | ||
}, | ||
"author": "Thomas Alvarenga ([email protected])", | ||
"author": "Thomas Alvarenga <[email protected]>", | ||
"license": "MIT", | ||
"dependencies": { | ||
"hemi-viem": "1.7.0", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,41 +1,41 @@ | ||
export const HelloWorldAbi = [ | ||
{ | ||
"inputs": [], | ||
"name": "getGreeting", | ||
"outputs": [ | ||
{ | ||
"internalType": "string", | ||
"name": "", | ||
"type": "string" | ||
} | ||
], | ||
"stateMutability": "view", | ||
"type": "function" | ||
}, | ||
{ | ||
"inputs": [], | ||
"name": "greeting", | ||
"outputs": [ | ||
{ | ||
"internalType": "string", | ||
"name": "", | ||
"type": "string" | ||
} | ||
], | ||
"stateMutability": "view", | ||
"type": "function" | ||
}, | ||
{ | ||
"inputs": [ | ||
{ | ||
"internalType": "string", | ||
"name": "_greeting", | ||
"type": "string" | ||
} | ||
], | ||
"name": "setGreeting", | ||
"outputs": [], | ||
"stateMutability": "nonpayable", | ||
"type": "function" | ||
} | ||
]; | ||
{ | ||
inputs: [], | ||
name: 'getGreeting', | ||
outputs: [ | ||
{ | ||
internalType: 'string', | ||
name: '', | ||
type: 'string' | ||
} | ||
], | ||
stateMutability: 'view', | ||
type: 'function' | ||
}, | ||
{ | ||
inputs: [], | ||
name: 'greeting', | ||
outputs: [ | ||
{ | ||
internalType: 'string', | ||
name: '', | ||
type: 'string' | ||
} | ||
], | ||
stateMutability: 'view', | ||
type: 'function' | ||
}, | ||
{ | ||
inputs: [ | ||
{ | ||
internalType: 'string', | ||
name: '_greeting', | ||
type: 'string' | ||
} | ||
], | ||
name: 'setGreeting', | ||
outputs: [], | ||
stateMutability: 'nonpayable', | ||
type: 'function' | ||
} | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.