And second question, is js transactions for d1 a planned feature that is on the pipeline or is durab
And second question, is js transactions for d1 a planned feature that is on the pipeline or is durable objects the way to do transactions
[mf:err] TypeError: head is not a functionwrangler dev then opening localhost, this is the error

npm i cf-workers-proxy. There are no other projects in the npm registry using cf-workers-proxy.
no such table error. wrangler d1 info shows table count correctly. Any ideas what I'm doing wrong?wrangler dev --remote works, so I'm guessing that this is related to local env.
Do not know how to serialize a BigInttest test[mf:err] TypeError: head is not a functionnpm i cf-workers-proxyno such tablewrangler d1 infowrangler dev --remoteDo not know how to serialize a BigInt[[d1_databases]]
binding = "DB"
database_name = "<DATABASE_NAME>"
database_id = "<unique-ID-for-your-database>" const value = 0;
let d1Response: any;
await this.state.storage.transaction(async (txn) => {
try {
txn.put('value', this.value);
const stmt = this.db
.prepare(`INSERT INTO items (itemData) VALUES (?) RETURNING *`)
.bind(JSON.stringify({ value }));
d1Response = await stmt.all();
} catch (e) {
console.error(e);
txn.rollback();
throw e;
}
});