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
Dart Web doesn't support Uint64List, and some packages rely in this data structure, we must remove Uint64List references otherwise polkadart_scale_codec cannot be used on the web. Change all ocurrences to lists of BigInt.
Thank you for this lovely lib! We consider using it for Karma Coin mobile app. Can you guys please confirm that supporting web apps is on the project short-term intention to support web apps and fix this issue?
@avive yes! the plan is fully support all platforms supported by flutter, currently the only blocker for web is this issue here, which will be fixed shortly.
Context
Dart Web doesn't support
Uint64List
, and some packages rely in this data structure, we must remove Uint64List references otherwisepolkadart_scale_codec
cannot be used on the web. Change all ocurrences to lists of BigInt.Uint64List
does NOT use js'BigUint64Array
, instead of throwing "Uint64List not supported on the web
" dart-lang/sdk#50332Acceptance Criteria
Uint64List
andInt64List
support fromu64
andi64
codecs.polkadart_cli
for not useU64Sequence
,I64Sequence
,U64Array
andI64Array
codecs.The text was updated successfully, but these errors were encountered: