Skip to content
Draft
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
734 changes: 669 additions & 65 deletions Cargo.lock

Large diffs are not rendered by default.

5 changes: 3 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -202,7 +202,8 @@ move-package = { git = "https://github.com/movementlabsxyz/aptos-core", rev = "1
movement = { git = "https://github.com/movementlabsxyz/aptos-core", rev = "1d1cdbbd7fabb80dcb95ba5e23213faa072fab67" }

# Indexer
processor = { git = "https://github.com/movementlabsxyz/aptos-indexer-processors", rev = "20be1190105908fd4fea4e78c330997658e9428e" }
processor = { git = "https://github.com/larryl3u/aptos-indexer-processors-v2", rev = "2e5dd83639886fe9e44af97726d79895a3b4f650" }
aptos-indexer-processor-sdk = { git = "https://github.com/larryl3u/aptos-indexer-processor-sdk", rev = "bbcc42d5a03cffe861b89c080ef7de918f37b4d0" }
server-framework = { git = "https://github.com/movementlabsxyz/aptos-indexer-processors", rev = "20be1190105908fd4fea4e78c330997658e9428e" }

bcs = { git = "https://github.com/movementlabsxyz/bcs.git", rev = "bc16d2d39cabafaabd76173dd1b04b2aa170cf0c" }
Expand Down Expand Up @@ -261,7 +262,7 @@ alloy-transport-http = { git = "https://github.com/alloy-rs/alloy.git", rev = "8
] }
alloy-transport-ws = { git = "https://github.com/alloy-rs/alloy.git", rev = "83343b172585fe4e040fb104b4d1421f58cbf9a2" }

anyhow = "1.0"
anyhow = "^1.0.98"
async-stream = "0.3.0"
async-trait = "0.1.71"
async-recursion = "1.1.1"
Expand Down
2 changes: 0 additions & 2 deletions docker/compose/movement-indexer/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,6 @@ rm -rf ~/.movement/* \
&& docker compose \
--env-file docker/compose/movement-indexer/.env \
-f docker/compose/movement-full-node/docker-compose.yml \
-f docker/compose/movement-full-node/docker-compose.setup-local.yml \
-f docker/compose/movement-full-node/docker-compose.celestia-local.yml \
-f docker/compose/movement-indexer/docker-compose.local-development.indexer.yml \
up
```
Expand Down
2 changes: 1 addition & 1 deletion flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@
# export PKG_CONFIG_PATH=$PKG_CONFIG_PATH_FOR_TARGET

# Export linker flags if on Darwin (macOS)
if [[ "$(${pkgs.stdenv.hostPlatform.system})" =~ "darwin" ]]; then
if [[ "${pkgs.stdenv.hostPlatform.system}" =~ "darwin" ]]; then
export LDFLAGS="-L/opt/homebrew/opt/zlib/lib"
export CPPFLAGS="-I/opt/homebrew/opt/zlib/include"
fi
Expand Down
1 change: 1 addition & 0 deletions networks/movement/indexer/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ futures = { workspace = true }
num_cpus = { workspace = true }
poem = { workspace = true }
processor = { workspace = true }
aptos-indexer-processor-sdk = { workspace = true }
server-framework = { workspace = true }
tracing = { workspace = true }
tracing-subscriber = { workspace = true }
Expand Down
Loading
Loading