Skip to content

Commit

Permalink
docs: fix docstring example
Browse files Browse the repository at this point in the history
  • Loading branch information
graykode committed Apr 5, 2024
1 parent 40f3477 commit a3c325e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/signature.ts
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ const _abi = [
* import { signERC20Permit } from '@clober-dex/v2-sdk'
* import { privateKeyToAccount } from 'viem/accounts'
*
* const { deadline, r, s, v } = await getExpectedOutput(
* const { deadline, r, s, v } = await signERC20Permit(
* 421614,
* privateKeyToAccount('0x...')
* '0x00bfd44e79fb7f6dd5887a9426c8ef85a0cd23e0',
Expand All @@ -89,7 +89,7 @@ const _abi = [
* import { signERC20Permit } from '@clober-dex/v2-sdk'
* import { mnemonicToAccount } from 'viem/accounts'
*
* const { deadline, r, s, v } = await getExpectedOutput(
* const { deadline, r, s, v } = await signERC20Permit(
* 421614,
* mnemonicToAccount('legal ...')
* '0x00bfd44e79fb7f6dd5887a9426c8ef85a0cd23e0',
Expand Down

0 comments on commit a3c325e

Please sign in to comment.