acheron

Results 202 comments of acheron

By "having a known error type" I mean having Anchor's `Error` type when using Anchor's `Result` type.

There are a few more bytes allocated to the stack for the bumps so it could cause problems if your instruction in `0.26` was on the edge of maxing out...

Do you have an example instruction that go over the limit compared to previous Anchor version? I can't think of anything else other than the bump change which would add...

Thank you for sharing. I think you should be able to fix this by removing the `rent` account and using: ```rs let rent = Rent::get()?; ``` > I'm changing the...

> I changed my big accounts to use zero copy, but it still is exceeding the stack, now by only 136 bytes. I think something is off here because there...

We put program id in the IDL after the deploy step and you can access it via `program.idl.metadata.address`, though I agree we should make this easier and more intuitive.

> the property gets removed when you run `anchor build` Yeah, I think this is a problem because we only add the `metadata.address` field after `anchor deploy`. What would you...

The IDL spec now requires `address` field, so there is no longer a need to export the program id. Added in https://github.com/coral-xyz/anchor/pull/2824.

> it can be tricky to read the JSON file using frontend tooling Please explain why it is tricky to read **J**ava**S**cript **O**bject **N**otation using frontend tooling when the language...