routing-api
routing-api copied to clipboard
Error query parameters not found
Hey Uniswap Team,
I was trying to make the necessary changes to get the routing api server work for our chain, hence i needed a local environment, some searching showed, aws sam could be used to test it out locally, so i did cdk synth
, gave the template files for different region out into sam build <path to one of the region template file>
,
and used the command sam local start-lambda
to run the api server
issue is am trying to run the curl command given in the readme.md of the repo :
"curl --request GET '<INSERT_YOUR_URL_HERE>/quote?tokenInAddress=0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2&tokenInChainId=1&tokenOutAddress=0x1f9840a85d5af5bf1d1762f925bdaddc4201f984&tokenOutChainId=1&amount=100&type=exactIn'
" but i seem to be getting the error, query parameters are not supported is it because aws sam cannot be used to deploy the routing api locally or the readme.md is outdated and the api has been changed into a post?