UNPKG

runes-js

Version:

A typescript library for Runes protocol of Bitcoin

12 lines (10 loc) 217 B
import { RuneId } from './rune_id'; export abstract class Artifact { private _mint: RuneId | null = null; public setMint(m: RuneId | null) { this._mint = m; } public mint() { return this._mint; } }