UNPKG

@avalabs/avalanchejs

Version:
24 lines (21 loc) 553 B
import { Credential } from './credential'; import { MintOperation } from './mintOperation'; import { MintOutput } from './mintOutput'; import { TransferOperation } from './transferOperation'; import { TransferOutput } from './transferOutput'; // https://github.com/ava-labs/avalanchego/blob/master/vms/nftfx/fx.go const TypeRegistry = Object.freeze([ MintOutput, TransferOutput, MintOperation, TransferOperation, Credential, ]); export { Credential, MintOutput, TransferOutput, MintOperation, TransferOperation, TypeRegistry, };