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

Update incorrect comment and readme broken links #101

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -301,7 +301,7 @@ or [the official Ethereum JSON RPC documentation](https://eth.wiki/json-rpc/API)

We are providing an optional module for interaction with smart contracts. To use it you have to add `Web3ContractABI` to your target dependencies in your Podfile (for SPM). Make sure you check out the [installation instructions](#Installation) first.

We are providing two different options to create contract abi interfaces in Swift. Either you define your functions and events manually (or use one of our provided interfaces like [ERC20](Web3/Classes/ContractABI/Contract/ERC20.swift) or [ERC721](Web3/Classes/ContractABI/Contract/ERC721.swift)). Or you parse them from the JSON ABI representation just like in web3.js.
We are providing two different options to create contract abi interfaces in Swift. Either you define your functions and events manually (or use one of our provided interfaces like [ERC20](Sources/ContractABI/Contract/ERC20.swift) or [ERC721](Sources/ContractABI/Contract/ERC721.swift)). Or you parse them from the JSON ABI representation just like in web3.js.

### Static Contracts

Expand Down
2 changes: 1 addition & 1 deletion Sources/ContractABI/Contract/ERC20.swift
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ open class GenericERC20Contract: StaticContract, ERC20Contract, AnnotatedERC20 {
}
}

// MARK: - Implementation of ERC721 standard methods and events
// MARK: - Implementation of ERC20 standard methods and events

public extension ERC20Contract {

Expand Down