Skip to content

Commit

Permalink
fix(v3-sdk): fix v3 permit domain separator (#167)
Browse files Browse the repository at this point in the history
  • Loading branch information
hensha256 authored Oct 10, 2024
1 parent c07d56c commit fb1f110
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions sdks/v3-sdk/src/nonfungiblePositionManager.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -392,6 +392,7 @@ describe('NonfungiblePositionManager', () => {
expect(domain).toEqual({
name: 'Uniswap V3 Positions NFT-V1',
chainId: 1,
version: '1',
verifyingContract: mockPositionManager,
})
expect(types).toEqual({
Expand Down
1 change: 1 addition & 0 deletions sdks/v3-sdk/src/nonfungiblePositionManager.ts
Original file line number Diff line number Diff line change
Expand Up @@ -465,6 +465,7 @@ export abstract class NonfungiblePositionManager {
domain: {
name: 'Uniswap V3 Positions NFT-V1',
chainId,
version: '1',
verifyingContract: positionManagerAddress,
},
types: NFT_PERMIT_TYPES,
Expand Down

0 comments on commit fb1f110

Please sign in to comment.