Skip to content

Commit

Permalink
Merge pull request #170 from rabbitholegg/fix_gmx_options_export
Browse files Browse the repository at this point in the history
Fix(gmx): options function export
  • Loading branch information
Quazia authored Jan 17, 2024
2 parents c19ae57 + 5a5ac52 commit 3c6fff4
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 3 deletions.
5 changes: 5 additions & 0 deletions .changeset/slow-cougars-reply.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@rabbitholegg/questdk-plugin-gmx": minor
---

Small fix to options function export
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -18,3 +18,4 @@ tsconfig*.tsbuildinfo
.env.test.local
.env.production.local
.envrc
~
5 changes: 2 additions & 3 deletions packages/gmx/src/index.ts
Original file line number Diff line number Diff line change
@@ -1,13 +1,11 @@
// This file is standard for more projects.
// The main degree of nuance is in the

import {
type IActionPlugin,
PluginActionNotImplementedError,
} from '@rabbitholegg/questdk'

import {
swap,
options,
getSupportedChainIds,
getSupportedTokenAddresses,
} from './GMX.js'
Expand All @@ -20,4 +18,5 @@ export const GMX: IActionPlugin = {
bridge: async () => new PluginActionNotImplementedError(),
swap,
mint: async () => new PluginActionNotImplementedError(),
options,
}

0 comments on commit 3c6fff4

Please sign in to comment.