tokenary/Encrypted Ink/Services/GasService.swift

24 lines
370 B
Swift
Raw Normal View History

2021-06-28 16:20:08 +03:00
// Copyright © 2021 Encrypted Ink. All rights reserved.
import Foundation
struct GasService {
struct Info: Codable {
let standard: Int
let slow: Int
let fast: Int
let rapid: Int
}
2021-06-28 16:20:08 +03:00
static let shared = GasService()
private init() {}
var currentInfo: Info?
2021-06-28 16:20:08 +03:00
func start() {
}
}