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

remove deposit analyzer #160

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
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
64 changes: 0 additions & 64 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -58,18 +58,15 @@ Available Commands:
balance Manage balance
block_builder Manage block builder
completion Generate the autocompletion script for the specified shell
deposit Manage deposit
ethereum_private_key_wallet Generate Ethereum and IntMax wallets from Ethereum private key
generate_account Generate new Ethereum and IntMax accounts
help Help about any command
intmax_private_key_wallet Generate IntMax wallet from IntMax private key
messenger Manage messenger
migrate Execute migration
mnemonic_account Generate Ethereum and IntMax accounts from mnemonic
run run command
store-vault-server run store valut server command
tx Manage transaction
withdrawal Manage withdrawal
withdrawal-server run withdrawal server command

Flags:
Expand Down Expand Up @@ -197,34 +194,6 @@ Usage:
Flags:
-h, --help help for unstake
```
### Command `./intmax2-node deposit --help`
```
# ./intmax2-node deposit --help
Manage deposit

Usage:
app deposit [command]

Available Commands:
analyzer Run deposit analyzer service
relayer Run deposit relayer service

Flags:
-h, --help help for deposit

Use "app deposit [command] --help" for more information about a command.
```
### Command `./intmax2-node deposit analyzer --help`
```
# ./intmax2-node deposit analyzer --help
Run deposit analyzer service

Usage:
app deposit analyzer [flags]

Flags:
-h, --help help for analyzer
```
### Command `./intmax2-node store-valut-server run --help`
```
# ./intmax2-node store-valut-server run --help
Expand All @@ -247,39 +216,6 @@ Usage:
Flags:
-h, --help help for server
```
### Command `./intmax2-node withdrawal aggregator --help`
```
# ./intmax2-node withdrawal aggregator --help
Run withdrawal aggregator service

Usage:
app withdrawal aggregator [flags]

Flags:
-h, --help help for aggregator
```
### Command `./intmax2-node messenger withdrawal-relayer --help`
```
# ./intmax2-node withdrawal withdrawal-relayer --help
Run messenger withdrawal-relayer service

Usage:
app messenger withdrawal-relayer [flags]

Flags:
-h, --help help for withdrawal-relayer
```
### Command `./intmax2-node messenger withdrawal-relayer-mock --help`
```
# ./intmax2-node withdrawal withdrawal-relayer-mock --help
Run messenger withdrawal-relayer-mock service

Usage:
app messenger withdrawal-relayer-mock [flags]

Flags:
-h, --help help for withdrawal-relayer-mock
```
### Command `./intmax2-node balance get --help`
```
# ./intmax2-node balance get --help
Expand Down
16 changes: 0 additions & 16 deletions cmd/deposit/blockchain_service.go

This file was deleted.

47 changes: 0 additions & 47 deletions cmd/deposit/cmd_deposit_analyzer.go

This file was deleted.

34 changes: 0 additions & 34 deletions cmd/deposit/commands.go

This file was deleted.

23 changes: 0 additions & 23 deletions cmd/deposit/db_app.go

This file was deleted.

32 changes: 0 additions & 32 deletions cmd/deposit/deposit.go

This file was deleted.

24 changes: 0 additions & 24 deletions cmd/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,17 +4,14 @@ import (
"context"
"intmax2-node/cmd/balance_checker"
"intmax2-node/cmd/block_builder"
"intmax2-node/cmd/deposit"
"intmax2-node/cmd/ethereum_private_key_wallet"
"intmax2-node/cmd/generate_account"
"intmax2-node/cmd/intmax_private_key_wallet"
"intmax2-node/cmd/messenger"
"intmax2-node/cmd/migrator"
"intmax2-node/cmd/mnemonic_account"
"intmax2-node/cmd/server"
"intmax2-node/cmd/store_vault_server"
"intmax2-node/cmd/transaction"
"intmax2-node/cmd/withdrawal"
"intmax2-node/cmd/withdrawal_server"
"intmax2-node/configs"
"intmax2-node/internal/block_builder_registry_service"
Expand Down Expand Up @@ -112,20 +109,6 @@ func main() {
GPOStorage: storeGPO,
}),
migrator.NewMigratorCmd(ctx, log, dbApp),
deposit.NewDepositCmd(&deposit.Deposit{
Context: ctx,
Config: cfg,
Log: log,
DbApp: dbApp,
SB: bc,
}),
withdrawal.NewWithdrawCmd(&withdrawal.Withdrawal{
Context: ctx,
Config: cfg,
Log: log,
DbApp: dbApp,
SB: bc,
}),
withdrawal_server.NewServerCmd(&withdrawal_server.WithdrawalServer{
Context: ctx,
Cancel: cancel,
Expand Down Expand Up @@ -162,13 +145,6 @@ func main() {
SB: bc,
}),
block_builder.NewCmd(ctx, log, bc, bbr),
messenger.NewMessengerCmd(&messenger.Messenger{
Context: ctx,
Config: cfg,
Log: log,
DbApp: dbApp,
SB: bc,
}),
)
if err != nil {
const msg = "cli: %v"
Expand Down
18 changes: 0 additions & 18 deletions cmd/messenger/blockchain_service.go

This file was deleted.

50 changes: 0 additions & 50 deletions cmd/messenger/cmd_messenger_relayer_mock.go

This file was deleted.

Loading