You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
gnd: Cast fixed-size address arrays to Bytes[] in scaffold
A non-indexed `address[N]` resolves to `FixedArray(Address, N)` and now maps
to a `[Bytes!]` schema field, but the mapping left `entity.x = event.params.x`
uncast, assigning `Array<Address>` to a `Bytes[]` field and failing the build.
Match `FixedArray(Address, _)` alongside `Array(Address)` so the `changetype`
covers both. Safe because an indexed address array is already reduced to a
`bytes32` hash leaf before it reaches this cast.
0 commit comments