UNPKG

@aeternity/aepp-calldata

Version:
17 lines (12 loc) 337 B
import ObjectTags from './ChainObjectTags.js' class ChainObject { constructor(name, fields) { this.name = name this.vsn = fields.version || fields.header?.version || 1n Object.assign(this, fields) } get tag() { return ObjectTags[this.name.toUpperCase()] } } export default ChainObject