-
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.
- Loading branch information
1 parent
dbbea24
commit 0b00f55
Showing
6 changed files
with
6 additions
and
6 deletions.
There are no files selected for viewing
Submodule cli-tools
updated
12 files
+83 −2 | README.md | |
+1 −1 | cmd/root.go | |
+9 −1 | config/config.toml | |
+43 −0 | docs/commands.md | |
+21 −6 | internal/config/config.go | |
+44 −0 | internal/config/metrics.go | |
+1 −1 | internal/config/remote_signer.go | |
+2 −2 | internal/services/persistent_store.go | |
+1 −1 | internal/services/remote_signer.go | |
+51 −6 | internal/services/unbonding_pipeline.go | |
+62 −0 | internal/services/unbonding_pipeline_metrics.go | |
+2 −2 | internal/services/witness_gen.go |
Submodule simple-staking
updated
38 files
Submodule staking-api-service
updated
23 files
+3 −2 | .circleci/values-staging.yaml | |
+1 −0 | .circleci/values-testnet.yaml | |
+1 −1 | config/config-local.yml | |
+42 −0 | docs/docs.go | |
+42 −0 | docs/swagger.json | |
+27 −0 | docs/swagger.yaml | |
+1 −1 | go.mod | |
+2 −2 | go.sum | |
+27 −0 | internal/api/handlers/delegation.go | |
+5 −2 | internal/api/handlers/finality_provider.go | |
+65 −0 | internal/api/handlers/handler.go | |
+11 −10 | internal/api/handlers/staker.go | |
+4 −1 | internal/api/handlers/stats.go | |
+38 −8 | internal/api/handlers/unbonding.go | |
+1 −0 | internal/api/routes.go | |
+7 −0 | internal/api/server.go | |
+3 −2 | internal/queue/handlers/expired_staking.go | |
+19 −11 | internal/utils/btc.go | |
+80 −0 | internal/utils/validation.go | |
+2 −2 | tests/config/config-test.yml | |
+58 −0 | tests/delegation_test.go | |
+14 −3 | tests/staker_test.go | |
+7 −1 | tests/unbonding_test.go |
Submodule staking-expiry-checker
updated
2 files
+10 −1 | .circleci/values-staging.yaml | |
+11 −2 | .circleci/values-testnet.yaml |
Submodule staking-indexer
updated
18 files
+10 −3 | btcscanner/block_handler.go | |
+1 −1 | btcscanner/btc_scanner.go | |
+0 −142 | cmd/sid/cli/btc_headers.go | |
+0 −51 | cmd/sid/cli/btc_headers_test.go | |
+2 −2 | cmd/sid/init.go | |
+1 −2 | cmd/sid/main.go | |
+2 −2 | cmd/sid/start.go | |
+1 −1 | go.mod | |
+2 −2 | go.sum | |
+0 −3 | indexer/errors.go | |
+289 −91 | indexer/indexer.go | |
+127 −0 | indexer/indexer_test.go | |
+4 −1 | indexer/metrics.go | |
+8 −155 | itest/e2e_test.go | |
+6 −25 | itest/test_manager.go | |
+1 −1 | testutils/datagen/params.go | |
+79 −1 | testutils/datagen/staking.go | |
+107 −0 | testutils/utils.go |