Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion apps/api/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
},
"devDependencies": {
"@types/express": "5.0.6",
"@types/node": "25.3.0",
"@types/node": "25.4.0",
"ts-node-dev": "2.0.0"
}
}
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,9 @@
"devDependencies": {
"@types/jest": "30.0.0",
"jest": "30.2.0",
"knip": "5.85.0",
"oxfmt": "0.35.0",
"oxlint": "1.50.0",
"knip": "5.86.0",
"oxfmt": "0.37.0",
"oxlint": "1.52.0",
"ts-jest": "29.4.5",
"typescript": "5.9.3"
},
Expand Down
1 change: 1 addition & 0 deletions packages/swapper/src/chain/evm/jsonrpc.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import { Chain } from "@gemwallet/types";

const DEFAULT_RPC_URLS: Partial<Record<string, string>> = {
[Chain.Base]: "https://mainnet.base.org",
[Chain.Manta]: "https://pacific-rpc.manta.network/http",
[Chain.Mantle]: "https://rpc.mantle.xyz",
[Chain.XLayer]: "https://rpc.xlayer.tech",
Expand Down
2 changes: 2 additions & 0 deletions packages/swapper/src/okx/constants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ import { Chain } from "@gemwallet/types";

export const CHAIN_INDEX: Record<string, string> = {
[Chain.Solana]: "501",
[Chain.Base]: "8453",
[Chain.Manta]: "169",
[Chain.Mantle]: "5000",
[Chain.XLayer]: "196",
Expand Down Expand Up @@ -31,6 +32,7 @@ export const SOLANA_NATIVE_TOKEN_ADDRESS = "11111111111111111111111111111111";
export const SOLANA_DEX_IDS_PARAM = SOLANA_DEX_IDS.join(",");
export const DEFAULT_SLIPPAGE_PERCENT = "1";
const EVM_GAS_LIMITS: Partial<Record<string, string>> = {
[Chain.Base]: "800000",
[Chain.Manta]: "600000",
[Chain.Mantle]: "2000000000",
[Chain.XLayer]: "800000",
Expand Down
Loading
Loading