-
I'm fetching an array of objects using an API client generated by the Typechain library which returns objects of this form: export type FooStructOutput = [
BigNumber,
string,
] & { id: BigNumber; name: string }; The inital call to A second call that returns the cached data returns an array with items that do not have the I've also tried querying the cache directly using Is there any config setting or alternative cache that might support this data type? Thanks. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
I think you'd need to turn off |
Beta Was this translation helpful? Give feedback.
I think you'd need to turn off
structuralSharing
, as this requires JSON compatible structures. Additionally, you could provide your ownisDataEqual
method