@provablehq/sdk 0.6.9 → 0.6.11
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +200 -432
- package/dist/index.js +2 -2
- package/dist/index.js.map +1 -1
- package/dist/program-manager.d.ts +1 -1
- package/dist/worker.d.ts +1 -1
- package/dist/worker.js +2 -2
- package/dist/worker.js.map +1 -1
- package/package.json +3 -3
package/dist/index.js
CHANGED
|
@@ -232,7 +232,7 @@ class AleoNetworkClient {
|
|
|
232
232
|
else {
|
|
233
233
|
this.headers = {
|
|
234
234
|
// This is replaced by the actual version by a Rollup plugin
|
|
235
|
-
"X-Aleo-SDK-Version": "0.6.
|
|
235
|
+
"X-Aleo-SDK-Version": "0.6.10",
|
|
236
236
|
};
|
|
237
237
|
}
|
|
238
238
|
}
|
|
@@ -2200,7 +2200,7 @@ class ProgramManager {
|
|
|
2200
2200
|
* programManager.setAccount(account);
|
|
2201
2201
|
*
|
|
2202
2202
|
* /// Get the response and ensure that the program executed correctly
|
|
2203
|
-
* const executionResponse = await programManager.
|
|
2203
|
+
* const executionResponse = await programManager.run(program, "hello", ["5u32", "5u32"]);
|
|
2204
2204
|
* const result = executionResponse.getOutputs();
|
|
2205
2205
|
* assert(result === ["10u32"]);
|
|
2206
2206
|
*/
|