I have a Node.js v24 application, and both of these calls hang indefinitely:
await walletClient.mutateEntities({
updates: [
{
attributes: attributes,
contentType: 'application/json',
entityKey: result.entities[0].key,
expiresIn: 60 * 60, // 1 hour
payload: encodeJsonEntity(lobby),
},
],
})
await walletClient.updateEntity({
attributes: attributes,
contentType: 'application/json',
entityKey: result.entities[0].key,
expiresIn: 60 * 60, // 1 hour
payload: encodeJsonEntity(lobby),
})
The entity update actually succeeds, and you can see the transaction/updated entity on the chain with the block explorer. The promise simply never resolves.
I have a Node.js v24 application, and both of these calls hang indefinitely:
The entity update actually succeeds, and you can see the transaction/updated entity on the chain with the block explorer. The promise simply never resolves.