salt-sdk
    Preparing search index...

    Type Alias SaltAccount

    A specifc Salt account within an Organisation

    type SaltAccount = {
        address: string;
        creatorAddress: string;
        id: string;
        name: string;
        policies: AccountPolicy[];
        publicKey: string;
        signers: string[];
    }
    Index

    Properties

    address: string

    The address of the account on the orchestration chain. This is required for orchestration but is not the address that you will send or receive tokens from. See publicKey for that.

    '0x7890123456789012345678901234567890123456'
    
    creatorAddress: string

    The public key of the account creator

    '0x1234567890123456789012345678901234567890'
    
    id: string

    The ID of the account

    '6824aa9c27c0fa91b32800a4'
    
    name: string

    The name of the account

    'Staking'
    
    policies: AccountPolicy[]

    Policies for the account

    publicKey: string

    Public key of the account. This is the address that you will send or receive tokens from.

    '0x1234567890123456789012345678901234567890'
    
    signers: string[]

    Signers for the account

    ['0x1234567890123456789012345678901234567890', '0x2345678901234567890123456789012345678901', '0x3456789012345678901234567890123456789012']