mirror of
https://github.com/lil-org/tokenary.git
synced 2024-12-14 14:40:20 +03:00
9 lines
156 B
Swift
9 lines
156 B
Swift
|
// Copyright © 2021 Encrypted Ink. All rights reserved.
|
||
|
|
||
|
import Foundation
|
||
|
|
||
|
struct Account: Codable {
|
||
|
let privateKey: String
|
||
|
let address: String
|
||
|
}
|