Skip to content

Commit

Permalink
chore: bump packages
Browse files Browse the repository at this point in the history
  • Loading branch information
chybisov committed Jul 15, 2024
1 parent 90c23da commit bc04d1b
Show file tree
Hide file tree
Showing 4 changed files with 394 additions and 404 deletions.
20 changes: 10 additions & 10 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -94,35 +94,35 @@
]
},
"dependencies": {
"@lifi/types": "^13.17.0",
"@lifi/types": "^13.18.0",
"@solana/wallet-adapter-base": "^0.9.23",
"@solana/web3.js": "^1.93.2",
"@solana/web3.js": "^1.95.0",
"eth-rpc-errors": "^4.0.3",
"viem": "^2.16.2"
"viem": "^2.17.4"
},
"devDependencies": {
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"@types/fs-extra": "^11.0.4",
"@types/ws": "^8.5.10",
"@typescript-eslint/eslint-plugin": "^7.14.1",
"@typescript-eslint/parser": "^7.14.1",
"@types/ws": "^8.5.11",
"@typescript-eslint/eslint-plugin": "^7.16.0",
"@typescript-eslint/parser": "^7.16.0",
"@vitest/coverage-v8": "^1.6.0",
"bs58": "^5.0.0",
"bs58": "^6.0.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jsdoc": "^48.5.0",
"eslint-plugin-jsdoc": "^48.7.0",
"eslint-plugin-prettier": "^5.1.3",
"fs-extra": "^11.2.0",
"husky": "^9.0.11",
"lint-staged": "^15.2.7",
"madge": "^7.0.0",
"msw": "^2.3.1",
"pinst": "^3.0.0",
"prettier": "^3.3.2",
"prettier": "^3.3.3",
"standard-version": "^9.5.0",
"ts-node": "^10.9.2",
"typescript": "^5.5.2",
"typescript": "^5.5.3",
"vitest": "^1.6.0"
},
"peerDependencies": {
Expand Down
8 changes: 4 additions & 4 deletions src/core/EVM/getEVMBalance.int.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -116,13 +116,13 @@ describe('getBalances integration tests', () => {
async () => {
const walletAddress = defaultWalletAddress
const { tokens } = await getTokens({
chains: [ChainId.ETH],
chains: [ChainId.OPT],
})
expect(tokens[ChainId.ETH]?.length).toBeGreaterThan(100)
if (tokens[ChainId.ETH]?.length) {
expect(tokens[ChainId.OPT]?.length).toBeGreaterThan(100)
if (tokens[ChainId.OPT]?.length) {
await loadAndCompareTokenAmounts(
walletAddress,
tokens[ChainId.ETH].slice(0, 150)
tokens[ChainId.OPT].slice(0, 150)
) // chunk limit is 100
}
},
Expand Down
2 changes: 1 addition & 1 deletion src/core/Solana/KeypairWalletAdapter.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ import type {
VersionedTransaction,
} from '@solana/web3.js'
import { Keypair } from '@solana/web3.js'
import * as bs58 from 'bs58'
import bs58 from 'bs58'

export const KeypairWalletName =
'Keypair Wallet' as WalletName<'Keypair Wallet'>
Expand Down
Loading

0 comments on commit bc04d1b

Please sign in to comment.