Skip to content

Commit

Permalink
Added ChainInfo types in SafeInfo
Browse files Browse the repository at this point in the history
  • Loading branch information
DaniSomoza committed Nov 24, 2021
1 parent 7331a88 commit b8cd16e
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions packages/safe-apps-sdk/src/types/sdk.ts
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,17 @@ export type SendTransactionsResponse = {
safeTxHash: string;
};

export type ChainInfo = {
chainName: string;
chainId: number;
shortName: string;
nativeCurrency: string;
};

export type SafeInfo = {
safeAddress: string;
chainId: number;
threshold: number;
owners: string[];
chainInfo: ChainInfo;
};

0 comments on commit b8cd16e

Please sign in to comment.