salt-sdk
    Preparing search index...

    Type Alias CreateOrganisationCollaborator

    A collaborator to invite when creating an organisation. They will receive an invitation that can be accepted via Salt#acceptOrganisationInvitation.

    type CreateOrganisationCollaborator = {
        accessLevel?: 1 | 2 | 3 | 4;
        address: string;
        name?: string;
        role: string;
    }
    Index

    Properties

    accessLevel?: 1 | 2 | 3 | 4

    Access level to grant. Defaults to 2 (Member).

    • 1: Owner
    • 2: Member
    • 3: Agent
    address: string

    Ethereum address of the collaborator

    '0x1234567890123456789012345678901234567890'
    
    name?: string

    Display name of the collaborator

    role: string

    The collaborator's role within the organisation

    'CFO'