Type alias Gateway

Gateway: {
    accountPrefix: number;
    id: string;
    name: string;
    nativeId?: any;
    rpc: string;
    signerKey?: string;
    type: string;
}

The gateway configuration for the executor.

Type declaration

  • accountPrefix: number

    The account prefix used by the target

  • id: string

    Id of the gateway as stored in circuit.

  • name: string

    Name of the gateway.

  • Optional nativeId?: any

    The native ID of the gateway within its consensus system. e.g. paraId in polkadot

  • rpc: string

    Rpc endpoint to connect to.

  • Optional signerKey?: string

    The assets the executor is willing to execute on the target. Matches the key used in assets

  • type: string

    Gateway type, currently only Substrate

Generated using TypeDoc