Skip to content

Commit

Permalink
add deposit types;
Browse files Browse the repository at this point in the history
Signed-off-by: tcar <[email protected]>
  • Loading branch information
tcar121293 committed Oct 5, 2023
1 parent 7234815 commit c0ee771
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions types/message.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,13 @@ type Metadata struct {
Data map[string]interface{}
}
type TransferType string

const (
FungibleTransfer TransferType = "FungibleTransfer"
NonFungibleTransfer TransferType = "NonFungibleTransfer"
GenericTransfer TransferType = "GenericTransfer"
)

type Message struct {
Source uint8 // Source where message was initiated
Destination uint8 // Destination chain of message
Expand Down

0 comments on commit c0ee771

Please sign in to comment.