@btc-vision/transaction
Version:
OPNet transaction library allows you to create and sign transactions for the OPNet network.
19 lines (12 loc) • 524 B
text/typescript
import { DeterministicMap } from '../deterministic/DeterministicMap.js';
export type MemorySlotPointer = bigint;
export type BufferLike = Uint8Array | Buffer;
export type MemorySlotData<T> = T;
export type PointerStorage = DeterministicMap<MemorySlotPointer, MemorySlotData<bigint>>;
export type BlockchainStorage = DeterministicMap<string, PointerStorage>;
export type i32 = number;
export type u8 = number;
export type u16 = number;
export type u32 = number;
export type u64 = bigint;
export type Selector = number;