Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ENS properties mutability #723

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions Sources/web3swift/Utils/ENS/ENS.swift
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,11 @@ import Web3Core
public class ENS {

public let web3: Web3
public var registry: Registry
public var resolver: Resolver?
public var baseRegistrar: BaseRegistrar?
public var registrarController: ETHRegistrarController?
public var reverseRegistrar: ReverseRegistrar?
public let registry: Registry
private(set) var resolver: Resolver?
private(set) var baseRegistrar: BaseRegistrar?
private(set) var registrarController: ETHRegistrarController?
private(set) var reverseRegistrar: ReverseRegistrar?

public init?(web3: Web3) {
self.web3 = web3
Expand Down