Skip to content

Commit

Permalink
feat: createPool method
Browse files Browse the repository at this point in the history
this method uses the vault creation zap to create a new vault/pool
and immediately add inventory and liquidity to it
  • Loading branch information
jackmellis committed Feb 3, 2023
1 parent b3c776b commit c04f5ff
Show file tree
Hide file tree
Showing 15 changed files with 823 additions and 12 deletions.
4 changes: 2 additions & 2 deletions packages/config/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ export interface Config {
keys: {
/** Your specific nftx.js API key, this must be provided in order to use the library */
NFTX_API: string;
ALCHEMY: string;
ALCHEMY: Record<string, string>;
};
}

Expand Down Expand Up @@ -97,7 +97,7 @@ const defaultConfig: Config = {

keys: {
NFTX_API: null,
ALCHEMY: null,
ALCHEMY: {},
},
};

Expand Down
Loading

0 comments on commit c04f5ff

Please sign in to comment.