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
The problem comes from the fact that the TypeIDDecoder for EVMLocation is registered in flow-go.
Since neither flow-go-sdk nor cadence import the flow-go repository, the TypeIDDecoder never gets registered. This results in the decoding error mentioned above.
By importing the flow-go relevant package, the retrieval of events works. But users may not always use the flow-go-sdk in combination with flow-go.
Acceptance Criteria
Flow EVM events can be fetched with flow-go-sdk.
The text was updated successfully, but these errors were encountered:
Problem
Unable to retrieve Flow EVM events due to CCF decoding error:
Steps to Reproduce
The problem comes from the fact that the
TypeIDDecoder
forEVMLocation
is registered in flow-go.Since neither
flow-go-sdk
norcadence
import theflow-go
repository, theTypeIDDecoder
never gets registered. This results in the decoding error mentioned above.By importing the
flow-go
relevant package, the retrieval of events works. But users may not always use theflow-go-sdk
in combination withflow-go
.Acceptance Criteria
Flow EVM events can be fetched with
flow-go-sdk
.The text was updated successfully, but these errors were encountered: