This repository was archived by the owner on Feb 8, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBitcoin.swift
373 lines (323 loc) · 9.51 KB
/
Bitcoin.swift
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
//
// Created by Maxim Orlovsky on 2/2/21.
//
import Foundation
public enum BitcoinNetwork: String, Codable {
static let rgbAssetId = "rgb1qqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqg40adx"
case mainnet = "mainnet"
case testnet = "testnet"
case signet = "signet"
public func derivationIndex() -> UInt32 {
switch self {
case .mainnet: return 0
case .testnet, .signet: return 1
}
}
public func ticker() -> String {
switch self {
case .mainnet:
return "BTC"
case .testnet:
return "tBTC"
case .signet:
return "sBTC"
}
}
public func coinName() -> String {
switch self {
case .mainnet:
return "Bitcoin"
case .testnet:
return "Bitcoin (testnet)"
case .signet:
return "Bitcoin (signet)"
}
}
public func issueLimit() -> UInt64? {
switch self {
case .mainnet:
return 21_000_000_0000_0000
case .testnet:
return nil
case .signet:
return nil
}
}
// TODO: keep these values up to date
public func issuedSupply() -> UInt64 {
switch self {
case .mainnet:
return 18_636_414_0000_0000
case .testnet:
return 20_963_086_0000_0000
case .signet:
return 26265 * 50 * 1_0000_0000
}
}
public func genesisTimestamp() -> Int64 {
switch self {
case .mainnet:
return 1231006505
case .testnet:
return 1296688602
case .signet:
return 1598918400
}
}
public func genesisDate() -> Date {
Date(timeIntervalSince1970: TimeInterval(genesisTimestamp()))
}
public func geneisHash() -> String {
switch self {
case .mainnet:
return "000000000019d6689c085ae165831e934ff763ae46a2a6c172b3f1b60a8ce26f"
case .testnet:
return "000000000933ea01ad0ee984209779baaec3ced90fa3f408719526f8d77f4943"
case .signet:
return "00000008819873e925422c1ff0f99f7cc9bbb232af63a077a480a3633bee1ef6"
}
}
public func nativeAssetId() -> String {
geneisHash()
}
}
public struct BlockchainState {
public let updatedAt: Date
public let height: UInt32
public let supply: UInt64
public let lastBlockHash: String
public let lastBlockTime: Int64
public let lastBlockReward: UInt64
public let knownBurned: UInt64
public init() {
updatedAt = Date(timeIntervalSince1970: 0)
height = 0
supply = 0
lastBlockHash = ""
lastBlockTime = 0
lastBlockReward = 0
knownBurned = 0
}
}
public struct MempoolState {
public let updatedAt: Date
public let txCount: UInt64
public let totalFee: UInt64
public init() {
updatedAt = Date(timeIntervalSince1970: 0)
txCount = 0
totalFee = 0
}
}
public enum DescriptorType {
case bare
case hashed
case segwit
case taproot
public func cDescriptorType() -> descriptor_type {
switch self {
case .bare: return DESCRIPTOR_TYPE_BARE
case .hashed: return DESCRIPTOR_TYPE_HASHED
case .segwit: return DESCRIPTOR_TYPE_SEGWIT
case .taproot: return DESCRIPTOR_TYPE_TAPROOT
}
}
public func usesSchnorr() -> Bool {
self == .taproot
}
public func usesSegWit() -> Bool {
self == .segwit
}
public func createPubkeyChain(network: BitcoinNetwork, rgb: Bool, multisig: Bool, scope: UInt32?) -> String {
let boundary = UInt32.max & 0x7FFFFFFF
let id = UInt32.random(in: 0...boundary)
let scope = UInt32.random(in: 0...boundary);
return rgb
? "m/827166'/\(usesSchnorr() ? "340" : "0")'/\(network.derivationIndex())'/\(id)'/\(scope)'/0/*"
: usesSchnorr()
? "m/\(multisig ? 345 : 344)'/0'/\(scope)/0/*"
: usesSegWit()
? "m/\(multisig ? 84 : 84)'/0'/\(scope)/0/*"
: "m/\(multisig ? 45 : 44)'/0'/\(scope)/0/*"
}
}
public enum WitnessVersion: Equatable {
case none
case segwit
case taproot
case future(UInt8)
}
public enum AddressNetwork: Codable, Equatable {
case mainnet
case testnet
case regtest
enum CodingError: Error {
case unknownValue
}
public init(from decoder: Decoder) throws {
guard let value = try? decoder.singleValueContainer().decode(String.self)
else { throw CodingError.unknownValue }
switch value {
case "mainnet": self = .mainnet
case "testnet": self = .testnet
case "regtest": self = .regtest
default: throw CodingError.unknownValue
}
}
public func encode(to encoder: Encoder) throws {
var container = encoder.singleValueContainer();
switch self {
case .mainnet: try container.encode("mainnet")
case .testnet: try container.encode("testnet")
case .regtest: try container.encode("regtest")
}
}
}
public enum AddressEncoding: Equatable {
case base58
case bech32
case bech32m
}
public extension AddressEncoding {
var name: String {
switch self {
case .base58: return "Base58"
case .bech32: return "Bech32"
case .bech32m: return "Bech32m"
}
}
}
public enum AddressFormat: RawRepresentable, Codable, Equatable {
case P2PKH
case P2SH
case P2WPKH
case P2WSH
case P2TR
case future(UInt8)
public typealias RawValue = String
public init?(rawValue: String) {
switch rawValue {
case "P2PKH": self = .P2PKH
case "P2SH": self = .P2SH
case "P2WPKH": self = .P2WPKH
case "P2WSH": self = .P2WSH
case "P2TR": self = .P2TR
case var value where value.hasPrefix("P2W"):
value.removeFirst(3)
guard let ver = UInt8(value) else { return nil }
self = .future(ver)
default:
return nil
}
}
public var rawValue: String {
switch self {
case .P2PKH: return "P2PKH"
case .P2SH: return "P2SH"
case .P2WPKH: return "P2WPKH"
case .P2WSH: return "P2WSH"
case .P2TR: return "P2TR"
case .future(let ver): return "P2W\(ver)"
}
}
enum CodingError: Error {
case unknownValue
}
public init(from decoder: Decoder) throws {
guard let value = try? decoder.singleValueContainer().decode(String.self)
else { throw CodingError.unknownValue }
guard let raw = AddressFormat(rawValue: value)
else { throw CodingError.unknownValue }
self = raw
}
public func encode(to encoder: Encoder) throws {
var container = encoder.singleValueContainer();
try container.encode(rawValue)
}
}
public extension AddressFormat {
var witnessVersion: WitnessVersion {
switch self {
case .P2PKH, .P2SH: return .none
case .P2WPKH, .P2WSH: return .segwit
case .P2TR: return .taproot
case .future(let ver): return .future(ver)
}
}
var isBech32: Bool {
witnessVersion != .none
}
var encoding: AddressEncoding {
switch self {
case .P2TR: return .bech32m
case .future(_): return .bech32m
case .P2WPKH, .P2WSH: return .bech32
default: return .base58
}
}
}
public struct AddressInfo: Codable, Identifiable, Equatable {
public var id: String { address }
public let address: String
public let isBIP21: Bool
public let network: AddressNetwork
public let format: AddressFormat
public let payload: String
public var value: UInt64?
private var labelUrlEncoded: String?
private var messageUrlEncoded: String?
public var label: String? {
get {
labelUrlEncoded?.removingPercentEncoding
}
set {
labelUrlEncoded = newValue?.addingPercentEncoding(withAllowedCharacters: .urlQueryAllowed) ?? nil
}
}
public var message: String? {
get {
messageUrlEncoded?.removingPercentEncoding
}
set {
messageUrlEncoded = newValue?.addingPercentEncoding(withAllowedCharacters: .urlQueryAllowed) ?? nil
}
}
public var witnessVer: WitnessVersion {
format.witnessVersion
}
public var encoding: AddressEncoding {
format.encoding
}
public var amount: Double? {
guard let value = value else { return nil }
return Double(value) / 100_000_000.0
}
private enum CodingKeys: String, CodingKey {
case address, isBIP21, network, format, payload, value, labelUrlEncoded = "label", messageUrlEncoded = "message"
}
}
public struct AddressDerivation: Codable, Identifiable, Equatable {
public var id: String { address }
public let address: String
public let derivation: [UInt32]
public var path: String {
derivation.map { "\($0)" }.joined(separator: "/")
}
}
public struct OutPoint: Codable, Identifiable, Hashable, Equatable {
public var id: String {
"\(txid):\(vout)"
}
public let txid: String
public let vout: UInt16
}
public struct TweakedOutpoint: Codable, Identifiable, Equatable {
public var id: String {
outpoint.id
}
public let outpoint: OutPoint
public let script: String
public let tweak: String
public let pubkey: String
public let derivationIndex: UInt32
}