diff --git a/docs/unity/quickstart.md b/docs/unity/quickstart.md index cd50c330b..dea0105da 100644 --- a/docs/unity/quickstart.md +++ b/docs/unity/quickstart.md @@ -104,8 +104,6 @@ You can see these events and their return values in the [EventManager object](./ For an example, see the [WalletConnection tutorial scene](./scenes#wallet-connection-scene). -For an example, see the [WalletConnection tutorial scene](./scenes#wallet-connection-scene). - ## Deploying contracts Contracts are backend programs that run on the Tezos blockchains. @@ -337,6 +335,7 @@ private void OnPayloadSigned(SignResult obj) // Result is true if the message is signed correctly // And that it came from the currently-connected wallet var result = TezosManager.Instance.Wallet.VerifySignedPayload(SignPayloadType.micheline, payload); + Debug.Log($"Payload verification response: {result}"); } ``` diff --git a/docs/unity/scenes.md b/docs/unity/scenes.md index e8e8a22f7..7a27b7864 100644 --- a/docs/unity/scenes.md +++ b/docs/unity/scenes.md @@ -211,23 +211,6 @@ public void HandleTransfer() } ``` -The transfer tutorial scene uses the [`TokenContract.Transfer()`](./reference/TokenContract#transfer) method to transfer the token: - -```csharp -public void HandleTransfer() -{ - TezosManager - .Instance - .Tezos - .TokenContract - .Transfer( - completedCallback: TransferCompleted, - destination: address.text, - tokenId: int.Parse(id.text), - amount: int.Parse(amount.text)); -} -``` - This ledger of token ownership is stored in a big-map data type, which is serialized on Tezos to save space. ## IPFSUpload scene diff --git a/sidebars.js b/sidebars.js index 63f71f5be..804bdf964 100644 --- a/sidebars.js +++ b/sidebars.js @@ -229,35 +229,6 @@ const sidebars = { }, ], }, - { - type: 'category', - label: 'Reference', - items: [ - 'dApps/unity/quickstart', - 'dApps/unity/scenes', - { - type: 'category', - label: 'Reference', - link: { - id: 'unity/reference', - type: 'doc', - }, - items: [ - { - type: "category", - label: "Objects", - items: [ - 'unity/reference/API', - 'unity/reference/DAppMetadata', - 'unity/reference/MessageReceiver', - 'unity/reference/TokenContract', - 'unity/reference/Wallet', - ], - }, - ], - }, - ], - }, { type: 'category', label: 'Reference',