Upgrade package version to 0.1.5 #29

Merged
nabarun merged 1 commits from ng-upgrade-version into main 2025-05-05 11:28:09 +00:00
2 changed files with 4 additions and 2 deletions

View File

@ -1,6 +1,6 @@
{
"name": "web-wallet",
"version": "0.1.4",
"version": "0.1.5",
"private": true,
"dependencies": {
"@cerc-io/registry-sdk": "^0.2.5",

View File

@ -46,10 +46,12 @@ const useGetOrCreateAccounts = () => {
}
const accountsData = await getOrCreateAccountsForChain(event.data.chainId);
const accountsAddressList = accountsData.map(account => account.address);
console.log('Sending WALLET_ACCOUNTS_DATA accounts:', accountsAddressList);
sendMessage(
event.source as Window, 'WALLET_ACCOUNTS_DATA',
accountsData.map(account => account.address),
accountsAddressList,
event.origin
);
};