Skip to content

Instantly share code, notes, and snippets.

View IzioDev's full-sized avatar
🎯
Focusing

Romain Billot IzioDev

🎯
Focusing
View GitHub Profile
@IzioDev
IzioDev / gist:b3fd0048d928675a50d50aad59afc4dd
Last active March 3, 2026 00:33
VSCP V2 - High level notes

Specifications

Description
Adds GetVirtualChainFromBlockV2, a non-breaking virtual-chain RPC that returns chain updates together with per-chain-block accepted transaction data, controlled by an optional incremental verbosity level.

RPC

Operation: GetVirtualChainFromBlockV2
Opcode: RpcApiOps::GetVirtualChainFromBlockV2 = 151

@IzioDev
IzioDev / lib.rs
Created April 26, 2019 16:58
I'm a dumbass
extern crate rand;
use std::process;
use rand::Rng;
use world::World;
pub mod world;
pub fn create_world(n_col: usize, n_row: usize) -> World {
let mut _world = World::new(n_col, n_row).unwrap_or_else(|err| {