All chains
    Preparing search index...

    Type Alias force_create

    force_create: TxDescriptor<
        {
            config: {
                max_supply?: number;
                mint_settings: {
                    default_item_settings: bigint;
                    end_block?: number;
                    mint_type: Enum<
                        { HolderOf: number; Issuer: undefined; Public: undefined },
                    >;
                    price?: bigint;
                    start_block?: number;
                };
                settings: bigint;
            };
            owner: MultiAddress;
        },
    >

    Issue a new collection of non-fungible items from a privileged origin.

    This new collection has no items initially.

    The origin must conform to ForceOrigin.

    Unlike create, no funds are reserved.

    • owner: The owner of this collection of items. The owner has full superuser permissions over this item, but may later change and configure the permissions using transfer_ownership and set_team.

    Emits ForceCreated event when successful.

    Weight: O(1)