-
Notifications
You must be signed in to change notification settings - Fork 0
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
d216e39
commit d7f4333
Showing
1 changed file
with
28 additions
and
1 deletion.
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 |
---|---|---|
@@ -1,6 +1,33 @@ | ||
# ParachuteDrop-LightClient | ||
## What's this? | ||
* This module is the helper for Parachute Drop. It tracks the activity of users in Osmosis dedicated to Evmos token, especially looking at the dumping/hodling tokens by looking at the following messages. | ||
* Messages that we look into in the light client | ||
* BeginUnlocking | ||
* BeginUnlockingAll | ||
* ExitPool | ||
* SuperfluidUnboundLock | ||
* SuperfluidUndelegate | ||
* JoinPool | ||
* LockTokens | ||
* LockAndSuperfluidDelegate | ||
* SuperfluidDelegate | ||
|
||
## grpc | ||
## How to start? | ||
``` | ||
cargo build | ||
cargo start | ||
``` | ||
|
||
## References | ||
* [cosmos-rust-package](https://github.com/Philipp-Sc/cosmos-rust-package) | ||
* [ibc-proto-rs](https://github.com/cosmos/ibc-proto-rs) | ||
* [hermes](https://github.com/informalsystems/hermes) | ||
* [osmosis docs](https://docs.osmosis.zone/osmosis-core/modules/lockup/) | ||
* [target pool](https://app.osmosis.zone/pool/722) | ||
* [querying block events](https://docs.tendermint.com/v0.34/app-dev/indexing-transactions.html#querying_block_events) | ||
* [events](https://docs.cosmos.network/v0.46/core/events.html) | ||
* [evmos swagger](https://api.evmos.dev/#/Service/GetTxsEvent) | ||
* [cosmos sdk](https://github.com/osmosis-labs/cosmos-sdk/blob/osmosis-main/proto/cosmos/tx/v1beta1/service.proto) | ||
* [grpcurl](https://docs.osmosis.zone/apis/grpc/interact-grpc-curl/) | ||
* [Rust actix web](https://choiseokwon.tistory.com/332) | ||
* [actix docs](https://actix.rs/docs/extractors) |