Skip to content

Commit

Permalink
fix: Export Ethereum interfaces
Browse files Browse the repository at this point in the history
  • Loading branch information
alejandrordzl committed Sep 10, 2024
1 parent 2b5974a commit d8f545a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/blockchains/ethereum/v1.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ export interface CollectionQueryEthereumParams {
collectionId: number;
}

export interface TokensMintedQueryParams extends CollectionQueryEthereumParams {
export interface TokensMintedQueryEthereumParamsV1 extends CollectionQueryEthereumParams {
address: string;
}
export interface SetStatusParamsEthereumV1 extends CollectionTransactionEthereumParams {
Expand Down Expand Up @@ -288,7 +288,7 @@ export class EthereumCollectionV1 implements CollectionContract {
error: null,
};
}
async getTokensMinted<TokensMintedQueryParams>(params: TokensMintedQueryParams): Promise<
async getTokensMinted<TokensMintedQueryEthereumParamsV1>(params: TokensMintedQueryEthereumParamsV1): Promise<
QueryResponse<{
tokensMinted: {
allowlistCount: number;
Expand Down
1 change: 1 addition & 0 deletions src/blockchains/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,4 @@ export * from "./types";
export * from "./factory";
export * from "./base/v1";
export * from "./utils";
export * from './ethereum/v1';

0 comments on commit d8f545a

Please sign in to comment.