Skip to content

Instantly share code, notes, and snippets.

View al3mart's full-sized avatar
👨‍💻

Alejandro Martinez Andres al3mart

👨‍💻
View GitHub Profile
[2024-05-02T16:58:26Z INFO remote-ext] adding data for hashed prefix: , took 121.07s
[2024-05-02T16:58:26Z INFO remote-ext] adding data for hashed key: 3a636f6465
[2024-05-02T16:58:32Z INFO remote-ext] adding data for hashed key: 26aa394eea5630e07c48ae0c9558cef7f9cce9c888469bb1a0dceaa129672ef8
[2024-05-02T16:58:32Z INFO remote-ext] adding data for hashed key: 26aa394eea5630e07c48ae0c9558cef702a5c1b19ab7a04f536c519aca4983ac
[2024-05-02T16:58:32Z INFO remote-ext] 👩‍👦o child roots found to scrape
[2024-05-02T16:58:32Z INFO remote-ext] initialized state externalities with storage root 0x96c830b6ae630702662a5475ff9ba80424fbda604932fc31f8a779b479687a18 and state_version V0
[2024-05-02T16:58:32Z INFO try-runtime::cli] Original runtime [Name: RuntimeString::Owned("paseo")] [Version: 1001003] [Code hash: 0x0081...bd1a]
[2024-05-02T16:58:32Z INFO try-runtime::cli] New runtime [Name: RuntimeString::Owned("paseo")] [Version: 1002000] [Code hash: 0xfd64...3598]
[2024-05-02T16:58:33Z INFO try-runtime::cli] 🚀
@al3mart
al3mart / ptfintro.md
Last active October 23, 2023 11:29
Polkadot Technical Fellowship Candidate Intro

Hello! 👋

I am Alejandro Martinez - https://github.com/al3mart/ - I have been working with Parity Technologies since December 2020 on various tasks, always with a foot closer to Polkadot's ecosystem and the other one closer to its core technology.

Humble contributions

Runtime related

@al3mart
al3mart / recover_para_info.py
Last active September 8, 2022 11:10
Recover onboarded parachain state from a relay chain node.
# Usage python /parachain_info.py wss://relay-rpc.url [local_directory_name]
import sys
# install with `pip install substrate-interface
from substrateinterface import SubstrateInterface
def get_parachain_head(node_client, para_id):
return str(node_client.query('Paras', 'Heads', params=[para_id]))