Skip to content
Permalink

Comparing changes

This is a direct comparison between two commits made in this repository or its related repositories. View the default comparison for this range or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: DA0-DA0/dao-dao-ui
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: db0c3795b3f83e00b26b1bc53ee1330a20c41956
Choose a base ref
..
head repository: DA0-DA0/dao-dao-ui
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 7e81718d78a1a5a2563912ada0accc3e00ab0bf9
Choose a head ref
Showing with 8 additions and 2 deletions.
  1. +6 −2 packages/state/query/queries/skip.ts
  2. +2 −0 packages/stateful/actions/core/actions/SkipGo/index.tsx
8 changes: 6 additions & 2 deletions packages/state/query/queries/skip.ts
Original file line number Diff line number Diff line change
@@ -179,6 +179,8 @@ export const fetchSkipGoMsgsDirect = async (
slippageTolerancePercent,
timeoutSeconds,
addresses,
smartRelay,
allowSwaps,
}: {
fromChainId: string
fromTokenType: TokenType
@@ -190,6 +192,8 @@ export const fetchSkipGoMsgsDirect = async (
slippageTolerancePercent: number
timeoutSeconds: number
addresses: Record<string, string>
smartRelay: boolean
allowSwaps: boolean
}
): Promise<MsgsDirectResponse> => {
const fromDenom =
@@ -213,8 +217,8 @@ export const fetchSkipGoMsgsDirect = async (
slippageTolerancePercent,
timeoutSeconds,
addresses: JSON.stringify(addresses),
smartRelay: false,
allowSwaps: true,
smartRelay,
allowSwaps,
},
})
)
2 changes: 2 additions & 0 deletions packages/stateful/actions/core/actions/SkipGo/index.tsx
Original file line number Diff line number Diff line change
@@ -171,6 +171,8 @@ const Component: ActionComponent<undefined, SkipGoData> = (props) => {
slippageTolerancePercent: 3,
timeoutSeconds,
addresses,
smartRelay: false,
allowSwaps: true,
})
: undefined
)