Skip to content

Commit 1a73c1f

Browse files
Merge branch 'mainnet' into feat/record-scanning-and-arithmetic-in-js
2 parents 5396edd + b393c69 commit 1a73c1f

File tree

10 files changed

+21
-11
lines changed

10 files changed

+21
-11
lines changed

.github/workflows/website.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: Website
22
on:
33
push:
44
branches:
5-
- testnet3
5+
- mainnet
66

77
jobs:
88
deploy:

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ first zero-knowledge web app.
4040
Create-leo-app provides zero-knowledge web app examples in common web frameworks such as React. Developers looking to
4141
start with working examples should start here.
4242

43-
#### Source: [`sdk/create-leo-app`](https://github.com/ProvableHQ/sdk/tree/testnet3/create-leo-app)
43+
#### Source: [`sdk/create-leo-app`](https://github.com/ProvableHQ/sdk/tree/mainnet/create-leo-app)
4444

4545
## 3. Aleo Wasm - Zero-Knowledge Algorithms in JavaScript + WebAssembly
4646
<a href="https://www.npmjs.com/package/@provablehq/wasm"> <img alt="Create Leo App" src="https://img.shields.io/npm/l/%40provablehq%2Fwasm?label=NPM%20-%20Aleo%20Wasm&labelColor=green&color=blue"></a>
@@ -65,11 +65,11 @@ Source: [Aleo Wasm](https://www.npmjs.com/package/@provablehq/wasm)
6565
API Documentation, tutorials for the Aleo SDK, and documentation on how to build Leo and Aleo Instructions programs can
6666
be found on the [Leo Developer Docs](https://docs.leo-lang.org/sdk/typescript/overview) page.
6767

68-
#### [SDK Readme](https://github.com/ProvableHQ/sdk/tree/testnet3/sdk#readme)
68+
#### [SDK Readme](https://github.com/ProvableHQ/sdk/tree/mainnet/sdk#readme)
6969
The SDK readme provides concepts core to executing zero-knowledge programs in the web and several detailed examples of
7070
how to use the SDK to build web apps using Aleo.
7171

72-
#### [Aleo Wasm Readme](https://github.com/ProvableHQ/sdk/tree/testnet3/wasm#readme)
72+
#### [Aleo Wasm Readme](https://github.com/ProvableHQ/sdk/tree/mainnet/wasm#readme)
7373
The Aleo Wasm readme provides instructions for compiling the Aleo Wasm crate and using it in web projects. Those who
7474
want to build from source or create their own WebAssembly bindings should start here.
7575

create-leo-app/template-react-leo/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# React + Aleo + Leo
22

3-
[![Open in StackBlitz](https://developer.stackblitz.com/img/open_in_stackblitz.svg)](https://stackblitz.com/fork/github/ProvableHQ/sdk/tree/testnet3/create-leo-app/template-react-leo)
3+
[![Open in StackBlitz](https://developer.stackblitz.com/img/open_in_stackblitz.svg)](https://stackblitz.com/fork/github/ProvableHQ/sdk/tree/mainnet/create-leo-app/template-react-leo)
44

55
This template provides a minimal setup to get React and Aleo working in Vite
66
with HMR and some ESLint rules.

create-leo-app/template-react-ts/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# React + Aleo + Leo
22

3-
[![Open in StackBlitz](https://developer.stackblitz.com/img/open_in_stackblitz.svg)](https://stackblitz.com/fork/github/ProvableHQ/sdk/tree/testnet3/create-leo-app/template-react)
3+
[![Open in StackBlitz](https://developer.stackblitz.com/img/open_in_stackblitz.svg)](https://stackblitz.com/fork/github/ProvableHQ/sdk/tree/mainnet/create-leo-app/template-react)
44

55
This template provides a minimal setup to get React and Aleo working in Vite
66
with HMR and some ESLint rules.

sdk/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ In your project's `package.json`, ensure that the following line is added above
9090

9191
### Create Leo App
9292
A set of fully functional examples of zero-knowledge web apps can be found in
93-
[create-leo-app](https://github.com/ProvableHQ/sdk/tree/testnet3/create-leo-app). Create Leo App provides several web app
93+
[create-leo-app](https://github.com/ProvableHQ/sdk/tree/mainnet/create-leo-app). Create Leo App provides several web app
9494
templates in common web frameworks such as React that can be used as a starting point for building zero-knowledge web apps.
9595

9696
Developers can get started immediately with create-leo-app by running:
@@ -100,7 +100,7 @@ Developers can get started immediately with create-leo-app by running:
100100

101101
Additionally, the SDK powers [provable.tools](https://provable.tools) - a React app that provides a graphical interface for most
102102
of the functionality provided by the SDK and can be used as a reference for usage of the SDK. Source code for provable.tools
103-
can be found [in the SDK repo here](https://github.com/ProvableHQ/sdk/tree/testnet3/website).
103+
can be found [in the SDK repo here](https://github.com/ProvableHQ/sdk/tree/mainnet/website).
104104

105105
## Usage
106106

@@ -421,7 +421,7 @@ Program execution is a computationally-expensive process. For this reason, it is
421421
web workers. Create-Leo-App will automatically create a web worker for you that performs the execution called `worker.js`.
422422

423423

424-
A full example of this implementation can be found [here](https://github.com/ProvableHQ/sdk/tree/testnet3/create-leo-app/template-vanilla)
424+
A full example of this implementation can be found [here](https://github.com/ProvableHQ/sdk/tree/mainnet/create-leo-app/template-vanilla)
425425

426426
## 3. Aleo Credit Transfers
427427

website/public/favicon.ico

-3.25 KB
Binary file not shown.
-29.6 KB
Binary file not shown.
Lines changed: 5 additions & 0 deletions
Loading
Lines changed: 5 additions & 0 deletions
Loading

website/src/pages/Homepage.jsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ const Homepage = () => {
88
<div className="homepage">
99
<Link to="https://provable.com/">
1010
<img
11-
src="../public/primary-wordmark-dark.png"
11+
src="../public/provable-logo-light.svg"
1212
className="logo"
1313
></img>
1414
</Link>
@@ -82,7 +82,7 @@ const Homepage = () => {
8282
<Link to="/privacy_policy" style={{ color: "white", textDecoration: "none"}}>
8383
<span>Privacy Policy</span>
8484
</Link>
85-
© 2024 Provable Inc.
85+
© 2025 Provable Inc.
8686
</div>
8787
</div>
8888
</div>

0 commit comments

Comments
 (0)