Files
2022-05-27 20:21:01 +03:00

69 lines
1.6 KiB
Swift

//
// NetworkModelBlockchainAction.swift
// List
//
// Created by Saveliy Stavitsky on 7/28/20.
// Copyright © 2020 List. All rights reserved.
//
extension Network.Model.Blockchain {
enum Action: String {
case transfer
case open
case issue
case signup
case updateauth
case cashSetprtgrnt = "setprtgrnt"
case cashUnSetprtgrnt = "unsetprtgrnt"
case cashGetdividends = "getincome"
case cashGetroyalties = "getroyalties"
case cashSwapback = "swapback"
case cashBillSwapback = "billswapback"
case cashCreatereq = "createreq"
// case cashUpdatereq = "updatereq"
case cashClosereq = "closereq"
case cashCompletereq = "completereq"
case cashBuydebt = "buydebt"
case chatSendDm = "senddm"
case updinhdate
case updtokeninhs
case dstrinh
case delegatebw
case undelegatebw
case buyram
case buyrambytes
case sellram
case refund
case withdraw
case crtsellord
case crtbuyord
case clssellord
case clsbuyord
case buycrypto
case sellcrypto
case cmptbuydeal
case cmptselldeal
case setsellddspt
case setbuyddspt
case cnlbuydeal
case cnlselldeal
case blbuyord
case blsellord
case unblbuyord
case unblsellord
case appproposal
case appbuyer
case newaccount
case createpool
}
}