Skip to content

Commit

Permalink
update index
Browse files Browse the repository at this point in the history
  • Loading branch information
allan-almeida-imtbl committed Sep 26, 2023
1 parent d15da0e commit b407c2f
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion clients/erc721-mint-by-id.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ export type TransferRequest = ImmutableERC721Base.TransferRequestStruct;
// Struct for safe burning multiple tokens from a single address.
export type IDBurn = ImmutableERC721Base.IDBurnStruct;

export class ERC721MintByID {
export class ERC721MintByIDClient {
private readonly contract: ImmutableERC721MintByID;

constructor(contractAddress: string) {
Expand Down
2 changes: 1 addition & 1 deletion clients/erc721.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ export type TransferRequest = ERC721Hybrid.TransferRequestStruct;
// Struct for burning multiple tokens from the same address
export type IDBurn = ERC721Hybrid.IDBurnStruct;

export class ERC721 {
export class ERC721Client {
private readonly contract: ImmutableERC721;

constructor(contractAddress: string) {
Expand Down
5 changes: 3 additions & 2 deletions clients/index.ts
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
export { ERC721 as ERC721Client } from "./erc721";
export { ERC721MintByID as ERC721MintByIDClient } from "./erc721-mint-by-id";
export { ERC20Client } from "./erc20";
export { ERC721Client } from "./erc721";
export { ERC721MintByIDClient } from "./erc721-mint-by-id";

0 comments on commit b407c2f

Please sign in to comment.