> For the complete documentation index, see [llms.txt](https://liquiidio.gitbook.io/unity-plugin-suite/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://liquiidio.gitbook.io/unity-plugin-suite/anchorlink/examples/example_a.md).

# Quick Start

1. Add one of the Transport-Prefabs ([UiToolkitTransport](https://github.com/liquiidio/AnchorLinkTransportSharp/blob/unity/Src/Transports/UiToolkit/Prefabs/UiToolkitTransport.prefab) or [CanvasTransport](https://github.com/liquiidio/AnchorLinkTransportSharp/blob/unity/Src/Transports/Canvas/Prefabs/CanvasTransport.prefab)) to your scene.
2. Instantiate a new AnchorLink-object in one of your scripts, assign the Transport and configure your AnchorLink for the usage with WAX and the endpoints of your choice.

```csharp
   [SerializeField]
   internal UnityTransport Transport;
   internal AnchorLink myLink;

   public void Start(){
	   myLink = new AnchorLink(new LinkOptions()
	   {
		   Transport = this.Transport,
		   ChainId = "1064487b3cd1a897ce03ae5b6a865651747e2e152090f99c1d19d44e01aea5a4",
		   Rpc = "https://api.wax.liquidstudios.io",
	  });
  }
```
