Skip to content

Commit 7eccf6b

Browse files
[release] v0.0.10 (#114)
* take 2 region * use full region * update explorer * update wasm * update identity * v0.0.10
1 parent ec44bcf commit 7eccf6b

12 files changed

Lines changed: 15 additions & 18 deletions

File tree

Cargo.lock

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ members = [
88
resolver = "2"
99

1010
[workspace.dependencies]
11-
alto-client = { version = "0.0.9", path = "client" }
12-
alto-types = { version = "0.0.9", path = "types" }
11+
alto-client = { version = "0.0.10", path = "client" }
12+
alto-types = { version = "0.0.10", path = "types" }
1313
commonware-broadcast = { version = "0.0.53" }
1414
commonware-codec = { version = "0.0.53" }
1515
commonware-consensus = { version = "0.0.53" }

chain/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "alto-chain"
3-
version = "0.0.9"
3+
version = "0.0.10"
44
publish = true
55
edition = "2021"
66
license = "MIT OR Apache-2.0"

chain/README.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -99,8 +99,6 @@ _The indexer URL is configured separately because it is typically only known aft
9999
cargo run --bin setup -- explorer --dir assets --backend-url <backend URL>
100100
```
101101

102-
_The backend URL should be a WebSocket endpoint (with a `ws://` or `wss://` prefix)._
103-
104102
#### Build Validator Binary
105103

106104
##### Build Cross-Platform Compiler

chain/src/bin/setup.rs

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -540,13 +540,12 @@ fn indexer(sub_matches: &ArgMatches) {
540540
"count exceeds number of peers"
541541
);
542542

543-
// Group peers by area (prefix of region)
543+
// Group peers by region
544544
let mut region_to_peers: BTreeMap<String, Vec<String>> = BTreeMap::new();
545545
for instance in &config.instances {
546546
let peer_name = instance.name.clone();
547547
let region = instance.region.clone();
548-
let area = region.split('-').next().unwrap().to_string();
549-
region_to_peers.entry(area).or_default().push(peer_name);
548+
region_to_peers.entry(region).or_default().push(peer_name);
550549
}
551550

552551
// Sort peers within each region for deterministic selection

client/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "alto-client"
3-
version = "0.0.9"
3+
version = "0.0.10"
44
publish = true
55
edition = "2021"
66
license = "MIT OR Apache-2.0"

explorer/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "alto-explorer",
3-
"version": "0.0.9",
3+
"version": "0.0.10",
44
"private": true,
55
"dependencies": {
66
"@types/node": "^16.18.126",
280 Bytes
Binary file not shown.

explorer/src/config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
export const BACKEND_URL = "alto.exoware.xyz";
2-
export const PUBLIC_KEY_HEX = "b554065dd3e49c5d00776b521851918be24bb5bda25c92d315c12512f66568c6b4d2dbe77b9fd8d607e443909496bc120cde76b01bcd2a765a39c69cbb88c997e65c3954916d099bf860dd2e53f34e4c7a1d1a5b850e5146d8f2b33faf45dea9";
2+
export const PUBLIC_KEY_HEX = "8545391f46812888993b7ad3ddf5384f2a2303c1bb2a3b5259021490b958d09682e527c100ff52c223c6d0fd3150c79211ed3c2bc71e49b455f1b44de956e7f8e735cf4105dee3d72d48e64b61fdd0dc2447a7199322f4ab7d58479396b24f95";
33
export const LOCATIONS: [[number, number], string][] = [
44
[[37.7749, -122.4194], "San Francisco"],
55
[[38.8339, -77.3074], "Ashburn"],

inspector/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "alto-inspector"
3-
version = "0.0.9"
3+
version = "0.0.10"
44
publish = true
55
edition = "2021"
66
license = "MIT OR Apache-2.0"

0 commit comments

Comments
 (0)