export type TransactionStatus = (
    "pending" |
    "failure" | 
    "success" |
    "error" |
    string
)