Skip to main content
type NetworkConfig = {
  ethereum?: EthereumConfig;
  solana?: {
     createOnLogin?: boolean;
  };
};
Network-specific configuration.

Properties

PropertyTypeDescription
ethereum?EthereumConfigEthereum/EVM account configuration.
solana?{ createOnLogin?: boolean; }Solana account configuration.
solana.createOnLogin?booleanWhether to automatically create an account on login.