Boilertalk / Web3.swift

A pure swift Ethereum Web3 library
MIT License
636 stars 187 forks source link

fix: SolidityType & ValueType conform to Sendable #175

Closed ericlewis closed 2 months ago

ericlewis commented 2 months ago

These values are safe to send around and during wrapped async calls are required to be sendable in swift 6. Current workaround is to do this:

extension SolidityType: @unchecked Sendable {}