Type alias AptosSettings

AptosSettings: {
    client?: Client;
    clientConfig?: ClientConfig;
    faucet?: string;
    faucetConfig?: FaucetConfig;
    fullnode?: string;
    fullnodeConfig?: FullNodeConfig;
    indexer?: string;
    indexerConfig?: IndexerConfig;
    network?: Network;
}

Set of configuration options that can be provided when initializing the SDK. The purpose of these options is to configure various aspects of the SDK's behavior and interaction with the Aptos network

Type declaration

  • Optional Readonly client?: Client
  • Optional Readonly clientConfig?: ClientConfig
  • Optional Readonly faucet?: string
  • Optional Readonly faucetConfig?: FaucetConfig
  • Optional Readonly fullnode?: string
  • Optional Readonly fullnodeConfig?: FullNodeConfig
  • Optional Readonly indexer?: string
  • Optional Readonly indexerConfig?: IndexerConfig
  • Optional Readonly network?: Network

Generated using TypeDoc