From 66847f3da7bd527816ceeb3b09cb5fde56c06a58 Mon Sep 17 00:00:00 2001 From: gaonip Date: Tue, 26 Aug 2025 15:53:15 +0800 Subject: [PATCH 1/2] add allow unsafe warning --- .../interaction/integration/integration-onboarding.mdx | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/vocs-docs/docs/pages/interaction/integration/integration-onboarding.mdx b/vocs-docs/docs/pages/interaction/integration/integration-onboarding.mdx index 03a110d1b..f68409825 100644 --- a/vocs-docs/docs/pages/interaction/integration/integration-onboarding.mdx +++ b/vocs-docs/docs/pages/interaction/integration/integration-onboarding.mdx @@ -45,6 +45,11 @@ Subaccounts 128 to 128,000 are child subaccounts and are isolated margin. Child ## Deposits and Withdrawals +::::note +Skip has an `allow_unsafe` parameter, which is set to False by default. It is recommeneded to keep it to False and **NOT** recommended to be set to True, as it can lead +to bad trade execution for users, see more on Skip go best practises [here](https://docs.skip.build/go/advanced-swapping/allow_unsafe-preventing-handling-bad-execution) and [here](https://docs.skip.build/go/advanced-swapping/safe-swapping-how-to-protect-users-from-harming-themselves). +:::: + ### Deposits Deposits are in three steps. @@ -102,6 +107,7 @@ curl 'https://api.skip.build/v2/fungible/route' \ Here `ibc/8E27BA2D5493AF5636760E354E46004562C46AB7EC0CC4C1CA14E9E20E2545B5` is the USDC denom of the dYdX Chain. + ### Set Bridge option Set the [bridges](https://docs.skip.build/go/api-reference/prod/fungible/post-v2fungibleroute#body-bridges) option to include `“CCTP”`, `“GO_FAST”`, `“IBC”`, and `“AXELAR”`. You can also set the [go_fast](https://docs.skip.build/go/api-reference/prod/fungible/post-v2fungibleroute#body-go-fast) to `true` for selected chains/and tokens (see [here](https://docs.skip.build/go/advanced-transfer/go-fast)), which would return a route that can be completed within 10 seconds. From 9872f6c5b7db25e68c51c4ab70cacd4c174a68f6 Mon Sep 17 00:00:00 2001 From: gaonip Date: Tue, 26 Aug 2025 15:55:20 +0800 Subject: [PATCH 2/2] Update vocs-docs/docs/pages/interaction/integration/integration-onboarding.mdx Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> --- .../pages/interaction/integration/integration-onboarding.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vocs-docs/docs/pages/interaction/integration/integration-onboarding.mdx b/vocs-docs/docs/pages/interaction/integration/integration-onboarding.mdx index f68409825..e2d308621 100644 --- a/vocs-docs/docs/pages/interaction/integration/integration-onboarding.mdx +++ b/vocs-docs/docs/pages/interaction/integration/integration-onboarding.mdx @@ -46,7 +46,7 @@ Subaccounts 128 to 128,000 are child subaccounts and are isolated margin. Child ## Deposits and Withdrawals ::::note -Skip has an `allow_unsafe` parameter, which is set to False by default. It is recommeneded to keep it to False and **NOT** recommended to be set to True, as it can lead +Skip has an `allow_unsafe` parameter, which is set to False by default. It is recommended to keep it to False and **NOT** recommended to be set to True, as it can lead to bad trade execution for users, see more on Skip go best practises [here](https://docs.skip.build/go/advanced-swapping/allow_unsafe-preventing-handling-bad-execution) and [here](https://docs.skip.build/go/advanced-swapping/safe-swapping-how-to-protect-users-from-harming-themselves). ::::