Skip to content

Commit d8f6276

Browse files
authored
Merge pull request #799 from rsksmart/flyover-2.3.0
Flyover 2.3.0
2 parents dfcffb0 + 1f9138f commit d8f6276

File tree

281 files changed

+23390
-1402
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

281 files changed

+23390
-1402
lines changed

.github/pull_request_template.md

Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
## What
2+
Brief description of changes made in this PR.
3+
4+
## Why
5+
The reason behind this change.
6+
7+
## Type of Change
8+
- [ ] Bug fix (non-breaking change which fixes an issue)
9+
- [ ] New feature (non-breaking change which adds functionality)
10+
- [ ] Breaking change
11+
- [ ] Documentation update
12+
- [ ] Refactoring (no functional changes, no api changes)
13+
- [ ] Performance improvement
14+
- [ ] Test updates
15+
- [ ] Security fix
16+
- [ ] Deployment/Infrastructure changes
17+
18+
## Affected part of the project
19+
- [ ] Management UI / API
20+
- [ ] PegIn flow
21+
- [ ] PegOut flow
22+
- [ ] Utility scripts
23+
- [ ] Configuration files
24+
- [ ] Metrics and alerting
25+
26+
## Related Issues
27+
[Jira ticket](<insert URL>)
28+
29+
## How to test
30+
Description of how to test the change
31+
32+
## Reviewer Guidelines
33+
Special things to take into consideration during review
34+
35+
36+
## Screenshots (if applicable)
37+
Add screenshots or GIFs to help explain your changes.
38+
39+
40+
## Additional Notes
41+
Add any other context about the pull request here.

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,3 +27,4 @@ build/
2727
!sample-config.env
2828
/**/*.env
2929
/**/.env*
30+
.cursorrules

.mockery.yaml

Lines changed: 25 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ packages:
2020
RpcClientBinding:
2121
LbcCallerBinding:
2222
LbcAdapter:
23+
RskBridgeAdapter:
2324
EventIteratorAdapter:
2425
RskSignerWallet:
2526
github.com/rsksmart/liquidity-provider-server/internal/adapters/dataproviders/database/mongo:
@@ -35,9 +36,19 @@ packages:
3536
github.com/rsksmart/liquidity-provider-server/internal/usecases/liquidity_provider:
3637
interfaces:
3738
DefaultCredentialsProvider:
39+
github.com/rsksmart/liquidity-provider-server/internal/adapters/entrypoints/rest/handlers:
40+
interfaces:
41+
GetAssetsReportUseCase:
42+
PeginStatusUseCase:
43+
PegoutStatusUseCase:
44+
SetGeneralConfigUseCase:
3845
github.com/rsksmart/liquidity-provider-server/internal/entities/liquidity_provider:
3946
interfaces:
4047
LiquidityProviderRepository:
48+
TrustedAccountRepository:
49+
github.com/rsksmart/liquidity-provider-server/internal/entities/penalization:
50+
interfaces:
51+
PenalizedEventRepository:
4152
github.com/rsksmart/liquidity-provider-server/internal/entities/quote:
4253
interfaces:
4354
PeginQuoteRepository:
@@ -47,15 +58,26 @@ packages:
4758
interfaces:
4859
BitcoinWallet:
4960
RootstockRpcServer:
61+
github.com/rsksmart/liquidity-provider-server/internal/entities/rootstock:
62+
interfaces:
63+
BatchPegOutRepository:
5064
github.com/rsksmart/liquidity-provider-server/internal/adapters/dataproviders/utils:
5165
interfaces:
5266
HttpClient:
53-
github.com/rsksmart/liquidity-provider-server/internal/adapters/entrypoints/watcher:
54-
interfaces:
55-
Ticker:
5667
github.com/rsksmart/liquidity-provider-server/internal/adapters/entrypoints/rest/registry:
5768
interfaces:
5869
UseCaseRegistry:
5970
github.com/gorilla/sessions:
6071
interfaces:
6172
Store:
73+
net/http:
74+
interfaces:
75+
Handler:
76+
github.com/rsksmart/liquidity-provider-server/internal/entities/utils:
77+
interfaces:
78+
Ticker:
79+
Timer:
80+
github.com/rsksmart/liquidity-provider-server/internal/adapters/entrypoints/watcher:
81+
interfaces:
82+
EclipseCheckUseCase:
83+
UpdateBtcReleaseUseCase:

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ tools: download
1717
go install golang.org/x/vuln/cmd/govulncheck@latest
1818
pip3 install pre-commit && pre-commit install
1919
curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s -- -b $(shell go env GOPATH)/bin v1.63.4
20-
brew install mockery && brew upgrade mockery # installation with brew is because mockery team doesnt recommend to install with go install, if you don't have brew feel free to comment this line and install mockery with other method
20+
go install github.com/vektra/mockery/v2@v2.51.1 # ensures mockery version 2.51.1 is installed
2121

2222
download:
2323
go mod download

0 commit comments

Comments
 (0)