Quickstart
[3 steps]
Install SDK, configure RPC endpoint, and broadcast your first parallelized transaction within minutes.
BlockCore / Build Docs
From first RPC request to staged rollouts, BlockCore provides typed SDKs, observability-first APIs, and deterministic deployment patterns for high-throughput applications.
Quickstart
[3 steps]
Install SDK, configure RPC endpoint, and broadcast your first parallelized transaction within minutes.
SDK Language Support
[TS / Rust / Go]
Official SDKs are maintained with semver guarantees and migration guides for each protocol release.
RPC Availability
[99.99%]
Distributed RPC gateways with failover routing across 6 major regions.
Contract Templates
[42]
Pre-audited templates for payments, vaults, governance proposals, and cross-chain relays.
import { Client } from '@blockcore/sdk';
const client = new Client({ endpoint: 'https://rpc.blockcore.network' });
const tx = await client.sendParallel({
to: '0xBC...F2E1',
amount: 1500,
memo: 'invoice-4102'
});
console.log(`Finalized: ${tx.hash}`);