gitextract_ee0jz0ij/ ├── .gitignore ├── Docs/ │ └── Document.md ├── EtherWalletKit.podspec ├── EtherWalletKit.xcodeproj/ │ ├── EtherWalletKitTests_Info.plist │ ├── EtherWalletKit_Info.plist │ ├── project.pbxproj │ ├── project.xcworkspace/ │ │ └── contents.xcworkspacedata │ └── xcshareddata/ │ └── xcschemes/ │ ├── EtherWalletKit-Package.xcscheme │ └── xcschememanagement.plist ├── EtherWalletKit.xcworkspace/ │ ├── contents.xcworkspacedata │ └── xcshareddata/ │ └── IDEWorkspaceChecks.plist ├── EtherWalletKitTest/ │ ├── EtherWalletKitTest.swift │ └── Info.plist ├── LICENSE ├── Package.swift ├── Podfile ├── README.md └── Sources/ ├── Structure/ │ ├── EtherscanAPIResponse.swift │ ├── EthplorerAPIResponse.swift │ ├── GasStationAPIResponse.swift │ └── TransactionData.swift └── Wallet/ ├── EtherWallet+Account.swift ├── EtherWallet+Balance.swift ├── EtherWallet+History.swift ├── EtherWallet+Info.swift ├── EtherWallet+Transaction.swift ├── EtherWallet+Util.swift ├── EtherWallet.swift ├── EtherWalletTestnets.swift └── WalletError.swift