Skip to content

Commit

Permalink
feat(contracts): key pairs, reserve
Browse files Browse the repository at this point in the history
  • Loading branch information
gridcat committed Dec 7, 2018
1 parent 9838684 commit 446f1a6
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/contracts/keysPair.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
export default interface IKeysPair {
PrivateKey: string
PublicKey: string
}
4 changes: 4 additions & 0 deletions src/contracts/reserve.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
export default interface IReserve {
reserve: boolean
amount: number
}

0 comments on commit 446f1a6

Please sign in to comment.