We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c0c16a8 commit 9fdf793Copy full SHA for 9fdf793
packages/wallets/src/evm/connectors/smart-wallet/lib/erc4337-signer.ts
@@ -160,8 +160,10 @@ Code: ${errorCode}`;
160
await tx.wait();
161
}
162
163
- const chainId = await this.getChainId();
164
- const address = await this.getAddress();
+ const [chainId, address] = await Promise.all([
+ this.getChainId(),
165
+ this.getAddress(),
166
+ ]);
167
const originalMsgHash = utils.hashMessage(message);
168
169
let factorySupports712: boolean;
0 commit comments