Skip to content

Commit

Permalink
added tokens field in dappschema interface
Browse files Browse the repository at this point in the history
  • Loading branch information
rishikesh-y committed Nov 14, 2023
1 parent b24a5b6 commit 5aa2db6
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions src/interfaces/dAppSchema.ts
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,13 @@ export interface DownloadBaseUrls {
versionCode?: string;
}

export interface Token {
name: string;
symbol: string;
address: string;
chains: number[];
}

/**
* A schema for dapps for dApp Registry
*/
Expand Down Expand Up @@ -188,4 +195,5 @@ export interface DAppSchema {
version?: string;
versionCode?: string;
packageId?: string;
tokens?: Token[];
}

0 comments on commit 5aa2db6

Please sign in to comment.