mirror of
https://github.com/ninxsoft/Mist.git
synced 2025-05-14 23:24:51 -04:00
14 lines
204 B
Swift
14 lines
204 B
Swift
//
|
|
// UInt32+Extension.swift
|
|
// Mist
|
|
//
|
|
// Created by Nindi Gill on 20/6/2022.
|
|
//
|
|
|
|
import Foundation
|
|
|
|
extension UInt32 {
|
|
func hexString() -> String {
|
|
String(format: "0x%08X", self)
|
|
}
|
|
}
|