|
1 | 1 | # Usage
|
2 | 2 |
|
| 3 | +--- |
| 4 | +## Table of contents: |
| 5 | + |
| 6 | +<!-- START doctoc generated TOC please keep comment here to allow auto update --> |
| 7 | +<!-- DON'T EDIT THIS SECTION, INSTEAD RE-RUN doctoc TO UPDATE --> |
| 8 | +- [About source and GitHub repositories](#about-source-and-github-repositories) |
| 9 | + |
| 10 | +- [Introduction](#introduction) |
| 11 | + - [Preffered models](#preffered-models) |
| 12 | + - [Preffered keys Wallet Model (Account)](#preffered-keys-wallet-model-account) |
| 13 | + - [Preffered ERC-20 Model](#preffered-erc-20-model) |
| 14 | +- [Account Management](#account-management) |
| 15 | + - [Create Account](#create-account) |
| 16 | + - [With Private Key](#with-private-key) |
| 17 | + - [With Mnemonics Phrase](#with-mnemonics-phrase) |
| 18 | + - [Import Account](#import-account) |
| 19 | + - [With Private Key](#with-private-key-1) |
| 20 | + - [With Mnemonics Phrase](#with-mnemonics-phrase-1) |
| 21 | + - [Get Keystore Manager from wallet data](#get-keystore-manager-from-wallet-data) |
| 22 | + - [Get wallet private key](#get-wallet-private-key) |
| 23 | +- [Ethereum Endpoints interaction](#ethereum-endpoints-interaction) |
| 24 | + - [web3 instance](#web3-instance) |
| 25 | + - [Ethereum Address](#ethereum-address) |
| 26 | + - [Initializing](#initializing) |
| 27 | + - [Get Balance](#get-balance) |
| 28 | + - [Get ETH balance](#get-eth-balance) |
| 29 | + - [Get ERC20 token balance](#get-erc20-token-balance) |
| 30 | + - [Transactions Operations](#transactions-operations) |
| 31 | + - [Prepare Transaction](#prepare-transaction) |
| 32 | + - [Send Ether](#send-ether) |
| 33 | + - [Send ERC-20 Token](#send-erc-20-token) |
| 34 | + - [Write Transaction and call smart contract method](#write-transaction-and-call-smart-contract-method) |
| 35 | + - [Read Transaction to call smart contract method](#read-transaction-to-call-smart-contract-method) |
| 36 | + - [Send Transaction](#send-transaction) |
| 37 | + - [Write](#write) |
| 38 | + - [Read](#read) |
| 39 | + - [Chain state](#chain-state) |
| 40 | + - [Get Block number](#get-block-number) |
| 41 | +- [Websockets](#websockets) |
| 42 | + - [Web3socketDelegate](#web3socketdelegate) |
| 43 | + - [Custom Websocket Provider](#custom-websocket-provider) |
| 44 | + - [Connect to custom endpoint](#connect-to-custom-endpoint) |
| 45 | + - [Send message](#send-message) |
| 46 | + - [Infura Websocket interactions](#infura-websocket-interactions) |
| 47 | + - [Connect to Infura endpoint](#connect-to-infura-endpoint) |
| 48 | + - [Connect to custom Infura-like endpoint](#connect-to-custom-infura-like-endpoint) |
| 49 | + - [Create a filter in the node to notify when something happened](#create-a-filter-in-the-node-to-notify-when-something-happened) |
| 50 | + - [Get new pending transactions](#get-new-pending-transactions) |
| 51 | + - [Create a new subscription over particular events](#create-a-new-subscription-over-particular-events) |
| 52 | + - [Subscribe on new pending transactions](#subscribe-on-new-pending-transactions) |
| 53 | +- [ENS](#ens) |
| 54 | + - [Registry](#registry) |
| 55 | + - [Resolver](#resolver) |
| 56 | + - [BaseRegistrar](#baseregistrar) |
| 57 | + - [RegistrarController](#registrarcontroller) |
| 58 | + - [ReverseRegistrar](#reverseregistrar) |
| 59 | + |
| 60 | +<!-- END doctoc generated TOC please keep comment here to allow auto update --> |
| 61 | + |
3 | 62 | ---
|
4 | 63 | - **[Introduction](https://github.com/matter-labs/web3swift/blob/master/Documentation/Usage.md#introduction)**
|
5 | 64 | - *[Preffered models](https://github.com/matter-labs/web3swift/blob/master/Documentation/Usage.md#preffered-models)*
|
|
0 commit comments