menu-traversal-v2 #115

Merged
lash merged 15 commits from menu-traversal-v2 into master 2024-10-18 15:38:56 +02:00
Showing only changes of commit 4a599b902d - Show all commits

View File

@ -5,6 +5,13 @@ import (
"time"
)
type Transaction struct {
CreatedAt time.Time `json:"createdAt"`
Status string `json:"status"`
TransferValue json.Number `json:"transferValue"`
TxHash string `json:"txHash"`
TxType string `json:"txType"`
}
type TrackStatusResponse struct {
Ok bool `json:"ok"`