im just wondering if its redundant
im just wondering if its redundant

this.env.REMOTE_DO.getByName('remote-instance-name').get_cf_KV(). If you are going to call the remote DO more times, I recommend that you two-step it and put the the remote DO stub in a variable. So:
.wrangler directory, or find the specific DO namespace folder and delete itconst x = this.ctx.storage.kv.get(”x”); // no awaitWhat I haven't heard is that I'm wrong and it's not as easy as I think, but I do wonder if that's true.I said this multiple times
idFromName from within the DO?{ name : undefined }?DurableObjectId, which is used both on the caller side of the RPC and inside the DO. In the caller side the .name will be populated correctly. The fact it's not populated inside the DO is a long-term known bug.this.env.REMOTE_DO.getByName('remote-instance-name').get_cf_KV()const remoteStub = this.env.REMOTE_DO.getByName('remote-instance-name');
const remote_cf_KV = remoteStub.get_cf_KV();const remoteId = this.env.REMOTE_DO.getIdFromString('23abc...'); // 64 byte opaque hex
const remoteStub = this.env.REMOTE_DO.get(remoteId);
const remote_cf_KV = remoteStub.get_cf_KV();.wranglerconst x = this.ctx.storage.kv.get(”x”); // no awaitidFromNamectx: DurableObjectState { ...,
id: DurableObjectId { name: undefined }
}{ name : undefined }DurableObjectId.name