Skip to content

Commit

Permalink
fix: fixed types for wallet in reservoir module
Browse files Browse the repository at this point in the history
  • Loading branch information
mishuagopian committed Feb 23, 2024
1 parent 51003d1 commit 9db5e89
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion src/reservoir/Reservoir.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,8 @@ import {
} from 'viem';
import { mainnet } from 'viem/chains';

import { Wallet, zeroHash } from '@/blockchain';
import { zeroHash } from '@/blockchain';
import { Wallet } from '@/contracts';
import { CryptoPunks } from '@/contracts/CryptoPunks';
import { Seaport } from '@/contracts/Seaport';
import { getApiKeys, getContracts, getCurrencies } from '@/deploys';
Expand Down
2 changes: 1 addition & 1 deletion src/reservoir/utils.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { adaptViemWallet } from '@reservoir0x/reservoir-sdk';
import { Address, decodeFunctionData, Hash, zeroAddress } from 'viem';

import { Wallet } from '@/blockchain';
import { Wallet } from '@/contracts';
import { MSL_V5_TX_HASH } from '@/deploys';
import {
InterruptedCryptoPunksSendTransactionStepError,
Expand Down

0 comments on commit 9db5e89

Please sign in to comment.