Interface PostNoteOptions

interface PostNoteOptions {
    characterId: Numberish;
    linkModule?: MintOrLinkModuleConfig;
    locked?: boolean;
    metadataOrUri: string | NoteMetadata;
    mintModule?: MintOrLinkModuleConfig;
}

Properties

characterId: Numberish

The character ID of the owner who post this note. Must be your own character, otherwise it will be rejected.

The link module

locked?: boolean

If locked, the note will be not able to be edited.

metadataOrUri: string | NoteMetadata

The metadata or URI of the content you want to post.

The mint module

Generated using TypeDoc