From 5c06f7e0633406699d3de0dce40f7404922d9b43 Mon Sep 17 00:00:00 2001 From: 0x4tl4nt Date: Wed, 28 Jan 2026 15:45:06 +0100 Subject: [PATCH] Update Select.md --- docs/devdocs/Writing Smart Contracts/Select.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/devdocs/Writing Smart Contracts/Select.md b/docs/devdocs/Writing Smart Contracts/Select.md index 90aaa407..30473f35 100644 --- a/docs/devdocs/Writing Smart Contracts/Select.md +++ b/docs/devdocs/Writing Smart Contracts/Select.md @@ -25,7 +25,7 @@ A selector is a function that takes in a control and two branches, and returns t In Fhenix, we utilize this by calling the `select` function. It's a function that takes in a condition and two inputs, and returns the input that corresponds to the state of the condition. You can think of this like a ternary boolean conditional (`condition ? "yes" : "no"`), but for encrypted data. -Let's take a look at an example of `select` usage from a Blind Auction Smart Contract: TBD(ADD LINK): +Let's take a look at an example of `select` usage from a Blind Auction Smart Contract: [Blind Auction Example](https://github.com/FhenixProtocol/blind-auction-example) ```Javascript ebool isHigher = existingBid.lt(value);