diff --git a/.changeset/slow-cougars-reply.md b/.changeset/slow-cougars-reply.md new file mode 100644 index 000000000..0271b1fc6 --- /dev/null +++ b/.changeset/slow-cougars-reply.md @@ -0,0 +1,5 @@ +--- +"@rabbitholegg/questdk-plugin-gmx": minor +--- + +Small fix to options function export diff --git a/.gitignore b/.gitignore index 1d22faae2..be88df4f2 100644 --- a/.gitignore +++ b/.gitignore @@ -18,3 +18,4 @@ tsconfig*.tsbuildinfo .env.test.local .env.production.local .envrc +~ \ No newline at end of file diff --git a/packages/gmx/src/index.ts b/packages/gmx/src/index.ts index 0382bb66e..7baba2226 100644 --- a/packages/gmx/src/index.ts +++ b/packages/gmx/src/index.ts @@ -1,6 +1,3 @@ -// This file is standard for more projects. -// The main degree of nuance is in the - import { type IActionPlugin, PluginActionNotImplementedError, @@ -8,6 +5,7 @@ import { import { swap, + options, getSupportedChainIds, getSupportedTokenAddresses, } from './GMX.js' @@ -20,4 +18,5 @@ export const GMX: IActionPlugin = { bridge: async () => new PluginActionNotImplementedError(), swap, mint: async () => new PluginActionNotImplementedError(), + options, }