I am trying to use `py_builder_relayer_client` to have gasless order placement. However, after I enter my credentials correctly and run the following code , it returns me an error: `TypeError: RelayClient.__init__() got an unexpected keyword argument 'host'` import os
from py_builder_relayer_client.client import RelayClient
client = RelayClient(
host="https://relayer-v2.polymarket.com",
chain=137,
signer=os.getenv("PRIVATE_KEY"),
relayer_api_key=os.environ["RELAYER_API_KEY"],
relayer_api_key_address=os.environ["RELAYER_API_KEY_ADDRESS"],
)
I am trying to use `py_builder_relayer_client` to have gasless order placement. However, after I enter my credentials correctly and run the following code , it returns me an error: `TypeError: RelayClient.__init__() got an unexpected keyword argument 'host'` import os
from py_builder_relayer_client.client import RelayClient
client = RelayClient(
host="https://relayer-v2.polymarket.com",
chain=137,
signer=os.getenv("PRIVATE_KEY"),
relayer_api_key=os.environ["RELAYER_API_KEY"],
relayer_api_key_address=os.environ["RELAYER_API_KEY_ADDRESS"],
)
Is the host URL wrong? host="https://relayer-v2.polymarket.com/",
Is the host URL wrong? host="https://relayer-v2.polymarket.com/",
what do you do to solve the error?
what do you do to solve the error?
You cannot solve the error its currently being blocked by polymarket.
You cannot solve the error its currently being blocked by polymarket.
what do you mean "blocked" ?
what do you mean "blocked" ?
No
No
Polymarket is not allowing trading this way anymore, all builds have been broken until they decide to open up the API its that simple. You can spend a million tokens trying to crack this but this function is blocked from their side so you will not be able to sign the CLOB.
Polymarket is not allowing trading this way anymore, all builds have been broken until they decide to open up the API its that simple. You can spend a million tokens trying to crack this but this function is blocked from their side so you will not be able to sign the CLOB.
then how can I use `py-clob-client-v2` to have gasless order placement? Or it is gasless already?
then how can I use `py-clob-client-v2` to have gasless order placement? Or it is gasless already?