UNPKG

@gorbchain-xyz/chaindecode

Version:

GorbchainSDK V1.3+ - Complete Solana development toolkit with advanced cryptography, messaging, and collaboration features. Build secure applications with blockchain, DeFi, and end-to-end encryption.

6 lines (5 loc) 242 B
// Helper to convert base64 to hex (browser-safe) export function base64ToHex(base64) { const bytes = Uint8Array.from(atob(base64), c => c.charCodeAt(0)); return Array.from(bytes).map(x => x.toString(16).padStart(2, '0')).join(''); }