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 @@ -8,6 +8,7 @@

## 4.35.0 (staging)

- added: Add Bridgeless swap plugin
- added: Spend Crypto button on Home scene to launch Bitrefill for gift card purchases
- changed: Use rates server v3 endpoint

Expand Down
1 change: 1 addition & 0 deletions src/actions/CategoriesActions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -697,6 +697,7 @@ export const pluginIdIcons: Record<string, string> = {
'0xgasless': EDGE_CONTENT_SERVER_URI + '/0xgasless.png',
bitrefill: EDGE_CONTENT_SERVER_URI + '/bitrefill.png',
bitsofgold: EDGE_CONTENT_SERVER_URI + '/bits-of-gold-logo.png',
bridgeless: EDGE_CONTENT_SERVER_URI + '/bridgeless.png',
changenow: EDGE_CONTENT_SERVER_URI + '/changenow.png',
changehero: EDGE_CONTENT_SERVER_URI + '/changehero.png',
cosmosibc: EDGE_CONTENT_SERVER_URI + '/cosmosibc.png',
Expand Down
6 changes: 6 additions & 0 deletions src/components/services/ContactsLoader.ts
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,12 @@ const merchantPartners: GuiContact[] = [
hasThumbnail: true,
thumbnailPath: 'bits-of-gold-logo.png'
},
{
givenName: 'Bridgeless',
familyName: '',
hasThumbnail: true,
thumbnailPath: 'bridgeless.png'
},
{
givenName: 'Change NOW',
familyName: '',
Expand Down
1 change: 1 addition & 0 deletions src/util/corePlugins.ts
Original file line number Diff line number Diff line change
Expand Up @@ -97,6 +97,7 @@ export const swapPlugins = {
swapuz: ENV.SWAPUZ_INIT,

// Defi Swaps
bridgeless: true,
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

False for now, and we're golden.

Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Bug: Plugin Enabled Despite Explicit Request To Disable

The bridgeless plugin is set to true, but a PR discussion comment from @swansontec explicitly requested it be false. This enables the plugin when it was intended to be disabled.

Fix in Cursor Fix in Web

rango: ENV.RANGO_INIT,
spookySwap: false,
mayaprotocol: ENV.MAYA_PROTOCOL_INIT,
Expand Down
Loading