Skip to content

Commit

Permalink
feat: update interfaces
Browse files Browse the repository at this point in the history
  • Loading branch information
NicoAcosta committed Nov 5, 2024
1 parent fc43c29 commit 4202f80
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions ts-interfaces/types/interfaces.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,19 @@
// Plasa Types
interface PlasaData {
contractAddress: string // address
namesContract: string // address
}

interface PlasaUser {
isRegistered: boolean
username: string
}

interface PlasaView {
data: PlasaData
user: PlasaUser
}

// Points Types
interface Holder {
user: string // address
Expand Down

0 comments on commit 4202f80

Please sign in to comment.