Skip to content

Latest commit

 

History

History
27 lines (17 loc) · 2.65 KB

AccountLinkNode.md

File metadata and controls

27 lines (17 loc) · 2.65 KB

AccountLinkNode

This node represents a reference to an existing AccountNode in the Kinobi IDL.

Attributes

Data

Attribute Type Description
kind "accountLinkNode" The node discriminator.
name CamelCaseString The name of the AccountNode we are referring to.
importFrom CamelCaseString (Optional) The reference of the module we are importing from or "hooked" if the account is defined in the same module but manually written when rendering clients. Default to referrencing directly from the Kinobi IDL instead of using an external referrence. Note that this information is only used for rendering clients. This, it will likely be removed from the Kinobi IDL and pushed to the renderer options instead.

Children

This node has no children.

Functions

accountLinkNode(name, importFrom?)

Helper function that creates a AccountLinkNode object from the name of the AccountNode we are referring to.

const node = accountLinkNode('myAccount');