// Copyright 2017-2021 @polkadot/types authors & contributors // SPDX-License-Identifier: Apache-2.0 // order important in structs... :) /* eslint-disable sort-keys */ import type { Definitions } from '../../types'; export default { rpc: {}, types: { AssetOptions: { initalIssuance: 'Compact', permissions: 'PermissionLatest' }, Owner: { _enum: { None: 'Null', Address: 'AccountId' } }, PermissionsV1: { update: 'Owner', mint: 'Owner', burn: 'Owner' }, PermissionVersions: { _enum: { V1: 'PermissionsV1' } }, PermissionLatest: 'PermissionsV1' } } as Definitions;