diff --git a/docs/unity/quickstart.md b/docs/unity/quickstart.md index 44e8185f6..dea0105da 100644 --- a/docs/unity/quickstart.md +++ b/docs/unity/quickstart.md @@ -346,8 +346,10 @@ As described in [The RPC protocol](../architecture/rpc), Tezos clients including By default, the SDK sends requests to a public RPC node that uses the Ghostnet test network, where you can test transactions without spending real tez. For more information about test networks, see [Using sandboxes and testnets](../developing/testnets). -If you need to change the RPC node that the SDK uses, such as if the default node is overloaded or if you are ready to send transactions to Mainnet, you can set the RPC node by creating an instance of the Tezos Configuration object and setting the node in the **Rpc Url Format** field, as in this picture: +If you need to change the RPC node that the SDK uses, such as if the default node is overloaded or if you are ready to send transactions to Mainnet, you can set the RPC node by creating an instance of the [TezosConfigSO scriptable object](./reference/TezosConfigSO) and setting the node in the **Rpc Url Format** field, as in this picture: Adding the Pinata API key and the data provider to the TezosConfigSO object +Then, drag this instance of the TezosConfigSO scriptable object to the Config field of the TezosManager prefab. + For more examples of how to work with the SDK, see [Tutorial scenes](./scenes). diff --git a/docs/unity/reference/DataProviderConfigSO.md b/docs/unity/reference/DataProviderConfigSO.md index c5306564f..8f179966b 100644 --- a/docs/unity/reference/DataProviderConfigSO.md +++ b/docs/unity/reference/DataProviderConfigSO.md @@ -8,6 +8,10 @@ last_update: The DataProviderConfigSO scriptable object sets the indexer that the SDK uses to get information about Tezos, such as an account's token balances. Some Tezos dApps use a custom indexer to provide specific information that they need. +To use this object, create an instance of it, put your information in its fields, and then drag this instance to the Data Provider Config field of the [TezosConfigSO scriptable object](./TezosConfigSO) object, as in this picture: + +Adding the Pinata API key and the data provider to the TezosConfigSO object + ## Properties - `Script`: The attached script that implements the object diff --git a/docs/unity/reference/TezosConfigSO.md b/docs/unity/reference/TezosConfigSO.md index 5d155a32a..23bfdb4fc 100644 --- a/docs/unity/reference/TezosConfigSO.md +++ b/docs/unity/reference/TezosConfigSO.md @@ -7,6 +7,10 @@ last_update: The TezosConfigSO scriptable object sets the RPC node that the SDK sends Tezos transactions to. +To use this object, create an instance of it, put your information in its fields, and then drag this instance of the TezosConfigSO scriptable object to the Config field of the TezosManager prefab. + +Adding the Pinata API key and the data provider to the TezosConfigSO object + ## Properties - `Script`: The attached script that implements the object