Skip to content

Commit

Permalink
fix exports
Browse files Browse the repository at this point in the history
  • Loading branch information
H34D committed Mar 30, 2023
1 parent 7ed0f8f commit 408f9f8
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
8 changes: 6 additions & 2 deletions src/account/get-balances.ts
Expand Up @@ -9,13 +9,17 @@ import { ERC20, ERC20__factory } from "../contracts";
import Masa from "../masa";
import { PaymentMethod } from "../interface";

type BalanceTypes = "Native" | PaymentMethod | SBTContractNames;
export type BalanceTypes = "Native" | PaymentMethod | SBTContractNames;

export type Balances = Partial<{
[index in BalanceTypes]: number | undefined;
}>;

type SBTContractNames = "Identity" | "SoulName" | "Green" | "CreditScore";
export type SBTContractNames =
| "Identity"
| "SoulName"
| "Green"
| "CreditScore";

type SBTContracts =
| SoulboundIdentity
Expand Down
1 change: 1 addition & 0 deletions src/contracts/index.ts
Expand Up @@ -3,3 +3,4 @@ export * from "./load-sbt-contract";
export * from "./masa-contracts";
export * from "./load-Identity-contracts";
export * from "./stubs";
export * from "./modules";

0 comments on commit 408f9f8

Please sign in to comment.