The user section within the KigoContext allows you to specify the user's name, which may be used throughout the application, including in components like the WalletHeader.

Properties

  • name - The name of the user.
    • Default: "" - If set to "", no name will be displayed or used.
    • Valid values: string
    • Example:
      const kigoContext = {
        user: { name: "John Doe" }
      }
      

This property can be customized to align with your specific application needs by setting it within the KigoContext.


What’s Next