Upgrade package version to 0.1.5 (#29)

Part of https://www.notion.so/Gentx-like-attestation-mechanism-to-add-validators-at-genesis-time-19da6b22d47280ecbf1fe657c241ff59

Reviewed-on: LaconicNetwork/laconic-wallet-web#29
Co-authored-by: Nabarun <nabarun@deepstacksoft.com>
Co-committed-by: Nabarun <nabarun@deepstacksoft.com>
This commit is contained in:
Nabarun 2025-05-05 11:28:08 +00:00 committed by nabarun
parent f47850ebfa
commit e24d697c6d
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
);
};