Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add reporter to oracle #91

Merged
merged 34 commits into from
Mar 21, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
34 commits
Select commit Hold shift + click to select a range
9564a37
delete unused files
akremstudy Feb 22, 2024
5aece5f
add mocks
akremstudy Feb 23, 2024
3bc9946
Merge branch 'main' into AddReporterToOracle
akremstudy Feb 23, 2024
88e98ad
Merge remote-tracking branch 'origin/jailReporter' into AddReporterTo…
akremstudy Feb 23, 2024
c8fd3b5
add reporter module/ fix x/oracle tests
akremstudy Feb 23, 2024
9ad0156
cleanup
akremstudy Feb 26, 2024
4d1e39c
cleanup and fix tests
akremstudy Feb 26, 2024
a8d97b5
allocate reward as stake plus test
akremstudy Feb 28, 2024
de0f839
refactor code and rename file
akremstudy Feb 28, 2024
46892a4
.
akremstudy Mar 5, 2024
5242752
add sources snapshot pre un-bonding msg
akremstudy Mar 7, 2024
4c710a9
add methods for deducting from unbonding
akremstudy Mar 11, 2024
12a20de
scripts for generating proto files
akremstudy Mar 11, 2024
8523861
proto stuff
akremstudy Mar 11, 2024
e8be7e7
add reporting timeframe
akremstudy Mar 18, 2024
706d636
fix tests
akremstudy Mar 18, 2024
ced427b
fix auto reporter
akremstudy Mar 19, 2024
3961227
handle zero amt in tip tx
akremstudy Mar 19, 2024
12081e1
add registry hooks for when spec is updated
akremstudy Mar 19, 2024
733cb1b
fix test
akremstudy Mar 19, 2024
d77a84d
registry test
akremstudy Mar 19, 2024
9eef7e1
withdraw to stake
akremstudy Mar 19, 2024
c78f239
fix proto gen stuff
akremstudy Mar 19, 2024
0e5ecae
proto stuff
akremstudy Mar 19, 2024
7eff42b
auto generated files
akremstudy Mar 21, 2024
941e2a1
fix dispute payout
akremstudy Mar 21, 2024
266f47f
Merge branch 'main' into AddReporterToOracle
akremstudy Mar 21, 2024
0e5bf61
fix
akremstudy Mar 21, 2024
309c58e
handle dispute fee for support stat
akremstudy Mar 21, 2024
4ed2354
proto gen
akremstudy Mar 21, 2024
f218dbe
edit integration tests for tipping queries not in cycle list
danflo27 Mar 21, 2024
b0ac76f
add constant
akremstudy Mar 21, 2024
2beea22
fix test
akremstudy Mar 21, 2024
1cfa51b
clean up
akremstudy Mar 21, 2024
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
23 changes: 23 additions & 0 deletions .golangci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
linters:
disable-all: true
enable:
- errcheck
- errorlint
- gofmt
- gosimple
- govet
- importas
- ineffassign
- lll
- misspell
- revive
- staticcheck
- typecheck
- unused
- whitespace
linters-settings:
revive:
rules:
- name: duplicated-imports
severity: warning
disabled: false
7 changes: 6 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
For more in-depth information about Layer, checkout the [TellorLayer - tech paper](https://github.com/tellor-io/layer/blob/main/TellorLayer%20-%20tech.pdf).

## Tests

To run all tests:
`go test -v ./...`

Expand Down Expand Up @@ -56,4 +57,8 @@ Check out our issues log here on Github or feel free to reach out anytime [info@

## Copyright

Tellor Inc. 2022
Tellor Inc. 2022

### Tools

1. Install [golangci-lint](https://golangci-lint.run/usage/install/) 1.55.2
19 changes: 10 additions & 9 deletions api/layer/daemons/median_values.pulsar.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

21 changes: 11 additions & 10 deletions api/layer/daemons/pricefeed.pulsar.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading
Loading