Skip to content

Commit

Permalink
fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
svenvoskamp committed Dec 13, 2024
1 parent 6cdca11 commit c024f9e
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 10 deletions.
6 changes: 3 additions & 3 deletions packages/adapters/ethers/src/tests/client.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -182,11 +182,11 @@ describe('EthersAdapter', () => {
method: 'transfer',
caipAddress: 'eip155:1:0x123',
fromAddress: '0x123',
receiverAddress: '0x456',
tokenAmount: BigInt(1000),
args: ['0x789', BigInt(1000)],
tokenAddress: '0x789',
provider: mockProvider,
caipNetwork: mockCaipNetworks[0]
caipNetwork: mockCaipNetworks[0],
chainNamespace: 'eip155'
})

expect(result.hash).toBe(mockTxHash)
Expand Down
6 changes: 3 additions & 3 deletions packages/adapters/ethers5/src/tests/client.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -174,11 +174,11 @@ describe('Ethers5Adapter', () => {
method: 'transfer',
caipAddress: 'eip155:1:0x123',
fromAddress: '0x123',
receiverAddress: '0x456',
tokenAmount: BigInt(1000),
args: ['0x789', BigInt(1000)],
tokenAddress: '0x789',
provider: mockProvider,
caipNetwork: mockCaipNetworks[0]
caipNetwork: mockCaipNetworks[0],
chainNamespace: 'eip155'
})

expect(result.hash).toBe(mockTxHash)
Expand Down
6 changes: 3 additions & 3 deletions packages/adapters/wagmi/src/tests/client.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -189,10 +189,10 @@ describe('WagmiAdapter', () => {
caipAddress: 'eip155:1:0x123',
tokenAddress: '0x123',
fromAddress: '0x456',
receiverAddress: '0x789',
tokenAmount: BigInt(1000),
args: ['0x789', BigInt(1000)],
abi: [],
method: 'transfer'
method: 'transfer',
chainNamespace: 'eip155'
})

expect(result.hash).toBe(mockTxHash)
Expand Down
2 changes: 1 addition & 1 deletion packages/core/src/controllers/SwapController.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import { ConnectionController } from './ConnectionController.js'
import { SwapApiUtil } from '../utils/SwapApiUtil.js'
import { SnackController } from './SnackController.js'
import { RouterController } from './RouterController.js'
import { ContractUtil, NumberUtil } from '@reown/appkit-common'
import { NumberUtil } from '@reown/appkit-common'
import type { SwapTokenWithBalance } from '../utils/TypeUtil.js'
import { CoreHelperUtil } from '../utils/CoreHelperUtil.js'
import { BlockchainApiController } from './BlockchainApiController.js'
Expand Down

0 comments on commit c024f9e

Please sign in to comment.