Skip to content

Commit

Permalink
Fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
andytudhope committed Oct 26, 2023
1 parent d672e7e commit 2fe70f3
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion docs/builder-solidity.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -76,4 +76,4 @@ This ensures confidentiality **and** improves efficiency, enabling computation t

We recommend [this early research talk from Andrew Miller](https://youtu.be/DhsDFKnHPa0?t=344) to get a sense of the ideas from which builder solidity has grown.

Please note that the pseudo code Andrew shows is now outdated and you are better off learning from our [how to create contracts guide](/how-to/create-contracts) above, or looking directly at our [list of available precompiles](/technical/specs/rigil/precompiles). That said, the framework used in this talk and the background provided should still prove useful when writing your own builder solidity contracts.
Please note that the pseudo code Andrew shows is now outdated and you are better off learning from our [how to create contracts guide](/how-to/create-contracts/deploy-custom) above, or looking directly at our [list of available precompiles](/technical/specs/rigil/precompiles). That said, the framework used in this talk and the background provided should still prove useful when writing your own builder solidity contracts.
4 changes: 2 additions & 2 deletions docs/how-to/create-contracts/confidential.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ keywords:

# Confidential contracts on SUAVE

We can extend [the contract we deployed in the previous guide](/how-to/create-contracts/) so that it emits the results of the simulation performed by the MEVM allowed to decrypt the confidential inputs.
We can extend [the contract we deployed in the previous guide](/how-to/create-contracts/deploy-custom) so that it emits the results of the simulation performed by the MEVM allowed to decrypt the confidential inputs.

```solidity
pragma solidity ^0.8.8;
Expand Down Expand Up @@ -61,7 +61,7 @@ It is easiest to demonstrate how we expect data to flow in Rigil via a diagram.

![Rigil transaction flow](/assets/rigil-tx-flow.svg)

Once a SUAPP has emitted the result of confidential computations, what happens? The next guide contains a more complete overview of [how data might flow if we replicate MEV-Share on SUAVE](/how-to/create-contracts/mev-share).
Once a SUAPP has emitted the result of confidential computations, what happens? The next guide contains a more complete overview of [how data might flow if we replicate MEV-Share on SUAVE](/how-to/create-contracts/ofa).

## Confidential compute

Expand Down

0 comments on commit 2fe70f3

Please sign in to comment.