mirror of
https://github.com/lil-org/tokenary.git
synced 2024-12-14 06:26:41 +03:00
36 lines
574 B
Swift
36 lines
574 B
Swift
// Copyright © 2021 Encrypted Ink. All rights reserved.
|
|
|
|
import Foundation
|
|
|
|
struct Transaction {
|
|
|
|
}
|
|
|
|
struct Account {
|
|
|
|
}
|
|
|
|
struct Ethereum {
|
|
|
|
static func sign(message: String, account: Account) {
|
|
|
|
}
|
|
|
|
static func signPersonal(message: String, account: Account) {
|
|
|
|
}
|
|
|
|
static func sign(typedData: String, account: Account) {
|
|
|
|
}
|
|
|
|
static func sign(transaction: Transaction, account: Account) {
|
|
|
|
}
|
|
|
|
static func send(transaction: Transaction, account: Account) {
|
|
|
|
}
|
|
|
|
}
|