Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

fix: make account info reading backward-compatibile #249

Merged
merged 1 commit into from
Apr 4, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,14 @@ class AccountPublicInfoSerializer {
static const _publicAddressKey = 'public_address';
static const _accountIdKey = 'account_Id';
static const _additionalDataKey = 'additional_data';
static const _walletIdKey = 'wallet_Id';

static AccountPublicInfo fromMap(Map<String, dynamic> map) {
return AccountPublicInfo(
name: map[_nameKey] as String,
publicAddress: map[_publicAddressKey] as String,
accountId: map[_accountIdKey] as String,
chainId: map[_chainIdKey] as String,
name: map[_nameKey] as String? ?? '',
publicAddress: map[_publicAddressKey] as String? ?? '',
accountId: map[_accountIdKey] as String? ?? map[_walletIdKey] as String? ?? '',
chainId: map[_chainIdKey] as String? ?? '',
additionalData: map[_additionalDataKey] as String?,
);
}
Expand Down