UNPKG

@btc-vision/btc-runtime

Version:

Bitcoin L1 Smart Contract Runtime for OP_NET. Build decentralized applications on Bitcoin using AssemblyScript and WebAssembly. Fully audited.

9 lines (7 loc) 273 B
import { Calldata } from '../../types'; import { BytesWriter } from '../../buffer/BytesWriter'; export interface IOP20S { pegRate(calldata: Calldata): BytesWriter; pegAuthority(calldata: Calldata): BytesWriter; pegUpdatedAt(calldata: Calldata): BytesWriter; }