Readings on how to create a Connector. #8827
-
Hey all, I'm new to the hyperswitch and trying to learn how can create my own wallet connector. Even if I'm trying to run the source code in a docker container, the main thread exit saying some config error. So can anyone help me through by providing some resources that can help me to debug this or assist me on how to set my own connector and list that on the site. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 3 replies
-
Hi @rudreshkoranne ! You can find it here: https://github.com/juspay/hyperswitch/blob/0f70fc51/config/deployments/production.toml#L130 Also, when you create a connector, please don't use an When you create the connector, don't be alarmed when there are test errors or a grpc error, I'm working with the team to fix it. |
Beta Was this translation helpful? Give feedback.
Hi @rudreshkoranne !
I can help here. The base URI for stripe is this:
stripe.base_url = "https://api.stripe.com/"
You can find it here: https://github.com/juspay/hyperswitch/blob/0f70fc51/config/deployments/production.toml#L130
Also, when you create a connector, please don't use an
_
; keep it one word for now. There's a bug in the script (I'll fix it later). Try:testConnector
for camelCase.When you create the connector, don't be alarmed when there are test errors or a grpc error, I'm working with the team to fix it.