Skip to content

Commit

Permalink
Merge pull request #133 from Boilertalk/fix/abi_public
Browse files Browse the repository at this point in the history
fix: make abi encoder/decoder public
  • Loading branch information
koraykoska authored Oct 12, 2022
2 parents 9ee8eca + 5d8d901 commit a5d5222
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Sources/ContractABI/ABI/ABIDecoder.swift
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import BigInt
import Web3
#endif

class ABIDecoder {
public class ABIDecoder {

enum Error: Swift.Error {
case typeNotSupported(type: SolidityType)
Expand Down
2 changes: 1 addition & 1 deletion Sources/ContractABI/ABI/ABIEncoder.swift
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
import Foundation
import BigInt

class ABIEncoder {
public class ABIEncoder {

enum Error: Swift.Error {
case couldNotEncode(type: SolidityType, value: Any)
Expand Down

0 comments on commit a5d5222

Please sign in to comment.