Skip to content

Commit

Permalink
refactor(registry): reorder plugins record to match imports
Browse files Browse the repository at this point in the history
  • Loading branch information
mmackz committed Dec 6, 2023
1 parent 1da19de commit 9b61256
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions packages/registry/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -39,24 +39,24 @@ export const plugins: Record<string, IActionPlugin> = {
[Connext.pluginId]: Connext,
[Uniswap.pluginId]: Uniswap,
[Stargate.pluginId]: Stargate,
[Across.pluginId]: Across,
[Polygon.pluginId]: Polygon,
[Optimism.pluginId]: Optimism,
[Hop.pluginId]: Hop,
[Arbitrum.pluginId]: Arbitrum,
[Across.pluginId]: Across,
[Optimism.pluginId]: Optimism,
[GMX.pluginId]: GMX,
[Tally.pluginId]: Tally,
[Camelot.pluginId]: Camelot,
[Tally.pluginId]: Tally,
[BasePaint.pluginId]: BasePaint,
[Hyphen.pluginId]: Hyphen,
[Paraswap.pluginId]: Paraswap,
[Rabbithole.pluginId]: Rabbithole,
[Symbiosis.pluginId]: Symbiosis,
[Synapse.pluginId]: Synapse,
[OkuTrade.pluginId]: OkuTrade,
[Zora.pluginId]: Zora,
[Balancer.pluginId]: Balancer,
[TraderJoe.pluginId]: TraderJoe,
[Synapse.pluginId]: Synapse,
}

export const getPlugin = (pluginId: string) => {
Expand Down

0 comments on commit 9b61256

Please sign in to comment.