Skip to content

Commit 6984440

Browse files
Merge branch 'mainnet' into feat/integer-types
Signed-off-by: Christian W <[email protected]>
2 parents ddf300d + 7cd9403 commit 6984440

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

76 files changed

+2481
-504
lines changed

.circleci/config.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,13 @@ version: 2.1
22

33

44
orbs:
5-
node: circleci/node@7.0.0
5+
node: circleci/node@7.1.0
66

77

88
executors:
99
rust-node:
1010
docker:
11-
- image: cimg/rust:1.80-node
11+
- image: cimg/rust:1.88-node
1212

1313

1414
commands:

create-leo-app/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "create-leo-app",
3-
"version": "0.9.3",
3+
"version": "0.9.4",
44
"type": "module",
55
"license": "GPL-3.0",
66
"collaborators": [

create-leo-app/template-extension/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
"build": "rimraf static/js && rollup --config"
88
},
99
"devDependencies": {
10-
"@provablehq/sdk": "^0.9.3",
10+
"@provablehq/sdk": "^0.9.4",
1111
"@web/rollup-plugin-import-meta-assets": "^2.2.1",
1212
"rimraf": "^6.0.1",
1313
"rollup": "^4.32.0"

create-leo-app/template-nextjs-ts/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
"lint": "next lint"
1010
},
1111
"dependencies": {
12-
"@provablehq/sdk": "^0.9.3",
12+
"@provablehq/sdk": "^0.9.4",
1313
"next": "15.2.3",
1414
"react": "^19.0.0",
1515
"react-dom": "^19.0.0",

create-leo-app/template-node-ts/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
"dev": "npm run build && node dist/index.js"
99
},
1010
"dependencies": {
11-
"@provablehq/sdk": "^0.9.3"
11+
"@provablehq/sdk": "^0.9.4"
1212
},
1313
"devDependencies": {
1414
"rimraf": "^6.0.1",

create-leo-app/template-node-ts/src/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ async function localProgramExecution(program, programName, aleoFunction, inputs)
5252
console.log("hello_hello/hello executed - result:", executionResponse.getOutputs());
5353

5454
// Verify the execution using the verifying key that was generated earlier.
55-
if (programManager.verifyExecution(executionResponse)) {
55+
if (programManager.verifyExecution(executionResponse, 9_000_000)) {
5656
console.log("hello_hello/hello execution verified!");
5757
} else {
5858
throw("Execution failed verification!");

create-leo-app/template-node/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ async function localProgramExecution(program, programName, aleoFunction, inputs)
4646
console.log("hello_hello/hello executed - result:", executionResponse.getOutputs());
4747

4848
// Verify the execution using the verifying key that was generated earlier.
49-
if (programManager.verifyExecution(executionResponse)) {
49+
if (programManager.verifyExecution(executionResponse, 9_000_000)) {
5050
console.log("hello_hello/hello execution verified!");
5151
} else {
5252
throw("Execution failed verification!");

create-leo-app/template-node/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,6 @@
77
"dev": "node index.js"
88
},
99
"dependencies": {
10-
"@provablehq/sdk": "^0.9.3"
10+
"@provablehq/sdk": "^0.9.4"
1111
}
1212
}

create-leo-app/template-offline-public-transaction-ts/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
"dev": "npm run build && node dist/index.js"
99
},
1010
"dependencies": {
11-
"@provablehq/sdk": "^0.9.3"
11+
"@provablehq/sdk": "^0.9.4"
1212
},
1313
"devDependencies": {
1414
"rimraf": "^6.0.1",

create-leo-app/template-react-leo/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
"install-leo": "./install.sh"
1313
},
1414
"dependencies": {
15-
"@provablehq/sdk": "^0.9.3",
15+
"@provablehq/sdk": "^0.9.4",
1616
"comlink": "^4.4.2",
1717
"react": "^19.0.0",
1818
"react-dom": "^19.0.0"

0 commit comments

Comments
 (0)