Skip to content

Commit 0c9bb4f

Browse files
authored
Merge pull request #139 from hyperware-ai/hf/update-hypermap-first-block
hypermap: update first block for new deployment
2 parents 1b6dc76 + 4829379 commit 0c9bb4f

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "hyperware_process_lib"
33
authors = ["Sybil Technologies AG"]
4-
version = "1.0.4"
4+
version = "1.0.5"
55
edition = "2021"
66
description = "A library for writing Hyperware processes in Rust."
77
homepage = "https://hyperware.ai"

src/hypermap.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ pub const HYPERMAP_ADDRESS: &'static str = "0x000000000044C6B8Cb4d8f0F889a3E4766
1616
/// base chain id
1717
pub const HYPERMAP_CHAIN_ID: u64 = 8453;
1818
/// first block (minus one) of hypermap deployment on base
19-
pub const HYPERMAP_FIRST_BLOCK: u64 = 25_346_377;
19+
pub const HYPERMAP_FIRST_BLOCK: u64 = 27_270_411;
2020
/// the root hash of hypermap, empty bytes32
2121
pub const HYPERMAP_ROOT_HASH: &'static str =
2222
"0x0000000000000000000000000000000000000000000000000000000000000000";

src/lib.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,12 +35,12 @@ pub mod homepage;
3535
/// Your process must have the [`Capability`] to message and receive messages from
3636
/// `http-server:distro:sys` and/or `http-client:distro:sys` to use this module.
3737
pub mod http;
38+
/// Interact with hypermap, the onchain namespace
39+
pub mod hypermap;
3840
/// The types that the kernel itself uses -- warning -- these will
3941
/// be incompatible with WIT types in some cases, leading to annoying errors.
4042
/// Use only to interact with the kernel or runtime in certain ways.
4143
pub mod kernel_types;
42-
/// Interact with hypermap, the onchain namespace
43-
pub mod hypermap;
4444
/// Interact with the key_value module
4545
///
4646
/// Your process must have the [`Capability`] to message and receive messages from

0 commit comments

Comments
 (0)