Skip to content

Commit aca8bcc

Browse files
committed
added debug logging
1 parent 37f6ef2 commit aca8bcc

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

src/connections/monad_connection.py

+6-1
Original file line numberDiff line numberDiff line change
@@ -345,8 +345,13 @@ def _get_swap_quote(
345345
"gasPrice": str(Web3.to_wei(MONAD_BASE_GAS_PRICE, 'gwei'))
346346
}
347347

348+
url = f"{ZERO_EX_API_URL}/permit2/quote"
349+
350+
logger.debug(headers)
351+
logger.debug(params)
352+
logger.debug(url)
348353
response = requests.get(
349-
f"{ZERO_EX_API_URL}/permit2/quote",
354+
url,
350355
headers=headers,
351356
params=params
352357
)

0 commit comments

Comments
 (0)