Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: add Tock / nv26 and nv27 TBD #2107

Merged
merged 1 commit into from
Mar 13, 2025
Merged
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
6 changes: 5 additions & 1 deletion shared/src/version/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -63,8 +63,12 @@ impl NetworkVersion {
pub const V23: Self = Self(23);
/// TukTuk (builtin-actors v15)
pub const V24: Self = Self(24);
/// TBD (builtin-actors v16)
/// Teep (builtin-actors v16)
pub const V25: Self = Self(25);
/// Tock (builtin-actors v16)
pub const V26: Self = Self(26);
/// TBD
pub const V27: Self = Self(27);

pub const MAX: Self = Self(u32::MAX);

Expand Down