v0.0.13
Changes
- [deploy] Global by @patrick-ogrady in #132
- [explorer] Update to c7g.large by @patrick-ogrady in #133
- [explorer] USA Cluster by @patrick-ogrady in #134
- [explorer] Use Right Globe by @patrick-ogrady in #135
- [explorer] USA Gradient by @patrick-ogrady in #136
- [chain] Migrate to
consensus::marshalby @patrick-ogrady in #137 - [release] v0.0.13 by @patrick-ogrady in #139
Full Changelog: v0.0.12...v0.0.13
Stats
.github/actions/setup/action.yml | 14 +-
.github/workflows/tests.yml | 7 +-
Cargo.lock | 58 +-
Cargo.toml | 28 +-
chain/Cargo.toml | 2 +-
chain/dashboard.json | 6 +-
chain/src/actors/mod.rs | 2 -
chain/src/actors/syncer/actor.rs | 832 -----------------------
chain/src/actors/syncer/coordinator.rs | 25 -
chain/src/actors/syncer/handler.rs | 67 --
chain/src/actors/syncer/ingress.rs | 156 -----
chain/src/actors/syncer/key.rs | 125 ----
chain/src/actors/syncer/mod.rs | 47 --
chain/src/{actors => }/application/actor.rs | 74 +-
chain/src/{actors => }/application/ingress.rs | 18 +-
chain/src/{actors => }/application/mod.rs | 2 -
chain/src/bin/setup.rs | 2 +
chain/src/bin/validator.rs | 15 +-
chain/src/engine.rs | 125 ++--
chain/src/indexer.rs | 209 ++++++
chain/src/lib.rs | 124 +---
chain/src/{actors/application => }/supervisor.rs | 26 +-
chain/src/utils.rs | 29 +
client/Cargo.toml | 2 +-
client/src/consensus.rs | 2 +-
explorer/README.md | 14 +-
explorer/package.json | 8 +-
explorer/src/AboutModal.css | 100 +++
explorer/src/AboutModal.tsx | 67 +-
explorer/src/App.css | 36 +-
explorer/src/App.tsx | 134 +++-
explorer/src/SearchModal.tsx | 6 +-
explorer/src/StatsSection.css | 227 ++++++-
explorer/src/StatsSection.tsx | 97 ++-
explorer/src/alto_types/alto_types_bg.wasm | Bin 174341 -> 174341 bytes
explorer/src/config.ts | 87 +--
explorer/src/global_config.ts | 54 ++
explorer/src/usa_config.ts | 54 ++
explorer/src/useClockSkew.ts | 19 +-
inspector/Cargo.toml | 2 +-
inspector/src/main.rs | 4 +-
inspector/src/utils.rs | 2 +-
types/Cargo.toml | 2 +-
types/src/block.rs | 10 +
types/src/wasm.rs | 2 +-
45 files changed, 1207 insertions(+), 1715 deletions(-)