Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@

- changed: Route maestro test builds to a dedicated Zealot channel so they no longer appear in the production release list.
- changed: Hide the wallet "Get Raw Keys" option behind Developer Mode, while still showing it for wallets that fail to load.
- removed: SideShift `privateKey` from env config; the swap integration no longer sends the affiliate secret header.

## 4.49.0 (staging)

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -619,6 +619,7 @@ exports[`AccelerateTxModalComponent should render with loading props 1`] = `
},
]
}
testID="confirmSliderThumb"
>
<Text
adjustsFontSizeToFit={true}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1705,6 +1705,7 @@ exports[`SendScene2 1 spendTarget 1`] = `
},
]
}
testID="confirmSliderThumb"
>
<Text
adjustsFontSizeToFit={true}
Expand Down Expand Up @@ -3714,6 +3715,7 @@ exports[`SendScene2 1 spendTarget with info tiles 1`] = `
},
]
}
testID="confirmSliderThumb"
>
<Text
adjustsFontSizeToFit={true}
Expand Down Expand Up @@ -5723,6 +5725,7 @@ exports[`SendScene2 2 spendTargets 1`] = `
},
]
}
testID="confirmSliderThumb"
>
<Text
adjustsFontSizeToFit={true}
Expand Down Expand Up @@ -7313,6 +7316,7 @@ exports[`SendScene2 2 spendTargets hide tiles 1`] = `
},
]
}
testID="confirmSliderThumb"
>
<Text
adjustsFontSizeToFit={true}
Expand Down Expand Up @@ -8883,6 +8887,7 @@ exports[`SendScene2 2 spendTargets hide tiles 2`] = `
},
]
}
testID="confirmSliderThumb"
>
<Text
adjustsFontSizeToFit={true}
Expand Down Expand Up @@ -10220,6 +10225,7 @@ exports[`SendScene2 2 spendTargets hide tiles 3`] = `
},
]
}
testID="confirmSliderThumb"
>
<Text
adjustsFontSizeToFit={true}
Expand Down Expand Up @@ -11970,6 +11976,7 @@ exports[`SendScene2 2 spendTargets lock tiles 1`] = `
},
]
}
testID="confirmSliderThumb"
>
<Text
adjustsFontSizeToFit={true}
Expand Down Expand Up @@ -13671,6 +13678,7 @@ exports[`SendScene2 2 spendTargets lock tiles 2`] = `
},
]
}
testID="confirmSliderThumb"
>
<Text
adjustsFontSizeToFit={true}
Expand Down Expand Up @@ -15299,6 +15307,7 @@ exports[`SendScene2 2 spendTargets lock tiles 3`] = `
},
]
}
testID="confirmSliderThumb"
>
<Text
adjustsFontSizeToFit={true}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2033,6 +2033,7 @@ exports[`SwapConfirmationScene should render with loading props 1`] = `
},
]
}
testID="confirmSliderThumb"
>
<Text
adjustsFontSizeToFit={true}
Expand Down
5 changes: 4 additions & 1 deletion src/components/themed/SafeSlider.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ interface Props {
width?: number
confirmText?: string
disabledText?: string
testID?: string

onSlidingComplete: (reset: () => void) => Promise<void> | void
}
Expand All @@ -36,7 +37,8 @@ export const SafeSlider: React.FC<Props> = props => {
disabledText,
disabled = false,
onSlidingComplete,
parentStyle
parentStyle,
testID = 'confirmSliderThumb'
} = props

const theme = useTheme()
Expand Down Expand Up @@ -120,6 +122,7 @@ export const SafeSlider: React.FC<Props> = props => {

<GestureDetector gesture={gesture}>
<Animated.View
testID={testID}
style={[
styles.thumb,
sliderDisabled ? styles.disabledThumb : null,
Expand Down
5 changes: 2 additions & 3 deletions src/envConfig.ts
Original file line number Diff line number Diff line change
Expand Up @@ -385,9 +385,8 @@ export const asEnvConfig = asObject({
SEPOLIA_INIT: asCorePluginInit(asEvmApiKeys),
SIDESHIFT_INIT: asCorePluginInit(
asObject({
affiliateId: asOptional(asString, ''),
privateKey: asOptional(asString)
}).withRest
affiliateId: asOptional(asString, '')
})
),
SOLANA_INIT: asCorePluginInit(
asObject({
Expand Down
Loading