Skip to content

Commit

Permalink
style: lint fix
Browse files Browse the repository at this point in the history
  • Loading branch information
zoli committed Feb 11, 2025
1 parent 10dc05f commit 1d83294
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion typescript/packages/plugins/mayan/src/mayan.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -225,7 +225,9 @@ export class MayanService {
const deadline = Math.floor(Date.now() / 1000) + 3600; // 1 hour from now
const spender = addresses.MAYAN_FORWARDER_CONTRACT;
const walletSrcAddr = walletClient.getAddress();
const nonce = await this.callERC20(walletClient, quote.fromToken.contract, "nonces", [walletSrcAddr]) as bigint;
const nonce = (await this.callERC20(walletClient, quote.fromToken.contract, "nonces", [
walletSrcAddr,
])) as bigint;
const name = (await this.callERC20(walletClient, quote.fromToken.contract, "name")) as string;

const domain: TypedDataDomain = {
Expand Down

0 comments on commit 1d83294

Please sign in to comment.