DFST
DFST
The following code written in accordance with comments in https://github.com/o1-labs/o1js/blob/main/src/lib/provable-types/packed.ts#L33 ```typescript import { describe, expect, it } from "@jest/globals"; import { Field, Bool, Packed } from "o1js"; describe("Packed", () =>...
When @method accesses one token Account(address, tokenId), everything works as expected. When trying to access two token accounts, the following error appears while proving: ``` ● MinaNFT contract › should...
On Berkeley testnet, calling ```typescript let actions = await Mina.fetchActions(publicKey, { fromActionState: startActionsState, endActionState: endActionState, }); ``` returns an empty list when endActionState is not undefined. It works as expected...
On the Berkeley testnet, the reducer throws the error in the reducer that uses the maxTransactionsWithActions option, and the number of actions is higher than maxTransactionsWithActions: ``` 2024-02-11T08:48:10.957Z bdfc6b29-a88d-4ea7-86b0-632db71711d9 INFO...
During the last day, all Berkeley testnet graphql endpoints were unstable, that was leading to many o1js errors when fetching the accounts or blocks. Although there is timeout for makeGraphqlRequest...
Memory becomes critically low when calculating many proofs, leading to o1js silently freezing during proof calculation after 100-200 proof calculations. My tests show that adding `await sleep(100)` before every proof...
I have seen many times errors while compiling different contracts in the same worker: ``` Error in task TypeError: workersReadyResolve is not a function at startWorkers (o1js/dist/node/index.cjs:3741:3) at async initThreadPool...
On mainnet, both zkApp.fetchEvents() and fetchEvents({ publicKey: contractAddress }) work. On devnet, fetchEvents({ publicKey: contractAddress }) work, while zkApp.fetchEvents() throws Gateway Time-out error. The code to reproduce: ```typescript import {...
When building the SmartContract deploy transaction without calling `compile()`, o1js refuses to build, asking for the verification key to be present. In frontend, it does not make sense to compile...
Discussion in discord: https://discord.com/channels/484437221055922177/1275913380284203009 Edit Florian: V2 branch