blockchainethereumblockchain-walleterc20erc721walletxdaidappdecentralizederc1155erc875iosswifttokens
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
43 lines
1.4 KiB
43 lines
1.4 KiB
// Copyright © 2017-2018 Trust.
|
|
//
|
|
// This file is part of Trust. The full Trust copyright notice, including
|
|
// terms governing use, modification, and redistribution, is contained in the
|
|
// file LICENSE at the root of the source code distribution tree.
|
|
|
|
import BigInt
|
|
import Foundation
|
|
|
|
public struct Function: Equatable, CustomStringConvertible {
|
|
public var name: String
|
|
public var parameters: [ABIType]
|
|
|
|
public init(name: String, parameters: [ABIType]) {
|
|
self.name = name
|
|
self.parameters = parameters
|
|
}
|
|
|
|
/// Casts the arguments into the appropriate types for this function.
|
|
///
|
|
/// - Throws:
|
|
/// - `ABIError.invalidArgumentType` if a value doesn't match the expected type.
|
|
/// - `ABIError.invalidNumberOfArguments` if the number of values doesn't match the number of parameters.
|
|
public func castArguments(_ values: [Any]) throws -> [ABIValue] {
|
|
if values.count != parameters.count {
|
|
throw ABIError.invalidNumberOfArguments
|
|
}
|
|
return try zip(parameters, values).map({ try ABIValue($1, type: $0) })
|
|
}
|
|
|
|
/// Function signature
|
|
public var description: String {
|
|
var string = "\(name)("
|
|
for param in parameters {
|
|
string += param.description + ","
|
|
}
|
|
if string.hasSuffix(",") {
|
|
string.removeLast()
|
|
}
|
|
string += ")"
|
|
return string
|
|
}
|
|
}
|
|
|