tonkeeper / ton-swift

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

TON Swift

Pure Swift implementation of TON core data structures: integers, bitstrings, cells, bags of cells, contracts and messages.

The focus of the library is type safety and serialization. It does not support connectivity to TON p2p network, or Toncenter, Tonapi.io etc.

Current status

  • Mnemonic and keys
  • Bitstrings
  • Cells
  • Hashmaps aka “dictionaries”
  • Contract
  • StateInit
  • CommonMsgInfo
  • Send Flags
  • Snake text encoding
  • Standard wallets
  • Data signatures TEP/PR104
  • Subscriptions V1
  • Jettons
  • NFT
  • TON.DNS

Example

To run the example project, clone the repo, and run pod install from the Example directory first.

Installation

Ready for use on iOS 13+.

CocoaPods:

CocoaPods is a dependency manager. For usage and installation instructions, visit their website. To integrate using CocoaPods, specify it in your Podfile:

pod 'TonSwift', '1.0.3'

Swift Package Manager

The Swift Package Manager is a tool for automating the distribution of Swift code and is integrated into the swift compiler. It is in early development, but TonSwift does support its use on supported platforms.

Once you have your Swift package set up, adding TonSwift as a dependency is as easy as adding it to the dependencies value of your Package.swift.

dependencies: [
    .package(url: "https://github.com/tonkeeper/ton-swift", .exact("1.0.4"))
]

Authors

License

Apache 2.0

About

License:Apache License 2.0


Languages

Language:Swift 99.6%Language:Ruby 0.4%