Started setting up basic exchange interface

This commit is contained in:
2023-10-03 17:41:19 -04:00
parent cd7cc4cd5f
commit 76cfbc8090
4 changed files with 32 additions and 0 deletions

3
src/interface/account.ts Normal file
View File

@@ -0,0 +1,3 @@
export interface Account {
fetchPortfolio: () => Portfolio;
}