├── .gitignore ├── .gitmodules ├── LICENSE ├── Prepare ├── prepare.sh └── scripts │ ├── build-ton-arch.sh │ ├── build-ton.sh │ ├── openssl.sh │ └── ton-iOS.cmake ├── README.md ├── SubModules ├── BigInt │ ├── BigInt.xcodeproj │ │ └── project.pbxproj │ └── BigInt │ │ ├── BigInt.h │ │ └── Sources │ │ └── Swift-Big-Number-Core.swift ├── Bridge │ ├── Bridge.xcodeproj │ │ └── project.pbxproj │ └── Bridge │ │ ├── Bridge.h │ │ └── Sources │ │ ├── BridgeEmitter.swift │ │ ├── BridgeHelpers.swift │ │ ├── BridgeListener.swift │ │ ├── Encryption │ │ └── SessionProtocol.swift │ │ ├── EventSource │ │ ├── Event.swift │ │ ├── EventSource.swift │ │ └── EventStreamParser.swift │ │ ├── Models │ │ └── BridgeMessage.swift │ │ └── Utils │ │ └── PublicKeyUtils.swift ├── BuildConfig │ ├── BuildConfig.xcodeproj │ │ └── project.pbxproj │ └── BuildConfig │ │ ├── BuildConfig.h │ │ └── BuildConfig.m ├── CryptoSwift │ ├── CryptoSwift.xcodeproj │ │ └── project.pbxproj │ └── CryptoSwift │ │ ├── CryptoSwift.h │ │ └── Sources │ │ ├── AEAD │ │ ├── AEAD.swift │ │ └── AEADChaCha20Poly1305.swift │ │ ├── AES.Cryptors.swift │ │ ├── AES.swift │ │ ├── ASN1 │ │ ├── ASN1.swift │ │ ├── ASN1Decoder.swift │ │ ├── ASN1Encoder.swift │ │ └── ASN1Scanner.swift │ │ ├── Array+Extension.swift │ │ ├── Authenticator.swift │ │ ├── BatchedCollection.swift │ │ ├── Bit.swift │ │ ├── BlockCipher.swift │ │ ├── BlockDecryptor.swift │ │ ├── BlockEncryptor.swift │ │ ├── BlockMode │ │ ├── BlockMode.swift │ │ ├── BlockModeOptions.swift │ │ ├── CBC.swift │ │ ├── CCM.swift │ │ ├── CFB.swift │ │ ├── CTR.swift │ │ ├── CipherModeWorker.swift │ │ ├── ECB.swift │ │ ├── GCM.swift │ │ ├── OCB.swift │ │ ├── OFB.swift │ │ └── PCBC.swift │ │ ├── Blowfish.swift │ │ ├── CBCMAC.swift │ │ ├── CMAC.swift │ │ ├── CS_BigInt │ │ ├── Addition.swift │ │ ├── BigInt.swift │ │ ├── BigUInt.swift │ │ ├── Bitwise Ops.swift │ │ ├── CS.swift │ │ ├── Codable.swift │ │ ├── Comparable.swift │ │ ├── Data Conversion.swift │ │ ├── Division.swift │ │ ├── Exponentiation.swift │ │ ├── Floating Point Conversion.swift │ │ ├── GCD.swift │ │ ├── Hashable.swift │ │ ├── Integer Conversion.swift │ │ ├── Multiplication.swift │ │ ├── Prime Test.swift │ │ ├── Random.swift │ │ ├── Shifts.swift │ │ ├── Square Root.swift │ │ ├── Strideable.swift │ │ ├── String Conversion.swift │ │ ├── Subtraction.swift │ │ └── Words and Bits.swift │ │ ├── ChaCha20.swift │ │ ├── Checksum.swift │ │ ├── Cipher.swift │ │ ├── Collection+Extension.swift │ │ ├── CompactMap.swift │ │ ├── Cryptor.swift │ │ ├── Cryptors.swift │ │ ├── Digest.swift │ │ ├── DigestType.swift │ │ ├── Foundation │ │ ├── AES+Foundation.swift │ │ ├── Array+Foundation.swift │ │ ├── Blowfish+Foundation.swift │ │ ├── ChaCha20+Foundation.swift │ │ ├── Data+Extension.swift │ │ ├── HMAC+Foundation.swift │ │ ├── Rabbit+Foundation.swift │ │ ├── String+FoundationExtension.swift │ │ └── Utils+Foundation.swift │ │ ├── Generics.swift │ │ ├── HKDF.swift │ │ ├── HMAC.swift │ │ ├── ISO10126Padding.swift │ │ ├── ISO78164Padding.swift │ │ ├── Int+Extension.swift │ │ ├── MD5.swift │ │ ├── NoPadding.swift │ │ ├── Operators.swift │ │ ├── PEM │ │ └── DER.swift │ │ ├── PKCS │ │ ├── PBKDF1.swift │ │ ├── PBKDF2.swift │ │ ├── PKCS1v15.swift │ │ ├── PKCS5.swift │ │ ├── PKCS7.swift │ │ └── PKCS7Padding.swift │ │ ├── Padding.swift │ │ ├── Poly1305.swift │ │ ├── RSA │ │ ├── RSA+Cipher.swift │ │ ├── RSA+Signature.swift │ │ └── RSA.swift │ │ ├── Rabbit.swift │ │ ├── SHA1.swift │ │ ├── SHA2.swift │ │ ├── SHA3.swift │ │ ├── Scrypt.swift │ │ ├── SecureBytes.swift │ │ ├── Signature.swift │ │ ├── StreamDecryptor.swift │ │ ├── StreamEncryptor.swift │ │ ├── String+Extension.swift │ │ ├── UInt128.swift │ │ ├── UInt16+Extension.swift │ │ ├── UInt32+Extension.swift │ │ ├── UInt64+Extension.swift │ │ ├── UInt8+Extension.swift │ │ ├── Updatable.swift │ │ ├── Utils.swift │ │ └── ZeroPadding.swift ├── GZip │ ├── GZip.xcodeproj │ │ └── project.pbxproj │ └── GZip │ │ ├── GZip.h │ │ └── GZip.m ├── RLottieBinding │ ├── RLottieBinding.xcodeproj │ │ └── project.pbxproj │ └── RLottieBinding │ │ ├── LottieInstance.mm │ │ ├── PublicHeaders │ │ └── RLottieBinding │ │ │ └── LottieInstance.h │ │ ├── RLottieBinding.h │ │ ├── config.h │ │ └── rlottie │ │ ├── inc │ │ ├── rlottie.h │ │ ├── rlottie_capi.h │ │ └── rlottiecommon.h │ │ └── src │ │ ├── binding │ │ └── c │ │ │ └── lottieanimation_capi.cpp │ │ ├── lottie │ │ ├── lottieanimation.cpp │ │ ├── lottieitem.cpp │ │ ├── lottieitem.h │ │ ├── lottiekeypath.cpp │ │ ├── lottiekeypath.h │ │ ├── lottieloader.cpp │ │ ├── lottieloader.h │ │ ├── lottiemodel.cpp │ │ ├── lottiemodel.h │ │ ├── lottieparser.cpp │ │ ├── lottieparser.h │ │ ├── lottieproxymodel.cpp │ │ ├── lottieproxymodel.h │ │ └── rapidjson │ │ │ ├── allocators.h │ │ │ ├── cursorstreamwrapper.h │ │ │ ├── document.h │ │ │ ├── encodedstream.h │ │ │ ├── encodings.h │ │ │ ├── error │ │ │ ├── en.h │ │ │ └── error.h │ │ │ ├── filereadstream.h │ │ │ ├── filewritestream.h │ │ │ ├── fwd.h │ │ │ ├── internal │ │ │ ├── biginteger.h │ │ │ ├── diyfp.h │ │ │ ├── dtoa.h │ │ │ ├── ieee754.h │ │ │ ├── itoa.h │ │ │ ├── meta.h │ │ │ ├── pow10.h │ │ │ ├── regex.h │ │ │ ├── stack.h │ │ │ ├── strfunc.h │ │ │ ├── strtod.h │ │ │ └── swap.h │ │ │ ├── istreamwrapper.h │ │ │ ├── memorybuffer.h │ │ │ ├── memorystream.h │ │ │ ├── ostreamwrapper.h │ │ │ ├── pointer.h │ │ │ ├── prettywriter.h │ │ │ ├── rapidjson.h │ │ │ ├── reader.h │ │ │ ├── schema.h │ │ │ ├── stream.h │ │ │ ├── stringbuffer.h │ │ │ └── writer.h │ │ └── vector │ │ ├── freetype │ │ ├── v_ft_math.cpp │ │ ├── v_ft_math.h │ │ ├── v_ft_raster.cpp │ │ ├── v_ft_raster.h │ │ ├── v_ft_stroker.cpp │ │ ├── v_ft_stroker.h │ │ └── v_ft_types.h │ │ ├── pixman │ │ ├── pixman-arm-neon-asm.h │ │ ├── vregion.cpp │ │ └── vregion.h │ │ ├── vbezier.cpp │ │ ├── vbezier.h │ │ ├── vbitmap.cpp │ │ ├── vbitmap.h │ │ ├── vbrush.cpp │ │ ├── vbrush.h │ │ ├── vcompositionfunctions.cpp │ │ ├── vcowptr.h │ │ ├── vdasher.cpp │ │ ├── vdasher.h │ │ ├── vdebug.cpp │ │ ├── vdebug.h │ │ ├── vdrawable.cpp │ │ ├── vdrawable.h │ │ ├── vdrawhelper.cpp │ │ ├── vdrawhelper.h │ │ ├── vdrawhelper_sse2.cpp │ │ ├── velapsedtimer.cpp │ │ ├── velapsedtimer.h │ │ ├── vglobal.h │ │ ├── vimageloader.cpp │ │ ├── vimageloader.h │ │ ├── vinterpolator.cpp │ │ ├── vinterpolator.h │ │ ├── vline.h │ │ ├── vmatrix.cpp │ │ ├── vmatrix.h │ │ ├── vpainter.cpp │ │ ├── vpainter.h │ │ ├── vpath.cpp │ │ ├── vpath.h │ │ ├── vpathmesure.cpp │ │ ├── vpathmesure.h │ │ ├── vpoint.h │ │ ├── vraster.cpp │ │ ├── vraster.h │ │ ├── vrect.cpp │ │ ├── vrect.h │ │ ├── vrle.cpp │ │ ├── vrle.h │ │ ├── vstackallocator.h │ │ └── vtaskqueue.h ├── SSignalKit │ ├── SSignalKit.xcodeproj │ │ └── project.pbxproj │ └── SSignalKit │ │ ├── SSignalKit.h │ │ └── Source │ │ └── SSignalKit │ │ ├── SAtomic.h │ │ ├── SAtomic.m │ │ ├── SBag.h │ │ ├── SBag.m │ │ ├── SBlockDisposable.h │ │ ├── SBlockDisposable.m │ │ ├── SDisposable.h │ │ ├── SDisposableSet.h │ │ ├── SDisposableSet.m │ │ ├── SMetaDisposable.h │ │ ├── SMetaDisposable.m │ │ ├── SMulticastSignalManager.h │ │ ├── SMulticastSignalManager.m │ │ ├── SQueue.h │ │ ├── SQueue.m │ │ ├── SSignal+Accumulate.h │ │ ├── SSignal+Accumulate.m │ │ ├── SSignal+Catch.h │ │ ├── SSignal+Catch.m │ │ ├── SSignal+Combine.h │ │ ├── SSignal+Combine.m │ │ ├── SSignal+Dispatch.h │ │ ├── SSignal+Dispatch.m │ │ ├── SSignal+Mapping.h │ │ ├── SSignal+Mapping.m │ │ ├── SSignal+Meta.h │ │ ├── SSignal+Meta.m │ │ ├── SSignal+Multicast.h │ │ ├── SSignal+Multicast.m │ │ ├── SSignal+Pipe.h │ │ ├── SSignal+Pipe.m │ │ ├── SSignal+SideEffects.h │ │ ├── SSignal+SideEffects.m │ │ ├── SSignal+Single.h │ │ ├── SSignal+Single.m │ │ ├── SSignal+Take.h │ │ ├── SSignal+Take.m │ │ ├── SSignal+Timing.h │ │ ├── SSignal+Timing.m │ │ ├── SSignal.h │ │ ├── SSignal.m │ │ ├── SSubscriber.h │ │ ├── SSubscriber.m │ │ ├── SThreadPool.h │ │ ├── SThreadPool.m │ │ ├── SThreadPoolQueue.h │ │ ├── SThreadPoolQueue.m │ │ ├── SThreadPoolTask.h │ │ ├── SThreadPoolTask.m │ │ ├── STimer.h │ │ ├── STimer.m │ │ ├── SVariable.h │ │ └── SVariable.m ├── Sodium │ ├── Sodium.xcodeproj │ │ └── project.pbxproj │ └── Sodium │ │ ├── Clibsodium.xcframework │ │ ├── Info.plist │ │ ├── ios-arm64_armv7_armv7s │ │ │ ├── Headers │ │ │ │ ├── module.modulemap │ │ │ │ ├── sodium.h │ │ │ │ └── sodium │ │ │ │ │ ├── core.h │ │ │ │ │ ├── crypto_aead_aegis128l.h │ │ │ │ │ ├── crypto_aead_aegis256.h │ │ │ │ │ ├── crypto_aead_aes256gcm.h │ │ │ │ │ ├── crypto_aead_chacha20poly1305.h │ │ │ │ │ ├── crypto_aead_xchacha20poly1305.h │ │ │ │ │ ├── crypto_auth.h │ │ │ │ │ ├── crypto_auth_hmacsha256.h │ │ │ │ │ ├── crypto_auth_hmacsha512.h │ │ │ │ │ ├── crypto_auth_hmacsha512256.h │ │ │ │ │ ├── crypto_box.h │ │ │ │ │ ├── crypto_box_curve25519xchacha20poly1305.h │ │ │ │ │ ├── crypto_box_curve25519xsalsa20poly1305.h │ │ │ │ │ ├── crypto_core_ed25519.h │ │ │ │ │ ├── crypto_core_hchacha20.h │ │ │ │ │ ├── crypto_core_hsalsa20.h │ │ │ │ │ ├── crypto_core_ristretto255.h │ │ │ │ │ ├── crypto_core_salsa20.h │ │ │ │ │ ├── crypto_core_salsa2012.h │ │ │ │ │ ├── crypto_core_salsa208.h │ │ │ │ │ ├── crypto_generichash.h │ │ │ │ │ ├── crypto_generichash_blake2b.h │ │ │ │ │ ├── crypto_hash.h │ │ │ │ │ ├── crypto_hash_sha256.h │ │ │ │ │ ├── crypto_hash_sha512.h │ │ │ │ │ ├── crypto_kdf.h │ │ │ │ │ ├── crypto_kdf_blake2b.h │ │ │ │ │ ├── crypto_kdf_hkdf_sha256.h │ │ │ │ │ ├── crypto_kdf_hkdf_sha512.h │ │ │ │ │ ├── crypto_kx.h │ │ │ │ │ ├── crypto_onetimeauth.h │ │ │ │ │ ├── crypto_onetimeauth_poly1305.h │ │ │ │ │ ├── crypto_pwhash.h │ │ │ │ │ ├── crypto_pwhash_argon2i.h │ │ │ │ │ ├── crypto_pwhash_argon2id.h │ │ │ │ │ ├── crypto_pwhash_scryptsalsa208sha256.h │ │ │ │ │ ├── crypto_scalarmult.h │ │ │ │ │ ├── crypto_scalarmult_curve25519.h │ │ │ │ │ ├── crypto_scalarmult_ed25519.h │ │ │ │ │ ├── crypto_scalarmult_ristretto255.h │ │ │ │ │ ├── crypto_secretbox.h │ │ │ │ │ ├── crypto_secretbox_xchacha20poly1305.h │ │ │ │ │ ├── crypto_secretbox_xsalsa20poly1305.h │ │ │ │ │ ├── crypto_secretstream_xchacha20poly1305.h │ │ │ │ │ ├── crypto_shorthash.h │ │ │ │ │ ├── crypto_shorthash_siphash24.h │ │ │ │ │ ├── crypto_sign.h │ │ │ │ │ ├── crypto_sign_ed25519.h │ │ │ │ │ ├── crypto_stream.h │ │ │ │ │ ├── crypto_stream_chacha20.h │ │ │ │ │ ├── crypto_stream_salsa20.h │ │ │ │ │ ├── crypto_stream_salsa2012.h │ │ │ │ │ ├── crypto_stream_salsa208.h │ │ │ │ │ ├── crypto_stream_xchacha20.h │ │ │ │ │ ├── crypto_stream_xsalsa20.h │ │ │ │ │ ├── crypto_verify_16.h │ │ │ │ │ ├── crypto_verify_32.h │ │ │ │ │ ├── crypto_verify_64.h │ │ │ │ │ ├── export.h │ │ │ │ │ ├── randombytes.h │ │ │ │ │ ├── randombytes_internal_random.h │ │ │ │ │ ├── randombytes_sysrandom.h │ │ │ │ │ ├── runtime.h │ │ │ │ │ ├── utils.h │ │ │ │ │ └── version.h │ │ │ └── libsodium.a │ │ ├── ios-arm64_i386_x86_64-simulator │ │ │ ├── Headers │ │ │ │ ├── module.modulemap │ │ │ │ ├── sodium.h │ │ │ │ └── sodium │ │ │ │ │ ├── core.h │ │ │ │ │ ├── crypto_aead_aegis128l.h │ │ │ │ │ ├── crypto_aead_aegis256.h │ │ │ │ │ ├── crypto_aead_aes256gcm.h │ │ │ │ │ ├── crypto_aead_chacha20poly1305.h │ │ │ │ │ ├── crypto_aead_xchacha20poly1305.h │ │ │ │ │ ├── crypto_auth.h │ │ │ │ │ ├── crypto_auth_hmacsha256.h │ │ │ │ │ ├── crypto_auth_hmacsha512.h │ │ │ │ │ ├── crypto_auth_hmacsha512256.h │ │ │ │ │ ├── crypto_box.h │ │ │ │ │ ├── crypto_box_curve25519xchacha20poly1305.h │ │ │ │ │ ├── crypto_box_curve25519xsalsa20poly1305.h │ │ │ │ │ ├── crypto_core_ed25519.h │ │ │ │ │ ├── crypto_core_hchacha20.h │ │ │ │ │ ├── crypto_core_hsalsa20.h │ │ │ │ │ ├── crypto_core_ristretto255.h │ │ │ │ │ ├── crypto_core_salsa20.h │ │ │ │ │ ├── crypto_core_salsa2012.h │ │ │ │ │ ├── crypto_core_salsa208.h │ │ │ │ │ ├── crypto_generichash.h │ │ │ │ │ ├── crypto_generichash_blake2b.h │ │ │ │ │ ├── crypto_hash.h │ │ │ │ │ ├── crypto_hash_sha256.h │ │ │ │ │ ├── crypto_hash_sha512.h │ │ │ │ │ ├── crypto_kdf.h │ │ │ │ │ ├── crypto_kdf_blake2b.h │ │ │ │ │ ├── crypto_kdf_hkdf_sha256.h │ │ │ │ │ ├── crypto_kdf_hkdf_sha512.h │ │ │ │ │ ├── crypto_kx.h │ │ │ │ │ ├── crypto_onetimeauth.h │ │ │ │ │ ├── crypto_onetimeauth_poly1305.h │ │ │ │ │ ├── crypto_pwhash.h │ │ │ │ │ ├── crypto_pwhash_argon2i.h │ │ │ │ │ ├── crypto_pwhash_argon2id.h │ │ │ │ │ ├── crypto_pwhash_scryptsalsa208sha256.h │ │ │ │ │ ├── crypto_scalarmult.h │ │ │ │ │ ├── crypto_scalarmult_curve25519.h │ │ │ │ │ ├── crypto_scalarmult_ed25519.h │ │ │ │ │ ├── crypto_scalarmult_ristretto255.h │ │ │ │ │ ├── crypto_secretbox.h │ │ │ │ │ ├── crypto_secretbox_xchacha20poly1305.h │ │ │ │ │ ├── crypto_secretbox_xsalsa20poly1305.h │ │ │ │ │ ├── crypto_secretstream_xchacha20poly1305.h │ │ │ │ │ ├── crypto_shorthash.h │ │ │ │ │ ├── crypto_shorthash_siphash24.h │ │ │ │ │ ├── crypto_sign.h │ │ │ │ │ ├── crypto_sign_ed25519.h │ │ │ │ │ ├── crypto_stream.h │ │ │ │ │ ├── crypto_stream_chacha20.h │ │ │ │ │ ├── crypto_stream_salsa20.h │ │ │ │ │ ├── crypto_stream_salsa2012.h │ │ │ │ │ ├── crypto_stream_salsa208.h │ │ │ │ │ ├── crypto_stream_xchacha20.h │ │ │ │ │ ├── crypto_stream_xsalsa20.h │ │ │ │ │ ├── crypto_verify_16.h │ │ │ │ │ ├── crypto_verify_32.h │ │ │ │ │ ├── crypto_verify_64.h │ │ │ │ │ ├── export.h │ │ │ │ │ ├── randombytes.h │ │ │ │ │ ├── randombytes_internal_random.h │ │ │ │ │ ├── randombytes_sysrandom.h │ │ │ │ │ ├── runtime.h │ │ │ │ │ ├── utils.h │ │ │ │ │ └── version.h │ │ │ └── libsodium.a │ │ ├── ios-arm64_x86_64-maccatalyst │ │ │ ├── Headers │ │ │ │ ├── module.modulemap │ │ │ │ ├── sodium.h │ │ │ │ └── sodium │ │ │ │ │ ├── core.h │ │ │ │ │ ├── crypto_aead_aegis128l.h │ │ │ │ │ ├── crypto_aead_aegis256.h │ │ │ │ │ ├── crypto_aead_aes256gcm.h │ │ │ │ │ ├── crypto_aead_chacha20poly1305.h │ │ │ │ │ ├── crypto_aead_xchacha20poly1305.h │ │ │ │ │ ├── crypto_auth.h │ │ │ │ │ ├── crypto_auth_hmacsha256.h │ │ │ │ │ ├── crypto_auth_hmacsha512.h │ │ │ │ │ ├── crypto_auth_hmacsha512256.h │ │ │ │ │ ├── crypto_box.h │ │ │ │ │ ├── crypto_box_curve25519xchacha20poly1305.h │ │ │ │ │ ├── crypto_box_curve25519xsalsa20poly1305.h │ │ │ │ │ ├── crypto_core_ed25519.h │ │ │ │ │ ├── crypto_core_hchacha20.h │ │ │ │ │ ├── crypto_core_hsalsa20.h │ │ │ │ │ ├── crypto_core_ristretto255.h │ │ │ │ │ ├── crypto_core_salsa20.h │ │ │ │ │ ├── crypto_core_salsa2012.h │ │ │ │ │ ├── crypto_core_salsa208.h │ │ │ │ │ ├── crypto_generichash.h │ │ │ │ │ ├── crypto_generichash_blake2b.h │ │ │ │ │ ├── crypto_hash.h │ │ │ │ │ ├── crypto_hash_sha256.h │ │ │ │ │ ├── crypto_hash_sha512.h │ │ │ │ │ ├── crypto_kdf.h │ │ │ │ │ ├── crypto_kdf_blake2b.h │ │ │ │ │ ├── crypto_kdf_hkdf_sha256.h │ │ │ │ │ ├── crypto_kdf_hkdf_sha512.h │ │ │ │ │ ├── crypto_kx.h │ │ │ │ │ ├── crypto_onetimeauth.h │ │ │ │ │ ├── crypto_onetimeauth_poly1305.h │ │ │ │ │ ├── crypto_pwhash.h │ │ │ │ │ ├── crypto_pwhash_argon2i.h │ │ │ │ │ ├── crypto_pwhash_argon2id.h │ │ │ │ │ ├── crypto_pwhash_scryptsalsa208sha256.h │ │ │ │ │ ├── crypto_scalarmult.h │ │ │ │ │ ├── crypto_scalarmult_curve25519.h │ │ │ │ │ ├── crypto_scalarmult_ed25519.h │ │ │ │ │ ├── crypto_scalarmult_ristretto255.h │ │ │ │ │ ├── crypto_secretbox.h │ │ │ │ │ ├── crypto_secretbox_xchacha20poly1305.h │ │ │ │ │ ├── crypto_secretbox_xsalsa20poly1305.h │ │ │ │ │ ├── crypto_secretstream_xchacha20poly1305.h │ │ │ │ │ ├── crypto_shorthash.h │ │ │ │ │ ├── crypto_shorthash_siphash24.h │ │ │ │ │ ├── crypto_sign.h │ │ │ │ │ ├── crypto_sign_ed25519.h │ │ │ │ │ ├── crypto_stream.h │ │ │ │ │ ├── crypto_stream_chacha20.h │ │ │ │ │ ├── crypto_stream_salsa20.h │ │ │ │ │ ├── crypto_stream_salsa2012.h │ │ │ │ │ ├── crypto_stream_salsa208.h │ │ │ │ │ ├── crypto_stream_xchacha20.h │ │ │ │ │ ├── crypto_stream_xsalsa20.h │ │ │ │ │ ├── crypto_verify_16.h │ │ │ │ │ ├── crypto_verify_32.h │ │ │ │ │ ├── crypto_verify_64.h │ │ │ │ │ ├── export.h │ │ │ │ │ ├── randombytes.h │ │ │ │ │ ├── randombytes_internal_random.h │ │ │ │ │ ├── randombytes_sysrandom.h │ │ │ │ │ ├── runtime.h │ │ │ │ │ ├── utils.h │ │ │ │ │ └── version.h │ │ │ └── libsodium.a │ │ ├── macos-arm64_x86_64 │ │ │ ├── Headers │ │ │ │ ├── module.modulemap │ │ │ │ ├── sodium.h │ │ │ │ └── sodium │ │ │ │ │ ├── core.h │ │ │ │ │ ├── crypto_aead_aegis128l.h │ │ │ │ │ ├── crypto_aead_aegis256.h │ │ │ │ │ ├── crypto_aead_aes256gcm.h │ │ │ │ │ ├── crypto_aead_chacha20poly1305.h │ │ │ │ │ ├── crypto_aead_xchacha20poly1305.h │ │ │ │ │ ├── crypto_auth.h │ │ │ │ │ ├── crypto_auth_hmacsha256.h │ │ │ │ │ ├── crypto_auth_hmacsha512.h │ │ │ │ │ ├── crypto_auth_hmacsha512256.h │ │ │ │ │ ├── crypto_box.h │ │ │ │ │ ├── crypto_box_curve25519xchacha20poly1305.h │ │ │ │ │ ├── crypto_box_curve25519xsalsa20poly1305.h │ │ │ │ │ ├── crypto_core_ed25519.h │ │ │ │ │ ├── crypto_core_hchacha20.h │ │ │ │ │ ├── crypto_core_hsalsa20.h │ │ │ │ │ ├── crypto_core_ristretto255.h │ │ │ │ │ ├── crypto_core_salsa20.h │ │ │ │ │ ├── crypto_core_salsa2012.h │ │ │ │ │ ├── crypto_core_salsa208.h │ │ │ │ │ ├── crypto_generichash.h │ │ │ │ │ ├── crypto_generichash_blake2b.h │ │ │ │ │ ├── crypto_hash.h │ │ │ │ │ ├── crypto_hash_sha256.h │ │ │ │ │ ├── crypto_hash_sha512.h │ │ │ │ │ ├── crypto_kdf.h │ │ │ │ │ ├── crypto_kdf_blake2b.h │ │ │ │ │ ├── crypto_kdf_hkdf_sha256.h │ │ │ │ │ ├── crypto_kdf_hkdf_sha512.h │ │ │ │ │ ├── crypto_kx.h │ │ │ │ │ ├── crypto_onetimeauth.h │ │ │ │ │ ├── crypto_onetimeauth_poly1305.h │ │ │ │ │ ├── crypto_pwhash.h │ │ │ │ │ ├── crypto_pwhash_argon2i.h │ │ │ │ │ ├── crypto_pwhash_argon2id.h │ │ │ │ │ ├── crypto_pwhash_scryptsalsa208sha256.h │ │ │ │ │ ├── crypto_scalarmult.h │ │ │ │ │ ├── crypto_scalarmult_curve25519.h │ │ │ │ │ ├── crypto_scalarmult_ed25519.h │ │ │ │ │ ├── crypto_scalarmult_ristretto255.h │ │ │ │ │ ├── crypto_secretbox.h │ │ │ │ │ ├── crypto_secretbox_xchacha20poly1305.h │ │ │ │ │ ├── crypto_secretbox_xsalsa20poly1305.h │ │ │ │ │ ├── crypto_secretstream_xchacha20poly1305.h │ │ │ │ │ ├── crypto_shorthash.h │ │ │ │ │ ├── crypto_shorthash_siphash24.h │ │ │ │ │ ├── crypto_sign.h │ │ │ │ │ ├── crypto_sign_ed25519.h │ │ │ │ │ ├── crypto_stream.h │ │ │ │ │ ├── crypto_stream_chacha20.h │ │ │ │ │ ├── crypto_stream_salsa20.h │ │ │ │ │ ├── crypto_stream_salsa2012.h │ │ │ │ │ ├── crypto_stream_salsa208.h │ │ │ │ │ ├── crypto_stream_xchacha20.h │ │ │ │ │ ├── crypto_stream_xsalsa20.h │ │ │ │ │ ├── crypto_verify_16.h │ │ │ │ │ ├── crypto_verify_32.h │ │ │ │ │ ├── crypto_verify_64.h │ │ │ │ │ ├── export.h │ │ │ │ │ ├── randombytes.h │ │ │ │ │ ├── randombytes_internal_random.h │ │ │ │ │ ├── randombytes_sysrandom.h │ │ │ │ │ ├── runtime.h │ │ │ │ │ ├── utils.h │ │ │ │ │ └── version.h │ │ │ └── libsodium.a │ │ ├── tvos-arm64 │ │ │ ├── Headers │ │ │ │ ├── module.modulemap │ │ │ │ ├── sodium.h │ │ │ │ └── sodium │ │ │ │ │ ├── core.h │ │ │ │ │ ├── crypto_aead_aegis128l.h │ │ │ │ │ ├── crypto_aead_aegis256.h │ │ │ │ │ ├── crypto_aead_aes256gcm.h │ │ │ │ │ ├── crypto_aead_chacha20poly1305.h │ │ │ │ │ ├── crypto_aead_xchacha20poly1305.h │ │ │ │ │ ├── crypto_auth.h │ │ │ │ │ ├── crypto_auth_hmacsha256.h │ │ │ │ │ ├── crypto_auth_hmacsha512.h │ │ │ │ │ ├── crypto_auth_hmacsha512256.h │ │ │ │ │ ├── crypto_box.h │ │ │ │ │ ├── crypto_box_curve25519xchacha20poly1305.h │ │ │ │ │ ├── crypto_box_curve25519xsalsa20poly1305.h │ │ │ │ │ ├── crypto_core_ed25519.h │ │ │ │ │ ├── crypto_core_hchacha20.h │ │ │ │ │ ├── crypto_core_hsalsa20.h │ │ │ │ │ ├── crypto_core_ristretto255.h │ │ │ │ │ ├── crypto_core_salsa20.h │ │ │ │ │ ├── crypto_core_salsa2012.h │ │ │ │ │ ├── crypto_core_salsa208.h │ │ │ │ │ ├── crypto_generichash.h │ │ │ │ │ ├── crypto_generichash_blake2b.h │ │ │ │ │ ├── crypto_hash.h │ │ │ │ │ ├── crypto_hash_sha256.h │ │ │ │ │ ├── crypto_hash_sha512.h │ │ │ │ │ ├── crypto_kdf.h │ │ │ │ │ ├── crypto_kdf_blake2b.h │ │ │ │ │ ├── crypto_kdf_hkdf_sha256.h │ │ │ │ │ ├── crypto_kdf_hkdf_sha512.h │ │ │ │ │ ├── crypto_kx.h │ │ │ │ │ ├── crypto_onetimeauth.h │ │ │ │ │ ├── crypto_onetimeauth_poly1305.h │ │ │ │ │ ├── crypto_pwhash.h │ │ │ │ │ ├── crypto_pwhash_argon2i.h │ │ │ │ │ ├── crypto_pwhash_argon2id.h │ │ │ │ │ ├── crypto_pwhash_scryptsalsa208sha256.h │ │ │ │ │ ├── crypto_scalarmult.h │ │ │ │ │ ├── crypto_scalarmult_curve25519.h │ │ │ │ │ ├── crypto_scalarmult_ed25519.h │ │ │ │ │ ├── crypto_scalarmult_ristretto255.h │ │ │ │ │ ├── crypto_secretbox.h │ │ │ │ │ ├── crypto_secretbox_xchacha20poly1305.h │ │ │ │ │ ├── crypto_secretbox_xsalsa20poly1305.h │ │ │ │ │ ├── crypto_secretstream_xchacha20poly1305.h │ │ │ │ │ ├── crypto_shorthash.h │ │ │ │ │ ├── crypto_shorthash_siphash24.h │ │ │ │ │ ├── crypto_sign.h │ │ │ │ │ ├── crypto_sign_ed25519.h │ │ │ │ │ ├── crypto_stream.h │ │ │ │ │ ├── crypto_stream_chacha20.h │ │ │ │ │ ├── crypto_stream_salsa20.h │ │ │ │ │ ├── crypto_stream_salsa2012.h │ │ │ │ │ ├── crypto_stream_salsa208.h │ │ │ │ │ ├── crypto_stream_xchacha20.h │ │ │ │ │ ├── crypto_stream_xsalsa20.h │ │ │ │ │ ├── crypto_verify_16.h │ │ │ │ │ ├── crypto_verify_32.h │ │ │ │ │ ├── crypto_verify_64.h │ │ │ │ │ ├── export.h │ │ │ │ │ ├── randombytes.h │ │ │ │ │ ├── randombytes_internal_random.h │ │ │ │ │ ├── randombytes_sysrandom.h │ │ │ │ │ ├── runtime.h │ │ │ │ │ ├── utils.h │ │ │ │ │ └── version.h │ │ │ └── libsodium.a │ │ ├── tvos-arm64_x86_64-simulator │ │ │ ├── Headers │ │ │ │ ├── module.modulemap │ │ │ │ ├── sodium.h │ │ │ │ └── sodium │ │ │ │ │ ├── core.h │ │ │ │ │ ├── crypto_aead_aegis128l.h │ │ │ │ │ ├── crypto_aead_aegis256.h │ │ │ │ │ ├── crypto_aead_aes256gcm.h │ │ │ │ │ ├── crypto_aead_chacha20poly1305.h │ │ │ │ │ ├── crypto_aead_xchacha20poly1305.h │ │ │ │ │ ├── crypto_auth.h │ │ │ │ │ ├── crypto_auth_hmacsha256.h │ │ │ │ │ ├── crypto_auth_hmacsha512.h │ │ │ │ │ ├── crypto_auth_hmacsha512256.h │ │ │ │ │ ├── crypto_box.h │ │ │ │ │ ├── crypto_box_curve25519xchacha20poly1305.h │ │ │ │ │ ├── crypto_box_curve25519xsalsa20poly1305.h │ │ │ │ │ ├── crypto_core_ed25519.h │ │ │ │ │ ├── crypto_core_hchacha20.h │ │ │ │ │ ├── crypto_core_hsalsa20.h │ │ │ │ │ ├── crypto_core_ristretto255.h │ │ │ │ │ ├── crypto_core_salsa20.h │ │ │ │ │ ├── crypto_core_salsa2012.h │ │ │ │ │ ├── crypto_core_salsa208.h │ │ │ │ │ ├── crypto_generichash.h │ │ │ │ │ ├── crypto_generichash_blake2b.h │ │ │ │ │ ├── crypto_hash.h │ │ │ │ │ ├── crypto_hash_sha256.h │ │ │ │ │ ├── crypto_hash_sha512.h │ │ │ │ │ ├── crypto_kdf.h │ │ │ │ │ ├── crypto_kdf_blake2b.h │ │ │ │ │ ├── crypto_kdf_hkdf_sha256.h │ │ │ │ │ ├── crypto_kdf_hkdf_sha512.h │ │ │ │ │ ├── crypto_kx.h │ │ │ │ │ ├── crypto_onetimeauth.h │ │ │ │ │ ├── crypto_onetimeauth_poly1305.h │ │ │ │ │ ├── crypto_pwhash.h │ │ │ │ │ ├── crypto_pwhash_argon2i.h │ │ │ │ │ ├── crypto_pwhash_argon2id.h │ │ │ │ │ ├── crypto_pwhash_scryptsalsa208sha256.h │ │ │ │ │ ├── crypto_scalarmult.h │ │ │ │ │ ├── crypto_scalarmult_curve25519.h │ │ │ │ │ ├── crypto_scalarmult_ed25519.h │ │ │ │ │ ├── crypto_scalarmult_ristretto255.h │ │ │ │ │ ├── crypto_secretbox.h │ │ │ │ │ ├── crypto_secretbox_xchacha20poly1305.h │ │ │ │ │ ├── crypto_secretbox_xsalsa20poly1305.h │ │ │ │ │ ├── crypto_secretstream_xchacha20poly1305.h │ │ │ │ │ ├── crypto_shorthash.h │ │ │ │ │ ├── crypto_shorthash_siphash24.h │ │ │ │ │ ├── crypto_sign.h │ │ │ │ │ ├── crypto_sign_ed25519.h │ │ │ │ │ ├── crypto_stream.h │ │ │ │ │ ├── crypto_stream_chacha20.h │ │ │ │ │ ├── crypto_stream_salsa20.h │ │ │ │ │ ├── crypto_stream_salsa2012.h │ │ │ │ │ ├── crypto_stream_salsa208.h │ │ │ │ │ ├── crypto_stream_xchacha20.h │ │ │ │ │ ├── crypto_stream_xsalsa20.h │ │ │ │ │ ├── crypto_verify_16.h │ │ │ │ │ ├── crypto_verify_32.h │ │ │ │ │ ├── crypto_verify_64.h │ │ │ │ │ ├── export.h │ │ │ │ │ ├── randombytes.h │ │ │ │ │ ├── randombytes_internal_random.h │ │ │ │ │ ├── randombytes_sysrandom.h │ │ │ │ │ ├── runtime.h │ │ │ │ │ ├── utils.h │ │ │ │ │ └── version.h │ │ │ └── libsodium.a │ │ ├── watchos-arm64_arm64_32_armv7k │ │ │ ├── Headers │ │ │ │ ├── module.modulemap │ │ │ │ ├── sodium.h │ │ │ │ └── sodium │ │ │ │ │ ├── core.h │ │ │ │ │ ├── crypto_aead_aegis128l.h │ │ │ │ │ ├── crypto_aead_aegis256.h │ │ │ │ │ ├── crypto_aead_aes256gcm.h │ │ │ │ │ ├── crypto_aead_chacha20poly1305.h │ │ │ │ │ ├── crypto_aead_xchacha20poly1305.h │ │ │ │ │ ├── crypto_auth.h │ │ │ │ │ ├── crypto_auth_hmacsha256.h │ │ │ │ │ ├── crypto_auth_hmacsha512.h │ │ │ │ │ ├── crypto_auth_hmacsha512256.h │ │ │ │ │ ├── crypto_box.h │ │ │ │ │ ├── crypto_box_curve25519xchacha20poly1305.h │ │ │ │ │ ├── crypto_box_curve25519xsalsa20poly1305.h │ │ │ │ │ ├── crypto_core_ed25519.h │ │ │ │ │ ├── crypto_core_hchacha20.h │ │ │ │ │ ├── crypto_core_hsalsa20.h │ │ │ │ │ ├── crypto_core_ristretto255.h │ │ │ │ │ ├── crypto_core_salsa20.h │ │ │ │ │ ├── crypto_core_salsa2012.h │ │ │ │ │ ├── crypto_core_salsa208.h │ │ │ │ │ ├── crypto_generichash.h │ │ │ │ │ ├── crypto_generichash_blake2b.h │ │ │ │ │ ├── crypto_hash.h │ │ │ │ │ ├── crypto_hash_sha256.h │ │ │ │ │ ├── crypto_hash_sha512.h │ │ │ │ │ ├── crypto_kdf.h │ │ │ │ │ ├── crypto_kdf_blake2b.h │ │ │ │ │ ├── crypto_kdf_hkdf_sha256.h │ │ │ │ │ ├── crypto_kdf_hkdf_sha512.h │ │ │ │ │ ├── crypto_kx.h │ │ │ │ │ ├── crypto_onetimeauth.h │ │ │ │ │ ├── crypto_onetimeauth_poly1305.h │ │ │ │ │ ├── crypto_pwhash.h │ │ │ │ │ ├── crypto_pwhash_argon2i.h │ │ │ │ │ ├── crypto_pwhash_argon2id.h │ │ │ │ │ ├── crypto_pwhash_scryptsalsa208sha256.h │ │ │ │ │ ├── crypto_scalarmult.h │ │ │ │ │ ├── crypto_scalarmult_curve25519.h │ │ │ │ │ ├── crypto_scalarmult_ed25519.h │ │ │ │ │ ├── crypto_scalarmult_ristretto255.h │ │ │ │ │ ├── crypto_secretbox.h │ │ │ │ │ ├── crypto_secretbox_xchacha20poly1305.h │ │ │ │ │ ├── crypto_secretbox_xsalsa20poly1305.h │ │ │ │ │ ├── crypto_secretstream_xchacha20poly1305.h │ │ │ │ │ ├── crypto_shorthash.h │ │ │ │ │ ├── crypto_shorthash_siphash24.h │ │ │ │ │ ├── crypto_sign.h │ │ │ │ │ ├── crypto_sign_ed25519.h │ │ │ │ │ ├── crypto_stream.h │ │ │ │ │ ├── crypto_stream_chacha20.h │ │ │ │ │ ├── crypto_stream_salsa20.h │ │ │ │ │ ├── crypto_stream_salsa2012.h │ │ │ │ │ ├── crypto_stream_salsa208.h │ │ │ │ │ ├── crypto_stream_xchacha20.h │ │ │ │ │ ├── crypto_stream_xsalsa20.h │ │ │ │ │ ├── crypto_verify_16.h │ │ │ │ │ ├── crypto_verify_32.h │ │ │ │ │ ├── crypto_verify_64.h │ │ │ │ │ ├── export.h │ │ │ │ │ ├── randombytes.h │ │ │ │ │ ├── randombytes_internal_random.h │ │ │ │ │ ├── randombytes_sysrandom.h │ │ │ │ │ ├── runtime.h │ │ │ │ │ ├── utils.h │ │ │ │ │ └── version.h │ │ │ └── libsodium.a │ │ └── watchos-arm64_i386_x86_64-simulator │ │ │ ├── Headers │ │ │ ├── module.modulemap │ │ │ ├── sodium.h │ │ │ └── sodium │ │ │ │ ├── core.h │ │ │ │ ├── crypto_aead_aegis128l.h │ │ │ │ ├── crypto_aead_aegis256.h │ │ │ │ ├── crypto_aead_aes256gcm.h │ │ │ │ ├── crypto_aead_chacha20poly1305.h │ │ │ │ ├── crypto_aead_xchacha20poly1305.h │ │ │ │ ├── crypto_auth.h │ │ │ │ ├── crypto_auth_hmacsha256.h │ │ │ │ ├── crypto_auth_hmacsha512.h │ │ │ │ ├── crypto_auth_hmacsha512256.h │ │ │ │ ├── crypto_box.h │ │ │ │ ├── crypto_box_curve25519xchacha20poly1305.h │ │ │ │ ├── crypto_box_curve25519xsalsa20poly1305.h │ │ │ │ ├── crypto_core_ed25519.h │ │ │ │ ├── crypto_core_hchacha20.h │ │ │ │ ├── crypto_core_hsalsa20.h │ │ │ │ ├── crypto_core_ristretto255.h │ │ │ │ ├── crypto_core_salsa20.h │ │ │ │ ├── crypto_core_salsa2012.h │ │ │ │ ├── crypto_core_salsa208.h │ │ │ │ ├── crypto_generichash.h │ │ │ │ ├── crypto_generichash_blake2b.h │ │ │ │ ├── crypto_hash.h │ │ │ │ ├── crypto_hash_sha256.h │ │ │ │ ├── crypto_hash_sha512.h │ │ │ │ ├── crypto_kdf.h │ │ │ │ ├── crypto_kdf_blake2b.h │ │ │ │ ├── crypto_kdf_hkdf_sha256.h │ │ │ │ ├── crypto_kdf_hkdf_sha512.h │ │ │ │ ├── crypto_kx.h │ │ │ │ ├── crypto_onetimeauth.h │ │ │ │ ├── crypto_onetimeauth_poly1305.h │ │ │ │ ├── crypto_pwhash.h │ │ │ │ ├── crypto_pwhash_argon2i.h │ │ │ │ ├── crypto_pwhash_argon2id.h │ │ │ │ ├── crypto_pwhash_scryptsalsa208sha256.h │ │ │ │ ├── crypto_scalarmult.h │ │ │ │ ├── crypto_scalarmult_curve25519.h │ │ │ │ ├── crypto_scalarmult_ed25519.h │ │ │ │ ├── crypto_scalarmult_ristretto255.h │ │ │ │ ├── crypto_secretbox.h │ │ │ │ ├── crypto_secretbox_xchacha20poly1305.h │ │ │ │ ├── crypto_secretbox_xsalsa20poly1305.h │ │ │ │ ├── crypto_secretstream_xchacha20poly1305.h │ │ │ │ ├── crypto_shorthash.h │ │ │ │ ├── crypto_shorthash_siphash24.h │ │ │ │ ├── crypto_sign.h │ │ │ │ ├── crypto_sign_ed25519.h │ │ │ │ ├── crypto_stream.h │ │ │ │ ├── crypto_stream_chacha20.h │ │ │ │ ├── crypto_stream_salsa20.h │ │ │ │ ├── crypto_stream_salsa2012.h │ │ │ │ ├── crypto_stream_salsa208.h │ │ │ │ ├── crypto_stream_xchacha20.h │ │ │ │ ├── crypto_stream_xsalsa20.h │ │ │ │ ├── crypto_verify_16.h │ │ │ │ ├── crypto_verify_32.h │ │ │ │ ├── crypto_verify_64.h │ │ │ │ ├── export.h │ │ │ │ ├── randombytes.h │ │ │ │ ├── randombytes_internal_random.h │ │ │ │ ├── randombytes_sysrandom.h │ │ │ │ ├── runtime.h │ │ │ │ ├── utils.h │ │ │ │ └── version.h │ │ │ └── libsodium.a │ │ ├── Sodium.h │ │ └── Sources │ │ ├── Aead.swift │ │ ├── Auth.swift │ │ ├── Box.swift │ │ ├── Bytes.swift │ │ ├── ExitCode.swift │ │ ├── Generators │ │ ├── KeyPairGenerator.swift │ │ ├── KeyPairProtocol.swift │ │ ├── NonceGenerator.swift │ │ └── SecretKeyGenerator.swift │ │ ├── GenericHash.swift │ │ ├── KeyDerivation.swift │ │ ├── KeyExchange.swift │ │ ├── PWHash.swift │ │ ├── RandomBytes.swift │ │ ├── SecretBox.swift │ │ ├── SecretStream.swift │ │ ├── ShortHash.swift │ │ ├── Sign.swift │ │ ├── Sodium.h │ │ ├── Sodium.swift │ │ ├── Stream.swift │ │ ├── Utils.swift │ │ ├── Version.swift │ │ └── libsodium │ │ ├── core.h │ │ ├── crypto_aead_aes256gcm.h │ │ ├── crypto_aead_chacha20poly1305.h │ │ ├── crypto_aead_xchacha20poly1305.h │ │ ├── crypto_auth.h │ │ ├── crypto_auth_hmacsha256.h │ │ ├── crypto_auth_hmacsha512.h │ │ ├── crypto_auth_hmacsha512256.h │ │ ├── crypto_box.h │ │ ├── crypto_box_curve25519xchacha20poly1305.h │ │ ├── crypto_box_curve25519xsalsa20poly1305.h │ │ ├── crypto_core_curve25519.h │ │ ├── crypto_core_ed25519.h │ │ ├── crypto_core_hchacha20.h │ │ ├── crypto_core_hsalsa20.h │ │ ├── crypto_core_ristretto255.h │ │ ├── crypto_core_salsa20.h │ │ ├── crypto_core_salsa2012.h │ │ ├── crypto_core_salsa208.h │ │ ├── crypto_generichash.h │ │ ├── crypto_generichash_blake2b.h │ │ ├── crypto_hash.h │ │ ├── crypto_hash_sha256.h │ │ ├── crypto_hash_sha512.h │ │ ├── crypto_kdf.h │ │ ├── crypto_kdf_blake2b.h │ │ ├── crypto_kx.h │ │ ├── crypto_onetimeauth.h │ │ ├── crypto_onetimeauth_poly1305.h │ │ ├── crypto_pwhash.h │ │ ├── crypto_pwhash_argon2i.h │ │ ├── crypto_pwhash_argon2id.h │ │ ├── crypto_pwhash_scryptsalsa208sha256.h │ │ ├── crypto_scalarmult.h │ │ ├── crypto_scalarmult_curve25519.h │ │ ├── crypto_scalarmult_ed25519.h │ │ ├── crypto_scalarmult_ristretto255.h │ │ ├── crypto_secretbox.h │ │ ├── crypto_secretbox_xchacha20poly1305.h │ │ ├── crypto_secretbox_xsalsa20poly1305.h │ │ ├── crypto_secretstream_xchacha20poly1305.h │ │ ├── crypto_shorthash.h │ │ ├── crypto_shorthash_siphash24.h │ │ ├── crypto_sign.h │ │ ├── crypto_sign_ed25519.h │ │ ├── crypto_sign_edwards25519sha512batch.h │ │ ├── crypto_stream.h │ │ ├── crypto_stream_chacha20.h │ │ ├── crypto_stream_salsa20.h │ │ ├── crypto_stream_salsa2012.h │ │ ├── crypto_stream_salsa208.h │ │ ├── crypto_stream_xchacha20.h │ │ ├── crypto_stream_xsalsa20.h │ │ ├── crypto_verify_16.h │ │ ├── crypto_verify_32.h │ │ ├── crypto_verify_64.h │ │ ├── export.h │ │ ├── randombytes.h │ │ ├── randombytes_internal_random.h │ │ ├── randombytes_sysrandom.h │ │ ├── runtime.h │ │ ├── sodium_lib.h │ │ ├── utils.h │ │ └── version.h ├── SwiftSignalKit │ ├── SwiftSignalKit.xcodeproj │ │ └── project.pbxproj │ └── SwiftSignalKit │ │ ├── Source │ │ ├── Atomic.swift │ │ ├── Bag.swift │ │ ├── Disposable.swift │ │ ├── Lock.swift │ │ ├── Multicast.swift │ │ ├── Promise.swift │ │ ├── Queue.swift │ │ ├── QueueLocalObject.swift │ │ ├── Signal.swift │ │ ├── Signal_Catch.swift │ │ ├── Signal_Combine.swift │ │ ├── Signal_Dispatch.swift │ │ ├── Signal_Loop.swift │ │ ├── Signal_Mapping.swift │ │ ├── Signal_Materialize.swift │ │ ├── Signal_Merge.swift │ │ ├── Signal_Meta.swift │ │ ├── Signal_Reduce.swift │ │ ├── Signal_SideEffects.swift │ │ ├── Signal_Single.swift │ │ ├── Signal_Take.swift │ │ ├── Signal_Timing.swift │ │ ├── Subscriber.swift │ │ ├── ThreadPool.swift │ │ ├── Timer.swift │ │ └── ValuePipe.swift │ │ └── SwiftSignalKit.h ├── SwiftyJS │ ├── SwiftyJS.xcodeproj │ │ └── project.pbxproj │ └── SwiftyJS │ │ ├── Sources │ │ ├── JSActor.swift │ │ ├── JSBundle.swift │ │ ├── JSError.swift │ │ ├── JSFunctions.swift │ │ └── JSModule.swift │ │ └── SwiftyJS.h ├── SwiftyTON │ ├── SwiftyTON.xcodeproj │ │ └── project.pbxproj │ └── SwiftyTON │ │ ├── Sources │ │ ├── Address │ │ │ ├── Address.Converter.swift │ │ │ ├── Address.swift │ │ │ ├── ConcreteAddress.Flags.swift │ │ │ ├── ConcreteAddress.StringRepresentation.swift │ │ │ ├── ConcreteAddress.swift │ │ │ ├── CustomConcreteAddressConvertible.swift │ │ │ ├── DNSAddress.swift │ │ │ └── DisplayableAddress.swift │ │ ├── AnnouncementCenter │ │ │ ├── Announcement.swift │ │ │ ├── AnnouncementCenter.swift │ │ │ └── Announcements │ │ │ │ ├── AnnouncementConfiguration.swift │ │ │ │ └── AnnouncementSynchronization.swift │ │ ├── BOC │ │ │ └── BOC.swift │ │ ├── Configuration │ │ │ ├── Configuration.Logging.swift │ │ │ ├── Configuration.Network.swift │ │ │ └── Configuration.swift │ │ ├── Contract │ │ │ ├── Contract.ExecutionResult.swift │ │ │ ├── Contract.Info.swift │ │ │ ├── Contract.InitialCondition.swift │ │ │ ├── Contract.Kind.swift │ │ │ └── Contract.swift │ │ ├── Currency │ │ │ ├── Currency.swift │ │ │ └── CurrencyFormatter.swift │ │ ├── Errors │ │ │ ├── AddressError.swift │ │ │ ├── ContractError.swift │ │ │ ├── KeyError.swift │ │ │ ├── LiteserverError.swift │ │ │ ├── MessageError.swift │ │ │ ├── RetryableError.swift │ │ │ └── UndefinedError.swift │ │ ├── Extensions │ │ │ ├── BytesConvertible.swift │ │ │ ├── CheckedContinuation.swift │ │ │ ├── ContiguousBytes.swift │ │ │ ├── Data.swift │ │ │ ├── Date.swift │ │ │ ├── Functions.swift │ │ │ ├── NSRegularExpression.swift │ │ │ ├── String.swift │ │ │ └── URLSession.swift │ │ ├── GlossyTONWrapper │ │ │ └── GlossyTONWrapper.swift │ │ ├── Key │ │ │ └── Key.swift │ │ ├── Message │ │ │ └── Message.swift │ │ ├── Resources │ │ │ └── Configurations │ │ │ │ ├── mainnet │ │ │ │ └── testnet │ │ ├── SMC │ │ │ ├── Jettons │ │ │ │ ├── Jetton1 │ │ │ │ │ ├── JettonMinter1.swift │ │ │ │ │ └── JettonWallet1.swift │ │ │ │ ├── JettonMinter.Convenience.swift │ │ │ │ ├── JettonMinter.swift │ │ │ │ ├── JettonWallet.Convenience.swift │ │ │ │ └── JettonWallet.swift │ │ │ └── Wallets │ │ │ │ ├── AnyWallet.swift │ │ │ │ ├── Wallet.Convenience.swift │ │ │ │ ├── Wallet.swift │ │ │ │ ├── Wallet2 │ │ │ │ ├── Wallet2.Revision.swift │ │ │ │ └── Wallet2.swift │ │ │ │ ├── Wallet3 │ │ │ │ ├── Wallet3.Revision.swift │ │ │ │ ├── Wallet3.SubwalletID.swift │ │ │ │ └── Wallet3.swift │ │ │ │ └── Wallet4 │ │ │ │ ├── Wallet4.Revision.swift │ │ │ │ ├── Wallet4.SubwalletID.swift │ │ │ │ └── Wallet4.swift │ │ ├── SwiftyTON.swift │ │ └── Transaction │ │ │ ├── Transaction.ID.swift │ │ │ ├── Transaction.Message.Content.swift │ │ │ ├── Transaction.Message.swift │ │ │ └── Transaction.swift │ │ └── SwiftyTON.h ├── TON3 │ ├── TON3.xcodeproj │ │ └── project.pbxproj │ └── TON3 │ │ ├── Sources │ │ ├── Extensions │ │ │ └── JSBundle.swift │ │ ├── TON3.swift │ │ └── TON3Functions.swift │ │ └── TON3.h ├── TonBinding │ ├── TonBinding.xcodeproj │ │ └── project.pbxproj │ └── TonBinding │ │ ├── Sources │ │ ├── GTTONKey.h │ │ ├── GTTONKey.mm │ │ ├── NSData+SHA256.h │ │ ├── NSData+SHA256.m │ │ ├── TON.h │ │ └── TON.mm │ │ ├── TonBinding.h │ │ ├── openssl │ │ └── include │ │ │ └── openssl │ │ │ ├── aes.h │ │ │ ├── asn1.h │ │ │ ├── asn1_mac.h │ │ │ ├── asn1err.h │ │ │ ├── asn1t.h │ │ │ ├── async.h │ │ │ ├── asyncerr.h │ │ │ ├── bio.h │ │ │ ├── bioerr.h │ │ │ ├── blowfish.h │ │ │ ├── bn.h │ │ │ ├── bnerr.h │ │ │ ├── buffer.h │ │ │ ├── buffererr.h │ │ │ ├── camellia.h │ │ │ ├── cast.h │ │ │ ├── cmac.h │ │ │ ├── cms.h │ │ │ ├── cmserr.h │ │ │ ├── comp.h │ │ │ ├── comperr.h │ │ │ ├── conf.h │ │ │ ├── conf_api.h │ │ │ ├── conferr.h │ │ │ ├── crypto.h │ │ │ ├── cryptoerr.h │ │ │ ├── ct.h │ │ │ ├── cterr.h │ │ │ ├── des.h │ │ │ ├── dh.h │ │ │ ├── dherr.h │ │ │ ├── dsa.h │ │ │ ├── dsaerr.h │ │ │ ├── dtls1.h │ │ │ ├── e_os2.h │ │ │ ├── ebcdic.h │ │ │ ├── ec.h │ │ │ ├── ecdh.h │ │ │ ├── ecdsa.h │ │ │ ├── ecerr.h │ │ │ ├── engine.h │ │ │ ├── engineerr.h │ │ │ ├── err.h │ │ │ ├── evp.h │ │ │ ├── evperr.h │ │ │ ├── hmac.h │ │ │ ├── idea.h │ │ │ ├── kdf.h │ │ │ ├── kdferr.h │ │ │ ├── lhash.h │ │ │ ├── md2.h │ │ │ ├── md4.h │ │ │ ├── md5.h │ │ │ ├── mdc2.h │ │ │ ├── modes.h │ │ │ ├── obj_mac.h │ │ │ ├── objects.h │ │ │ ├── objectserr.h │ │ │ ├── ocsp.h │ │ │ ├── ocsperr.h │ │ │ ├── opensslconf.h │ │ │ ├── opensslv.h │ │ │ ├── ossl_typ.h │ │ │ ├── pem.h │ │ │ ├── pem2.h │ │ │ ├── pemerr.h │ │ │ ├── pkcs12.h │ │ │ ├── pkcs12err.h │ │ │ ├── pkcs7.h │ │ │ ├── pkcs7err.h │ │ │ ├── rand.h │ │ │ ├── rand_drbg.h │ │ │ ├── randerr.h │ │ │ ├── rc2.h │ │ │ ├── rc4.h │ │ │ ├── rc5.h │ │ │ ├── ripemd.h │ │ │ ├── rsa.h │ │ │ ├── rsaerr.h │ │ │ ├── safestack.h │ │ │ ├── seed.h │ │ │ ├── sha.h │ │ │ ├── srp.h │ │ │ ├── srtp.h │ │ │ ├── ssl.h │ │ │ ├── ssl2.h │ │ │ ├── ssl3.h │ │ │ ├── sslerr.h │ │ │ ├── stack.h │ │ │ ├── store.h │ │ │ ├── storeerr.h │ │ │ ├── symhacks.h │ │ │ ├── tls1.h │ │ │ ├── ts.h │ │ │ ├── tserr.h │ │ │ ├── txt_db.h │ │ │ ├── ui.h │ │ │ ├── uierr.h │ │ │ ├── whrlpool.h │ │ │ ├── x509.h │ │ │ ├── x509_vfy.h │ │ │ ├── x509err.h │ │ │ ├── x509v3.h │ │ │ └── x509v3err.h │ │ └── ton │ │ ├── include │ │ ├── auto │ │ │ └── tl │ │ │ │ └── tonlib_api.h │ │ ├── td │ │ │ └── utils │ │ │ │ ├── SharedSlice.h │ │ │ │ ├── Slice-decl.h │ │ │ │ ├── Slice.h │ │ │ │ ├── check.h │ │ │ │ ├── common.h │ │ │ │ ├── config.h │ │ │ │ ├── int_types.h │ │ │ │ ├── port │ │ │ │ └── platform.h │ │ │ │ └── unique_ptr.h │ │ ├── tl │ │ │ └── TlObject.h │ │ └── tonlib │ │ │ ├── Client.h │ │ │ ├── tonlib_client_json.h │ │ │ └── tonlibjson_export.h │ │ └── include_extra │ │ ├── common │ │ └── refcnt.hpp │ │ ├── crypto │ │ └── common │ │ │ └── bitstring.h │ │ └── td │ │ └── utils │ │ ├── Destructor.h │ │ ├── MovableValue.h │ │ ├── StackAllocator.h │ │ ├── StringBuilder.h │ │ ├── bits.h │ │ ├── logging.h │ │ └── port │ │ ├── config.h │ │ └── thread_local.h ├── UIComponents │ ├── UIComponents.xcodeproj │ │ └── project.pbxproj │ ├── UIComponents │ │ ├── Sources │ │ │ ├── AnimatedSticker │ │ │ │ ├── Sources │ │ │ │ │ ├── AnimatedStickerView.swift │ │ │ │ │ ├── AnimationRenderer.swift │ │ │ │ │ ├── GenerateImage.swift │ │ │ │ │ └── SoftwareAnimationRenderer.swift │ │ │ │ └── WAnimatedSticker.swift │ │ │ ├── Buttons │ │ │ │ ├── WBaseButton.swift │ │ │ │ └── WButton.swift │ │ │ ├── CommonViews │ │ │ │ ├── BalanceView.swift │ │ │ │ ├── BottomActionsView.swift │ │ │ │ ├── HeaderView.swift │ │ │ │ ├── TitleValueRowView.swift │ │ │ │ ├── ToastView.swift │ │ │ │ ├── WordListItemView.swift │ │ │ │ └── WordListView.swift │ │ │ ├── HighlightView │ │ │ │ └── WHighlightView.swift │ │ │ ├── Label │ │ │ │ ├── LTMorphingLabel │ │ │ │ │ ├── LTCharacterDiffResult.swift │ │ │ │ │ ├── LTCharacterLimbo.swift │ │ │ │ │ ├── LTEasing.swift │ │ │ │ │ ├── LTEmitterView.swift │ │ │ │ │ ├── LTMorphingEffect.swift │ │ │ │ │ ├── LTMorphingLabel.swift │ │ │ │ │ └── LTStringDiffResult.swift │ │ │ │ ├── WAddressLabel.swift │ │ │ │ ├── WAmountLabel.swift │ │ │ │ └── WAnimatedBalanceLabel.swift │ │ │ ├── NavigationBar │ │ │ │ └── WNavigationBar.swift │ │ │ ├── QR │ │ │ │ ├── Sources │ │ │ │ │ ├── ImageCorners.swift │ │ │ │ │ ├── QrCode.swift │ │ │ │ │ ├── TransformImageArguments.swift │ │ │ │ │ └── TransformImageView.swift │ │ │ │ └── WQrCode.swift │ │ │ ├── TextInput │ │ │ │ ├── WAddressInput.swift │ │ │ │ ├── WAmountInput.swift │ │ │ │ └── WCommentInput.swift │ │ │ ├── Utils │ │ │ │ ├── CAAnimationUtils.swift │ │ │ │ ├── InteractivePopRecognizer.swift │ │ │ │ ├── UIColorUtils.swift │ │ │ │ ├── UIImageViewUtils.swift │ │ │ │ ├── UIKitRuntimeUtils.swift │ │ │ │ ├── UIKitUtils.swift │ │ │ │ ├── UINavigationControllerUtils.swift │ │ │ │ ├── UIViewControllerUtils.swift │ │ │ │ └── WKeyboardObserver.swift │ │ │ ├── View │ │ │ │ └── WTouchPassView.swift │ │ │ ├── ViewController │ │ │ │ ├── WBottomSheetViewController.swift │ │ │ │ └── WViewController.swift │ │ │ └── WordInput │ │ │ │ └── WWordInput.swift │ │ ├── UIComponents.docc │ │ │ └── UIComponents.md │ │ └── UIComponents.h │ └── UIComponentsTests │ │ └── UIComponentsTests.swift ├── UICreateWallet │ ├── UICreateWallet.xcodeproj │ │ └── project.pbxproj │ ├── UICreateWallet │ │ ├── Sources │ │ │ ├── PossibleWords.swift │ │ │ └── ViewControllers │ │ │ │ ├── Completed │ │ │ │ └── CompletedVC.swift │ │ │ │ ├── ImportSuccess │ │ │ │ ├── ImportSuccessVC.swift │ │ │ │ └── ImportSuccessVM.swift │ │ │ │ ├── ImportWallet │ │ │ │ ├── ImportWalletVC.swift │ │ │ │ └── ImportWalletVM.swift │ │ │ │ ├── Intro │ │ │ │ └── IntroVC.swift │ │ │ │ ├── RestoreFailed │ │ │ │ └── RestoreFailedVC.swift │ │ │ │ ├── SecuritySettingsChanged │ │ │ │ └── SecuritySettingsChangedVC.swift │ │ │ │ ├── WalletCreated │ │ │ │ ├── WalletCreatedVC.swift │ │ │ │ └── WalletCreatedVM.swift │ │ │ │ ├── WordCheck │ │ │ │ └── WordCheckVC.swift │ │ │ │ └── WordDisplay │ │ │ │ └── WordDisplayVC.swift │ │ ├── UICreateWallet.docc │ │ │ └── UICreateWallet.md │ │ └── UICreateWallet.h │ └── UICreateWalletTests │ │ └── UICreateWalletTests.swift ├── UIPasscode │ ├── UIPasscode.xcodeproj │ │ └── project.pbxproj │ ├── UIPasscode │ │ ├── Sources │ │ │ ├── CommonViews │ │ │ │ ├── PasscodeInputView.swift │ │ │ │ ├── PasscodeOptionsView.swift │ │ │ │ └── PasscodeScreenView.swift │ │ │ ├── Helpers │ │ │ │ └── BiometricHelper.swift │ │ │ └── ViewControllers │ │ │ │ ├── ActivateBiometricVC │ │ │ │ └── ActivateBiometricVC.swift │ │ │ │ ├── ChangePasscodeVC │ │ │ │ └── ChangePasscodeVC.swift │ │ │ │ ├── ConfirmPasscodeVC │ │ │ │ └── ConfirmPasscodeVC.swift │ │ │ │ ├── SetPasscodeVC │ │ │ │ └── SetPasscodeVC.swift │ │ │ │ └── Unlock │ │ │ │ └── UnlockVC.swift │ │ ├── UIPasscode.docc │ │ │ └── UIPasscode.md │ │ └── UIPasscode.h │ └── UIPasscodeTests │ │ └── UIPasscodeTests.swift ├── UIQRScan │ ├── UIQRScan.xcodeproj │ │ └── project.pbxproj │ └── UIQRScan │ │ ├── Sources │ │ ├── Camera │ │ │ ├── Camera.swift │ │ │ ├── CameraDevice.swift │ │ │ ├── CameraInput.swift │ │ │ ├── CameraOutput.swift │ │ │ ├── CameraPreviewNode.swift │ │ │ └── CameraUtils.swift │ │ └── ViewControllers │ │ │ └── QRScan │ │ │ ├── QRScanVC.swift │ │ │ └── Views │ │ │ ├── GlassButton.swift │ │ │ ├── NoCameraAccessView.swift │ │ │ └── QRScanView.swift │ │ └── UIQRScan.h ├── UITonConnect │ ├── UITonConnect.xcodeproj │ │ └── project.pbxproj │ └── UITonConnect │ │ ├── Sources │ │ ├── Models │ │ │ ├── Events_Wallet2App │ │ │ │ ├── TonConnectEvent.swift │ │ │ │ ├── TonConnectEventError.swift │ │ │ │ ├── TonConnectEventSuccess.swift │ │ │ │ ├── TonConnectRequest.swift │ │ │ │ └── TonConnectResponse.swift │ │ │ ├── LinkedDApp │ │ │ │ ├── LinkedDApp.swift │ │ │ │ └── TonConnectKeyPair.swift │ │ │ └── Requests_App2Wallet │ │ │ │ ├── ConnectRequest │ │ │ │ ├── TonConnectManifest.swift │ │ │ │ └── TonConnectRequestConnect.swift │ │ │ │ └── SendTransaction │ │ │ │ ├── TonConnectSendTransaction.swift │ │ │ │ └── TonConnectSendTransactionMessages.swift │ │ ├── TonConnctCore │ │ │ ├── TonConnectCore.swift │ │ │ └── TonConnectedDApps.swift │ │ └── ViewControllers │ │ │ ├── TonConnect │ │ │ ├── TonConnectVC.swift │ │ │ └── TonConnectVM.swift │ │ │ └── TonTransfer │ │ │ ├── TonTransferVC.swift │ │ │ └── TonTransferVM.swift │ │ └── UITonConnect.h ├── UIWalletHome │ ├── UIWalletHome.xcodeproj │ │ └── project.pbxproj │ ├── UIWalletHome │ │ ├── Sources │ │ │ ├── MergeLists │ │ │ │ ├── Identifiable.swift │ │ │ │ └── MergeLists.swift │ │ │ └── ViewControllers │ │ │ │ ├── Home │ │ │ │ ├── Cells │ │ │ │ │ └── WalletTransactionCell.swift │ │ │ │ ├── Models │ │ │ │ │ ├── HomeList.swift │ │ │ │ │ └── RatesResponse.swift │ │ │ │ ├── Views │ │ │ │ │ ├── BalanceHeaderView.swift │ │ │ │ │ ├── BubbleView.swift │ │ │ │ │ ├── EmptyWalletView.swift │ │ │ │ │ ├── ReversedCornerRadiusView.swift │ │ │ │ │ ├── UpdateStatusView.swift │ │ │ │ │ ├── WalletCreatedView.swift │ │ │ │ │ └── WalletLoadingView.swift │ │ │ │ ├── WalletHomeVC.swift │ │ │ │ └── WalletHomeVM.swift │ │ │ │ ├── Receive │ │ │ │ ├── ReceiveVC.swift │ │ │ │ └── Views │ │ │ │ │ └── QRCodeContainerView.swift │ │ │ │ ├── RecoveryPhrase │ │ │ │ └── RecoveryPhraseVC.swift │ │ │ │ ├── Settings │ │ │ │ ├── SettingsVC.swift │ │ │ │ ├── SettingsVM.swift │ │ │ │ └── Views │ │ │ │ │ ├── PickerPopupItemView.swift │ │ │ │ │ ├── PickerPopupView.swift │ │ │ │ │ └── PickerView.swift │ │ │ │ └── Transaction │ │ │ │ └── TransactionVC.swift │ │ ├── UIWalletHome.docc │ │ │ └── UIWalletHome.md │ │ └── UIWalletHome.h │ └── UIWalletHomeTests │ │ └── UIWalletHomeTests.swift ├── UIWalletSend │ ├── UIWalletSend.xcodeproj │ │ └── project.pbxproj │ ├── UIWalletSend │ │ ├── Sources │ │ │ ├── Helpers │ │ │ │ └── RecentAddressesHelpers.swift │ │ │ ├── Models │ │ │ │ └── RecentAddress.swift │ │ │ └── ViewControllers │ │ │ │ ├── Send │ │ │ │ ├── Cells │ │ │ │ │ └── RecentAddressCell.swift │ │ │ │ └── SendVC.swift │ │ │ │ ├── SendAmount │ │ │ │ └── SendAmountVC.swift │ │ │ │ ├── SendConfirm │ │ │ │ ├── SendConfirmVC.swift │ │ │ │ └── SendConfirmVM.swift │ │ │ │ ├── Sending │ │ │ │ ├── SendingVC.swift │ │ │ │ └── SendingVM.swift │ │ │ │ └── Sent │ │ │ │ └── SentVC.swift │ │ ├── UIWalletSend.docc │ │ │ └── UIWalletSend.md │ │ └── UIWalletSend.h │ └── UIWalletSendTests │ │ └── UIWalletSendTests.swift ├── WalletContext │ ├── WalletContext.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── WalletContext.xcscheme │ └── WalletContext │ │ ├── Sources │ │ ├── Downloader.swift │ │ ├── Helpers │ │ │ ├── ContextAddressHelpers.swift │ │ │ ├── EventsHelper.swift │ │ │ ├── KeychainHelper.swift │ │ │ ├── ScreenHelpers.swift │ │ │ ├── UrlEscapingHelper.swift │ │ │ └── UserDefaultsHelper.swift │ │ ├── Localization │ │ │ ├── StringUtils.swift │ │ │ └── WStrings.swift │ │ ├── Theme │ │ │ ├── WColors.swift │ │ │ └── WTheme.swift │ │ ├── Utils │ │ │ ├── DataUtils.swift │ │ │ ├── DateUtils.swift │ │ │ ├── Int64Utils.swift │ │ │ ├── StringUtils.swift │ │ │ ├── TransactionUtils.swift │ │ │ ├── URLUtils.swift │ │ │ └── WalletUtils.swift │ │ ├── WalletContext.swift │ │ └── WalletPresentationData.swift │ │ └── WalletContext.h ├── WalletCore │ ├── WalletCore.xcodeproj │ │ └── project.pbxproj │ └── WalletCore │ │ ├── Sources │ │ ├── Helpers │ │ │ ├── AddressHelpers.swift │ │ │ └── TONQueryHelpers.swift │ │ └── Utils │ │ │ ├── DataUtils.swift │ │ │ ├── PublicKeyUtils.swift │ │ │ ├── StringUtils.swift │ │ │ └── WalletInfoUtils.swift │ │ ├── WalletCore.h │ │ └── WalletCore.swift ├── WalletURL │ ├── WalletUrl.xcodeproj │ │ └── project.pbxproj │ └── WalletUrl │ │ ├── WalletUrl.h │ │ └── WalletUrl.swift └── YuvConversion │ ├── YuvConversion.xcodeproj │ └── project.pbxproj │ └── YuvConversion │ ├── PublicHeaders │ └── YuvConversion │ │ └── YUV.h │ ├── Sources │ └── YUV.m │ └── YuvConversion.h ├── ToncoinWallet.xcworkspace ├── contents.xcworkspacedata └── xcshareddata │ ├── IDEWorkspaceChecks.plist │ └── WorkspaceSettings.xcsettings └── ToncoinWallet ├── ToncoinWallet.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist └── xcshareddata │ └── xcschemes │ └── ToncoinWallet.xcscheme ├── ToncoinWallet ├── AppDelegate.swift ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ ├── AppIcon.png │ │ └── Contents.json │ ├── BalanceGem.imageset │ │ ├── Contents.json │ │ └── gem.pdf │ ├── BiometricAuthentication │ │ ├── Contents.json │ │ ├── FaceIDIcon.imageset │ │ │ ├── Contents.json │ │ │ └── faceid@3x.png │ │ └── TouchIDIcon.imageset │ │ │ ├── Contents.json │ │ │ └── touchid@3x.png │ ├── Colors │ │ ├── Background.colorset │ │ │ └── Contents.json │ │ ├── BalanceHeaderViewBackground.colorset │ │ │ └── Contents.json │ │ ├── Contents.json │ │ ├── ItemBackground.colorset │ │ │ └── Contents.json │ │ ├── SecondaryBackground.colorset │ │ │ └── Contents.json │ │ ├── SecondaryLabel.colorset │ │ │ └── Contents.json │ │ └── Separator.colorset │ │ │ └── Contents.json │ ├── Contents.json │ ├── HomeBalanceHeader │ │ ├── Contents.json │ │ ├── ReceiveIcon.imageset │ │ │ ├── Contents.json │ │ │ └── arrow.down.backward@3x.png │ │ ├── ScanIcon.imageset │ │ │ ├── Contents.json │ │ │ └── scan@3x.png │ │ ├── SendIcon.imageset │ │ │ ├── Contents.json │ │ │ └── arrow.up.forward@3x.png │ │ └── SettingsIcon.imageset │ │ │ ├── Contents.json │ │ │ └── gear@3x.png │ ├── Keyboard │ │ ├── BackspaceIcon.imageset │ │ │ ├── Contents.json │ │ │ └── delete.backward.fill@3x.png │ │ └── Contents.json │ ├── NavigationBar │ │ ├── Contents.json │ │ └── LeftIcon.imageset │ │ │ ├── Contents.json │ │ │ └── chevron.left@3x.png │ ├── QRScan │ │ ├── Contents.json │ │ ├── FlashIcon.imageset │ │ │ ├── Contents.json │ │ │ └── ic_flash.pdf │ │ └── GalleryIcon.imageset │ │ │ ├── Contents.json │ │ │ └── ic_gallery (3).pdf │ ├── Receive │ │ ├── Contents.json │ │ └── QrGem.imageset │ │ │ ├── Contents.json │ │ │ ├── QrGem@2x.png │ │ │ └── QrGem@3x.png │ ├── Send │ │ ├── Contents.json │ │ ├── SendPasteIcon.imageset │ │ │ ├── Contents.json │ │ │ └── doc.on.clipboard.fill@3x.png │ │ └── SendScanIcon.imageset │ │ │ ├── Contents.json │ │ │ └── Scan@3x.png │ ├── SendAmount │ │ ├── Contents.json │ │ └── SendGem.imageset │ │ │ ├── Contents.json │ │ │ └── SendGem@3x.png │ ├── Settings │ │ ├── Contents.json │ │ ├── PickerCheckmarkIcon.imageset │ │ │ ├── Contents.json │ │ │ └── checkmark@3x.png │ │ ├── PickerIcon.imageset │ │ │ ├── Contents.json │ │ │ └── chevron.up.chevron.down@3x.png │ │ └── RightArrowIcon.imageset │ │ │ ├── Contents.json │ │ │ └── chevron.right@3x.png │ ├── Splash │ │ ├── Contents.json │ │ ├── SplashCornerL.imageset │ │ │ ├── Contents.json │ │ │ ├── TopLeft.pdf │ │ │ └── TopLeft.png │ │ └── SplashCornerR.imageset │ │ │ ├── Contents.json │ │ │ ├── TopRight.pdf │ │ │ └── TopRight.png │ ├── ToastView │ │ ├── Contents.json │ │ └── Warning.imageset │ │ │ ├── Contents.json │ │ │ └── exclamationmark.octagon.fill@3x.png │ └── TonConnect │ │ ├── CheckIcon.imageset │ │ ├── Contents.json │ │ └── checkmark.circle.fill@3x.png │ │ ├── CloseIcon.imageset │ │ ├── Contents.json │ │ └── xmark@3x.png │ │ └── Contents.json ├── Base.lproj │ └── LaunchScreen.storyboard ├── Info.plist ├── Resources │ ├── Animations │ │ ├── Congratulations.tgs │ │ ├── Created.tgs │ │ ├── Loading.tgs │ │ ├── Main.tgs │ │ ├── Password.tgs │ │ ├── Recovery Phrase.tgs │ │ ├── Start.tgs │ │ ├── Success.tgs │ │ ├── Test Time.tgs │ │ ├── Too Bad.tgs │ │ └── Waiting TON.tgs │ ├── Strings │ │ └── en.lproj │ │ │ └── Localizable.strings │ └── ton3-core.bundle │ │ ├── boc │ │ ├── builder.js │ │ ├── cell.js │ │ ├── hashmap.js │ │ ├── index.js │ │ ├── serializer.js │ │ └── slice.js │ │ ├── index.js │ │ ├── types │ │ └── bit.js │ │ └── utils │ │ ├── checksum.js │ │ ├── hash.js │ │ ├── helpers.js │ │ └── index.js └── Sources │ ├── DeeplinkHandler │ └── DeeplinkHandler.swift │ ├── SplashScreen │ ├── SplashVC.swift │ └── SplashVM.swift │ └── Wallet │ ├── FileBackedStorage.swift │ ├── WalletConfiguration.swift │ └── WalletStorageInterfaceImpl.swift ├── ToncoinWalletTests └── ToncoinWalletTests.swift └── ToncoinWalletUITests ├── ToncoinWalletUITests.swift └── ToncoinWalletUITestsLaunchTests.swift /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/.gitmodules -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/LICENSE -------------------------------------------------------------------------------- /Prepare/prepare.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/Prepare/prepare.sh -------------------------------------------------------------------------------- /Prepare/scripts/build-ton-arch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/Prepare/scripts/build-ton-arch.sh -------------------------------------------------------------------------------- /Prepare/scripts/build-ton.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/Prepare/scripts/build-ton.sh -------------------------------------------------------------------------------- /Prepare/scripts/openssl.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/Prepare/scripts/openssl.sh -------------------------------------------------------------------------------- /Prepare/scripts/ton-iOS.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/Prepare/scripts/ton-iOS.cmake -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/README.md -------------------------------------------------------------------------------- /SubModules/BigInt/BigInt.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/BigInt/BigInt.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /SubModules/BigInt/BigInt/BigInt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/BigInt/BigInt/BigInt.h -------------------------------------------------------------------------------- /SubModules/BigInt/BigInt/Sources/Swift-Big-Number-Core.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/BigInt/BigInt/Sources/Swift-Big-Number-Core.swift -------------------------------------------------------------------------------- /SubModules/Bridge/Bridge.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/Bridge/Bridge.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /SubModules/Bridge/Bridge/Bridge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/Bridge/Bridge/Bridge.h -------------------------------------------------------------------------------- /SubModules/Bridge/Bridge/Sources/BridgeEmitter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/Bridge/Bridge/Sources/BridgeEmitter.swift -------------------------------------------------------------------------------- /SubModules/Bridge/Bridge/Sources/BridgeHelpers.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/Bridge/Bridge/Sources/BridgeHelpers.swift -------------------------------------------------------------------------------- /SubModules/Bridge/Bridge/Sources/BridgeListener.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/Bridge/Bridge/Sources/BridgeListener.swift -------------------------------------------------------------------------------- /SubModules/Bridge/Bridge/Sources/Encryption/SessionProtocol.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/Bridge/Bridge/Sources/Encryption/SessionProtocol.swift -------------------------------------------------------------------------------- /SubModules/Bridge/Bridge/Sources/EventSource/Event.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/Bridge/Bridge/Sources/EventSource/Event.swift -------------------------------------------------------------------------------- /SubModules/Bridge/Bridge/Sources/EventSource/EventSource.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/Bridge/Bridge/Sources/EventSource/EventSource.swift -------------------------------------------------------------------------------- /SubModules/Bridge/Bridge/Sources/EventSource/EventStreamParser.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/Bridge/Bridge/Sources/EventSource/EventStreamParser.swift -------------------------------------------------------------------------------- /SubModules/Bridge/Bridge/Sources/Models/BridgeMessage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/Bridge/Bridge/Sources/Models/BridgeMessage.swift -------------------------------------------------------------------------------- /SubModules/Bridge/Bridge/Sources/Utils/PublicKeyUtils.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/Bridge/Bridge/Sources/Utils/PublicKeyUtils.swift -------------------------------------------------------------------------------- /SubModules/BuildConfig/BuildConfig.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/BuildConfig/BuildConfig.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /SubModules/BuildConfig/BuildConfig/BuildConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/BuildConfig/BuildConfig/BuildConfig.h -------------------------------------------------------------------------------- /SubModules/BuildConfig/BuildConfig/BuildConfig.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/BuildConfig/BuildConfig/BuildConfig.m -------------------------------------------------------------------------------- /SubModules/CryptoSwift/CryptoSwift.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/CryptoSwift/CryptoSwift.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /SubModules/CryptoSwift/CryptoSwift/CryptoSwift.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/CryptoSwift/CryptoSwift/CryptoSwift.h -------------------------------------------------------------------------------- /SubModules/CryptoSwift/CryptoSwift/Sources/AEAD/AEAD.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/CryptoSwift/CryptoSwift/Sources/AEAD/AEAD.swift -------------------------------------------------------------------------------- /SubModules/CryptoSwift/CryptoSwift/Sources/AEAD/AEADChaCha20Poly1305.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/CryptoSwift/CryptoSwift/Sources/AEAD/AEADChaCha20Poly1305.swift -------------------------------------------------------------------------------- /SubModules/CryptoSwift/CryptoSwift/Sources/AES.Cryptors.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/CryptoSwift/CryptoSwift/Sources/AES.Cryptors.swift -------------------------------------------------------------------------------- /SubModules/CryptoSwift/CryptoSwift/Sources/AES.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/CryptoSwift/CryptoSwift/Sources/AES.swift -------------------------------------------------------------------------------- /SubModules/CryptoSwift/CryptoSwift/Sources/ASN1/ASN1.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/CryptoSwift/CryptoSwift/Sources/ASN1/ASN1.swift -------------------------------------------------------------------------------- /SubModules/CryptoSwift/CryptoSwift/Sources/ASN1/ASN1Decoder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/CryptoSwift/CryptoSwift/Sources/ASN1/ASN1Decoder.swift -------------------------------------------------------------------------------- /SubModules/CryptoSwift/CryptoSwift/Sources/ASN1/ASN1Encoder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/CryptoSwift/CryptoSwift/Sources/ASN1/ASN1Encoder.swift -------------------------------------------------------------------------------- /SubModules/CryptoSwift/CryptoSwift/Sources/ASN1/ASN1Scanner.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/CryptoSwift/CryptoSwift/Sources/ASN1/ASN1Scanner.swift -------------------------------------------------------------------------------- /SubModules/CryptoSwift/CryptoSwift/Sources/Array+Extension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/CryptoSwift/CryptoSwift/Sources/Array+Extension.swift -------------------------------------------------------------------------------- /SubModules/CryptoSwift/CryptoSwift/Sources/Authenticator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/CryptoSwift/CryptoSwift/Sources/Authenticator.swift -------------------------------------------------------------------------------- /SubModules/CryptoSwift/CryptoSwift/Sources/BatchedCollection.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/CryptoSwift/CryptoSwift/Sources/BatchedCollection.swift -------------------------------------------------------------------------------- /SubModules/CryptoSwift/CryptoSwift/Sources/Bit.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/CryptoSwift/CryptoSwift/Sources/Bit.swift -------------------------------------------------------------------------------- /SubModules/CryptoSwift/CryptoSwift/Sources/BlockCipher.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/CryptoSwift/CryptoSwift/Sources/BlockCipher.swift -------------------------------------------------------------------------------- /SubModules/CryptoSwift/CryptoSwift/Sources/BlockDecryptor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/CryptoSwift/CryptoSwift/Sources/BlockDecryptor.swift -------------------------------------------------------------------------------- /SubModules/CryptoSwift/CryptoSwift/Sources/BlockEncryptor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/CryptoSwift/CryptoSwift/Sources/BlockEncryptor.swift -------------------------------------------------------------------------------- /SubModules/CryptoSwift/CryptoSwift/Sources/BlockMode/BlockMode.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/CryptoSwift/CryptoSwift/Sources/BlockMode/BlockMode.swift -------------------------------------------------------------------------------- /SubModules/CryptoSwift/CryptoSwift/Sources/BlockMode/BlockModeOptions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/CryptoSwift/CryptoSwift/Sources/BlockMode/BlockModeOptions.swift -------------------------------------------------------------------------------- /SubModules/CryptoSwift/CryptoSwift/Sources/BlockMode/CBC.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/CryptoSwift/CryptoSwift/Sources/BlockMode/CBC.swift -------------------------------------------------------------------------------- /SubModules/CryptoSwift/CryptoSwift/Sources/BlockMode/CCM.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/CryptoSwift/CryptoSwift/Sources/BlockMode/CCM.swift -------------------------------------------------------------------------------- /SubModules/CryptoSwift/CryptoSwift/Sources/BlockMode/CFB.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/CryptoSwift/CryptoSwift/Sources/BlockMode/CFB.swift -------------------------------------------------------------------------------- /SubModules/CryptoSwift/CryptoSwift/Sources/BlockMode/CTR.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/CryptoSwift/CryptoSwift/Sources/BlockMode/CTR.swift -------------------------------------------------------------------------------- /SubModules/CryptoSwift/CryptoSwift/Sources/BlockMode/CipherModeWorker.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/CryptoSwift/CryptoSwift/Sources/BlockMode/CipherModeWorker.swift -------------------------------------------------------------------------------- /SubModules/CryptoSwift/CryptoSwift/Sources/BlockMode/ECB.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/CryptoSwift/CryptoSwift/Sources/BlockMode/ECB.swift -------------------------------------------------------------------------------- /SubModules/CryptoSwift/CryptoSwift/Sources/BlockMode/GCM.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/CryptoSwift/CryptoSwift/Sources/BlockMode/GCM.swift -------------------------------------------------------------------------------- /SubModules/CryptoSwift/CryptoSwift/Sources/BlockMode/OCB.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/CryptoSwift/CryptoSwift/Sources/BlockMode/OCB.swift -------------------------------------------------------------------------------- /SubModules/CryptoSwift/CryptoSwift/Sources/BlockMode/OFB.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/CryptoSwift/CryptoSwift/Sources/BlockMode/OFB.swift -------------------------------------------------------------------------------- /SubModules/CryptoSwift/CryptoSwift/Sources/BlockMode/PCBC.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/CryptoSwift/CryptoSwift/Sources/BlockMode/PCBC.swift -------------------------------------------------------------------------------- /SubModules/CryptoSwift/CryptoSwift/Sources/Blowfish.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/CryptoSwift/CryptoSwift/Sources/Blowfish.swift -------------------------------------------------------------------------------- /SubModules/CryptoSwift/CryptoSwift/Sources/CBCMAC.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/CryptoSwift/CryptoSwift/Sources/CBCMAC.swift -------------------------------------------------------------------------------- /SubModules/CryptoSwift/CryptoSwift/Sources/CMAC.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/CryptoSwift/CryptoSwift/Sources/CMAC.swift -------------------------------------------------------------------------------- /SubModules/CryptoSwift/CryptoSwift/Sources/CS_BigInt/Addition.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/CryptoSwift/CryptoSwift/Sources/CS_BigInt/Addition.swift -------------------------------------------------------------------------------- /SubModules/CryptoSwift/CryptoSwift/Sources/CS_BigInt/BigInt.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/CryptoSwift/CryptoSwift/Sources/CS_BigInt/BigInt.swift -------------------------------------------------------------------------------- /SubModules/CryptoSwift/CryptoSwift/Sources/CS_BigInt/BigUInt.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/CryptoSwift/CryptoSwift/Sources/CS_BigInt/BigUInt.swift -------------------------------------------------------------------------------- /SubModules/CryptoSwift/CryptoSwift/Sources/CS_BigInt/Bitwise Ops.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/CryptoSwift/CryptoSwift/Sources/CS_BigInt/Bitwise Ops.swift -------------------------------------------------------------------------------- /SubModules/CryptoSwift/CryptoSwift/Sources/CS_BigInt/CS.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/CryptoSwift/CryptoSwift/Sources/CS_BigInt/CS.swift -------------------------------------------------------------------------------- /SubModules/CryptoSwift/CryptoSwift/Sources/CS_BigInt/Codable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/CryptoSwift/CryptoSwift/Sources/CS_BigInt/Codable.swift -------------------------------------------------------------------------------- /SubModules/CryptoSwift/CryptoSwift/Sources/CS_BigInt/Comparable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/CryptoSwift/CryptoSwift/Sources/CS_BigInt/Comparable.swift -------------------------------------------------------------------------------- /SubModules/CryptoSwift/CryptoSwift/Sources/CS_BigInt/Data Conversion.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/CryptoSwift/CryptoSwift/Sources/CS_BigInt/Data Conversion.swift -------------------------------------------------------------------------------- /SubModules/CryptoSwift/CryptoSwift/Sources/CS_BigInt/Division.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/CryptoSwift/CryptoSwift/Sources/CS_BigInt/Division.swift -------------------------------------------------------------------------------- /SubModules/CryptoSwift/CryptoSwift/Sources/CS_BigInt/Exponentiation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/CryptoSwift/CryptoSwift/Sources/CS_BigInt/Exponentiation.swift -------------------------------------------------------------------------------- /SubModules/CryptoSwift/CryptoSwift/Sources/CS_BigInt/GCD.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/CryptoSwift/CryptoSwift/Sources/CS_BigInt/GCD.swift -------------------------------------------------------------------------------- /SubModules/CryptoSwift/CryptoSwift/Sources/CS_BigInt/Hashable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/CryptoSwift/CryptoSwift/Sources/CS_BigInt/Hashable.swift -------------------------------------------------------------------------------- /SubModules/CryptoSwift/CryptoSwift/Sources/CS_BigInt/Multiplication.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/CryptoSwift/CryptoSwift/Sources/CS_BigInt/Multiplication.swift -------------------------------------------------------------------------------- /SubModules/CryptoSwift/CryptoSwift/Sources/CS_BigInt/Prime Test.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/CryptoSwift/CryptoSwift/Sources/CS_BigInt/Prime Test.swift -------------------------------------------------------------------------------- /SubModules/CryptoSwift/CryptoSwift/Sources/CS_BigInt/Random.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/CryptoSwift/CryptoSwift/Sources/CS_BigInt/Random.swift -------------------------------------------------------------------------------- /SubModules/CryptoSwift/CryptoSwift/Sources/CS_BigInt/Shifts.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/CryptoSwift/CryptoSwift/Sources/CS_BigInt/Shifts.swift -------------------------------------------------------------------------------- /SubModules/CryptoSwift/CryptoSwift/Sources/CS_BigInt/Square Root.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/CryptoSwift/CryptoSwift/Sources/CS_BigInt/Square Root.swift -------------------------------------------------------------------------------- /SubModules/CryptoSwift/CryptoSwift/Sources/CS_BigInt/Strideable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/CryptoSwift/CryptoSwift/Sources/CS_BigInt/Strideable.swift -------------------------------------------------------------------------------- /SubModules/CryptoSwift/CryptoSwift/Sources/CS_BigInt/String Conversion.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/CryptoSwift/CryptoSwift/Sources/CS_BigInt/String Conversion.swift -------------------------------------------------------------------------------- /SubModules/CryptoSwift/CryptoSwift/Sources/CS_BigInt/Subtraction.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/CryptoSwift/CryptoSwift/Sources/CS_BigInt/Subtraction.swift -------------------------------------------------------------------------------- /SubModules/CryptoSwift/CryptoSwift/Sources/CS_BigInt/Words and Bits.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/CryptoSwift/CryptoSwift/Sources/CS_BigInt/Words and Bits.swift -------------------------------------------------------------------------------- /SubModules/CryptoSwift/CryptoSwift/Sources/ChaCha20.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/CryptoSwift/CryptoSwift/Sources/ChaCha20.swift -------------------------------------------------------------------------------- /SubModules/CryptoSwift/CryptoSwift/Sources/Checksum.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/CryptoSwift/CryptoSwift/Sources/Checksum.swift -------------------------------------------------------------------------------- /SubModules/CryptoSwift/CryptoSwift/Sources/Cipher.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/CryptoSwift/CryptoSwift/Sources/Cipher.swift -------------------------------------------------------------------------------- /SubModules/CryptoSwift/CryptoSwift/Sources/Collection+Extension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/CryptoSwift/CryptoSwift/Sources/Collection+Extension.swift -------------------------------------------------------------------------------- /SubModules/CryptoSwift/CryptoSwift/Sources/CompactMap.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/CryptoSwift/CryptoSwift/Sources/CompactMap.swift -------------------------------------------------------------------------------- /SubModules/CryptoSwift/CryptoSwift/Sources/Cryptor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/CryptoSwift/CryptoSwift/Sources/Cryptor.swift -------------------------------------------------------------------------------- /SubModules/CryptoSwift/CryptoSwift/Sources/Cryptors.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/CryptoSwift/CryptoSwift/Sources/Cryptors.swift -------------------------------------------------------------------------------- /SubModules/CryptoSwift/CryptoSwift/Sources/Digest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/CryptoSwift/CryptoSwift/Sources/Digest.swift -------------------------------------------------------------------------------- /SubModules/CryptoSwift/CryptoSwift/Sources/DigestType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/CryptoSwift/CryptoSwift/Sources/DigestType.swift -------------------------------------------------------------------------------- /SubModules/CryptoSwift/CryptoSwift/Sources/Foundation/AES+Foundation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/CryptoSwift/CryptoSwift/Sources/Foundation/AES+Foundation.swift -------------------------------------------------------------------------------- /SubModules/CryptoSwift/CryptoSwift/Sources/Foundation/Array+Foundation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/CryptoSwift/CryptoSwift/Sources/Foundation/Array+Foundation.swift -------------------------------------------------------------------------------- /SubModules/CryptoSwift/CryptoSwift/Sources/Foundation/Data+Extension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/CryptoSwift/CryptoSwift/Sources/Foundation/Data+Extension.swift -------------------------------------------------------------------------------- /SubModules/CryptoSwift/CryptoSwift/Sources/Foundation/HMAC+Foundation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/CryptoSwift/CryptoSwift/Sources/Foundation/HMAC+Foundation.swift -------------------------------------------------------------------------------- /SubModules/CryptoSwift/CryptoSwift/Sources/Foundation/Utils+Foundation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/CryptoSwift/CryptoSwift/Sources/Foundation/Utils+Foundation.swift -------------------------------------------------------------------------------- /SubModules/CryptoSwift/CryptoSwift/Sources/Generics.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/CryptoSwift/CryptoSwift/Sources/Generics.swift -------------------------------------------------------------------------------- /SubModules/CryptoSwift/CryptoSwift/Sources/HKDF.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/CryptoSwift/CryptoSwift/Sources/HKDF.swift -------------------------------------------------------------------------------- /SubModules/CryptoSwift/CryptoSwift/Sources/HMAC.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/CryptoSwift/CryptoSwift/Sources/HMAC.swift -------------------------------------------------------------------------------- /SubModules/CryptoSwift/CryptoSwift/Sources/ISO10126Padding.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/CryptoSwift/CryptoSwift/Sources/ISO10126Padding.swift -------------------------------------------------------------------------------- /SubModules/CryptoSwift/CryptoSwift/Sources/ISO78164Padding.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/CryptoSwift/CryptoSwift/Sources/ISO78164Padding.swift -------------------------------------------------------------------------------- /SubModules/CryptoSwift/CryptoSwift/Sources/Int+Extension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/CryptoSwift/CryptoSwift/Sources/Int+Extension.swift -------------------------------------------------------------------------------- /SubModules/CryptoSwift/CryptoSwift/Sources/MD5.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/CryptoSwift/CryptoSwift/Sources/MD5.swift -------------------------------------------------------------------------------- /SubModules/CryptoSwift/CryptoSwift/Sources/NoPadding.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/CryptoSwift/CryptoSwift/Sources/NoPadding.swift -------------------------------------------------------------------------------- /SubModules/CryptoSwift/CryptoSwift/Sources/Operators.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/CryptoSwift/CryptoSwift/Sources/Operators.swift -------------------------------------------------------------------------------- /SubModules/CryptoSwift/CryptoSwift/Sources/PEM/DER.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/CryptoSwift/CryptoSwift/Sources/PEM/DER.swift -------------------------------------------------------------------------------- /SubModules/CryptoSwift/CryptoSwift/Sources/PKCS/PBKDF1.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/CryptoSwift/CryptoSwift/Sources/PKCS/PBKDF1.swift -------------------------------------------------------------------------------- /SubModules/CryptoSwift/CryptoSwift/Sources/PKCS/PBKDF2.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/CryptoSwift/CryptoSwift/Sources/PKCS/PBKDF2.swift -------------------------------------------------------------------------------- /SubModules/CryptoSwift/CryptoSwift/Sources/PKCS/PKCS1v15.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/CryptoSwift/CryptoSwift/Sources/PKCS/PKCS1v15.swift -------------------------------------------------------------------------------- /SubModules/CryptoSwift/CryptoSwift/Sources/PKCS/PKCS5.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/CryptoSwift/CryptoSwift/Sources/PKCS/PKCS5.swift -------------------------------------------------------------------------------- /SubModules/CryptoSwift/CryptoSwift/Sources/PKCS/PKCS7.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/CryptoSwift/CryptoSwift/Sources/PKCS/PKCS7.swift -------------------------------------------------------------------------------- /SubModules/CryptoSwift/CryptoSwift/Sources/PKCS/PKCS7Padding.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/CryptoSwift/CryptoSwift/Sources/PKCS/PKCS7Padding.swift -------------------------------------------------------------------------------- /SubModules/CryptoSwift/CryptoSwift/Sources/Padding.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/CryptoSwift/CryptoSwift/Sources/Padding.swift -------------------------------------------------------------------------------- /SubModules/CryptoSwift/CryptoSwift/Sources/Poly1305.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/CryptoSwift/CryptoSwift/Sources/Poly1305.swift -------------------------------------------------------------------------------- /SubModules/CryptoSwift/CryptoSwift/Sources/RSA/RSA+Cipher.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/CryptoSwift/CryptoSwift/Sources/RSA/RSA+Cipher.swift -------------------------------------------------------------------------------- /SubModules/CryptoSwift/CryptoSwift/Sources/RSA/RSA+Signature.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/CryptoSwift/CryptoSwift/Sources/RSA/RSA+Signature.swift -------------------------------------------------------------------------------- /SubModules/CryptoSwift/CryptoSwift/Sources/RSA/RSA.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/CryptoSwift/CryptoSwift/Sources/RSA/RSA.swift -------------------------------------------------------------------------------- /SubModules/CryptoSwift/CryptoSwift/Sources/Rabbit.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/CryptoSwift/CryptoSwift/Sources/Rabbit.swift -------------------------------------------------------------------------------- /SubModules/CryptoSwift/CryptoSwift/Sources/SHA1.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/CryptoSwift/CryptoSwift/Sources/SHA1.swift -------------------------------------------------------------------------------- /SubModules/CryptoSwift/CryptoSwift/Sources/SHA2.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/CryptoSwift/CryptoSwift/Sources/SHA2.swift -------------------------------------------------------------------------------- /SubModules/CryptoSwift/CryptoSwift/Sources/SHA3.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/CryptoSwift/CryptoSwift/Sources/SHA3.swift -------------------------------------------------------------------------------- /SubModules/CryptoSwift/CryptoSwift/Sources/Scrypt.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/CryptoSwift/CryptoSwift/Sources/Scrypt.swift -------------------------------------------------------------------------------- /SubModules/CryptoSwift/CryptoSwift/Sources/SecureBytes.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/CryptoSwift/CryptoSwift/Sources/SecureBytes.swift -------------------------------------------------------------------------------- /SubModules/CryptoSwift/CryptoSwift/Sources/Signature.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/CryptoSwift/CryptoSwift/Sources/Signature.swift -------------------------------------------------------------------------------- /SubModules/CryptoSwift/CryptoSwift/Sources/StreamDecryptor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/CryptoSwift/CryptoSwift/Sources/StreamDecryptor.swift -------------------------------------------------------------------------------- /SubModules/CryptoSwift/CryptoSwift/Sources/StreamEncryptor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/CryptoSwift/CryptoSwift/Sources/StreamEncryptor.swift -------------------------------------------------------------------------------- /SubModules/CryptoSwift/CryptoSwift/Sources/String+Extension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/CryptoSwift/CryptoSwift/Sources/String+Extension.swift -------------------------------------------------------------------------------- /SubModules/CryptoSwift/CryptoSwift/Sources/UInt128.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/CryptoSwift/CryptoSwift/Sources/UInt128.swift -------------------------------------------------------------------------------- /SubModules/CryptoSwift/CryptoSwift/Sources/UInt16+Extension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/CryptoSwift/CryptoSwift/Sources/UInt16+Extension.swift -------------------------------------------------------------------------------- /SubModules/CryptoSwift/CryptoSwift/Sources/UInt32+Extension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/CryptoSwift/CryptoSwift/Sources/UInt32+Extension.swift -------------------------------------------------------------------------------- /SubModules/CryptoSwift/CryptoSwift/Sources/UInt64+Extension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/CryptoSwift/CryptoSwift/Sources/UInt64+Extension.swift -------------------------------------------------------------------------------- /SubModules/CryptoSwift/CryptoSwift/Sources/UInt8+Extension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/CryptoSwift/CryptoSwift/Sources/UInt8+Extension.swift -------------------------------------------------------------------------------- /SubModules/CryptoSwift/CryptoSwift/Sources/Updatable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/CryptoSwift/CryptoSwift/Sources/Updatable.swift -------------------------------------------------------------------------------- /SubModules/CryptoSwift/CryptoSwift/Sources/Utils.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/CryptoSwift/CryptoSwift/Sources/Utils.swift -------------------------------------------------------------------------------- /SubModules/CryptoSwift/CryptoSwift/Sources/ZeroPadding.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/CryptoSwift/CryptoSwift/Sources/ZeroPadding.swift -------------------------------------------------------------------------------- /SubModules/GZip/GZip.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/GZip/GZip.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /SubModules/GZip/GZip/GZip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/GZip/GZip/GZip.h -------------------------------------------------------------------------------- /SubModules/GZip/GZip/GZip.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/GZip/GZip/GZip.m -------------------------------------------------------------------------------- /SubModules/RLottieBinding/RLottieBinding.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/RLottieBinding/RLottieBinding.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /SubModules/RLottieBinding/RLottieBinding/LottieInstance.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/RLottieBinding/RLottieBinding/LottieInstance.mm -------------------------------------------------------------------------------- /SubModules/RLottieBinding/RLottieBinding/RLottieBinding.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/RLottieBinding/RLottieBinding/RLottieBinding.h -------------------------------------------------------------------------------- /SubModules/RLottieBinding/RLottieBinding/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/RLottieBinding/RLottieBinding/config.h -------------------------------------------------------------------------------- /SubModules/RLottieBinding/RLottieBinding/rlottie/inc/rlottie.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/RLottieBinding/RLottieBinding/rlottie/inc/rlottie.h -------------------------------------------------------------------------------- /SubModules/RLottieBinding/RLottieBinding/rlottie/inc/rlottie_capi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/RLottieBinding/RLottieBinding/rlottie/inc/rlottie_capi.h -------------------------------------------------------------------------------- /SubModules/RLottieBinding/RLottieBinding/rlottie/inc/rlottiecommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/RLottieBinding/RLottieBinding/rlottie/inc/rlottiecommon.h -------------------------------------------------------------------------------- /SubModules/RLottieBinding/RLottieBinding/rlottie/src/lottie/lottieitem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/RLottieBinding/RLottieBinding/rlottie/src/lottie/lottieitem.cpp -------------------------------------------------------------------------------- /SubModules/RLottieBinding/RLottieBinding/rlottie/src/lottie/lottieitem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/RLottieBinding/RLottieBinding/rlottie/src/lottie/lottieitem.h -------------------------------------------------------------------------------- /SubModules/RLottieBinding/RLottieBinding/rlottie/src/lottie/lottiekeypath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/RLottieBinding/RLottieBinding/rlottie/src/lottie/lottiekeypath.h -------------------------------------------------------------------------------- /SubModules/RLottieBinding/RLottieBinding/rlottie/src/lottie/lottieloader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/RLottieBinding/RLottieBinding/rlottie/src/lottie/lottieloader.cpp -------------------------------------------------------------------------------- /SubModules/RLottieBinding/RLottieBinding/rlottie/src/lottie/lottieloader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/RLottieBinding/RLottieBinding/rlottie/src/lottie/lottieloader.h -------------------------------------------------------------------------------- /SubModules/RLottieBinding/RLottieBinding/rlottie/src/lottie/lottiemodel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/RLottieBinding/RLottieBinding/rlottie/src/lottie/lottiemodel.cpp -------------------------------------------------------------------------------- /SubModules/RLottieBinding/RLottieBinding/rlottie/src/lottie/lottiemodel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/RLottieBinding/RLottieBinding/rlottie/src/lottie/lottiemodel.h -------------------------------------------------------------------------------- /SubModules/RLottieBinding/RLottieBinding/rlottie/src/lottie/lottieparser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/RLottieBinding/RLottieBinding/rlottie/src/lottie/lottieparser.cpp -------------------------------------------------------------------------------- /SubModules/RLottieBinding/RLottieBinding/rlottie/src/lottie/lottieparser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/RLottieBinding/RLottieBinding/rlottie/src/lottie/lottieparser.h -------------------------------------------------------------------------------- /SubModules/RLottieBinding/RLottieBinding/rlottie/src/lottie/lottieproxymodel.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /SubModules/RLottieBinding/RLottieBinding/rlottie/src/lottie/rapidjson/fwd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/RLottieBinding/RLottieBinding/rlottie/src/lottie/rapidjson/fwd.h -------------------------------------------------------------------------------- /SubModules/RLottieBinding/RLottieBinding/rlottie/src/vector/pixman/vregion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/RLottieBinding/RLottieBinding/rlottie/src/vector/pixman/vregion.h -------------------------------------------------------------------------------- /SubModules/RLottieBinding/RLottieBinding/rlottie/src/vector/vbezier.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/RLottieBinding/RLottieBinding/rlottie/src/vector/vbezier.cpp -------------------------------------------------------------------------------- /SubModules/RLottieBinding/RLottieBinding/rlottie/src/vector/vbezier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/RLottieBinding/RLottieBinding/rlottie/src/vector/vbezier.h -------------------------------------------------------------------------------- /SubModules/RLottieBinding/RLottieBinding/rlottie/src/vector/vbitmap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/RLottieBinding/RLottieBinding/rlottie/src/vector/vbitmap.cpp -------------------------------------------------------------------------------- /SubModules/RLottieBinding/RLottieBinding/rlottie/src/vector/vbitmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/RLottieBinding/RLottieBinding/rlottie/src/vector/vbitmap.h -------------------------------------------------------------------------------- /SubModules/RLottieBinding/RLottieBinding/rlottie/src/vector/vbrush.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/RLottieBinding/RLottieBinding/rlottie/src/vector/vbrush.cpp -------------------------------------------------------------------------------- /SubModules/RLottieBinding/RLottieBinding/rlottie/src/vector/vbrush.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/RLottieBinding/RLottieBinding/rlottie/src/vector/vbrush.h -------------------------------------------------------------------------------- /SubModules/RLottieBinding/RLottieBinding/rlottie/src/vector/vcowptr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/RLottieBinding/RLottieBinding/rlottie/src/vector/vcowptr.h -------------------------------------------------------------------------------- /SubModules/RLottieBinding/RLottieBinding/rlottie/src/vector/vdasher.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/RLottieBinding/RLottieBinding/rlottie/src/vector/vdasher.cpp -------------------------------------------------------------------------------- /SubModules/RLottieBinding/RLottieBinding/rlottie/src/vector/vdasher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/RLottieBinding/RLottieBinding/rlottie/src/vector/vdasher.h -------------------------------------------------------------------------------- /SubModules/RLottieBinding/RLottieBinding/rlottie/src/vector/vdebug.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/RLottieBinding/RLottieBinding/rlottie/src/vector/vdebug.cpp -------------------------------------------------------------------------------- /SubModules/RLottieBinding/RLottieBinding/rlottie/src/vector/vdebug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/RLottieBinding/RLottieBinding/rlottie/src/vector/vdebug.h -------------------------------------------------------------------------------- /SubModules/RLottieBinding/RLottieBinding/rlottie/src/vector/vdrawable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/RLottieBinding/RLottieBinding/rlottie/src/vector/vdrawable.cpp -------------------------------------------------------------------------------- /SubModules/RLottieBinding/RLottieBinding/rlottie/src/vector/vdrawable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/RLottieBinding/RLottieBinding/rlottie/src/vector/vdrawable.h -------------------------------------------------------------------------------- /SubModules/RLottieBinding/RLottieBinding/rlottie/src/vector/vdrawhelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/RLottieBinding/RLottieBinding/rlottie/src/vector/vdrawhelper.h -------------------------------------------------------------------------------- /SubModules/RLottieBinding/RLottieBinding/rlottie/src/vector/vglobal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/RLottieBinding/RLottieBinding/rlottie/src/vector/vglobal.h -------------------------------------------------------------------------------- /SubModules/RLottieBinding/RLottieBinding/rlottie/src/vector/vimageloader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/RLottieBinding/RLottieBinding/rlottie/src/vector/vimageloader.h -------------------------------------------------------------------------------- /SubModules/RLottieBinding/RLottieBinding/rlottie/src/vector/vline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/RLottieBinding/RLottieBinding/rlottie/src/vector/vline.h -------------------------------------------------------------------------------- /SubModules/RLottieBinding/RLottieBinding/rlottie/src/vector/vmatrix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/RLottieBinding/RLottieBinding/rlottie/src/vector/vmatrix.cpp -------------------------------------------------------------------------------- /SubModules/RLottieBinding/RLottieBinding/rlottie/src/vector/vmatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/RLottieBinding/RLottieBinding/rlottie/src/vector/vmatrix.h -------------------------------------------------------------------------------- /SubModules/RLottieBinding/RLottieBinding/rlottie/src/vector/vpainter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/RLottieBinding/RLottieBinding/rlottie/src/vector/vpainter.cpp -------------------------------------------------------------------------------- /SubModules/RLottieBinding/RLottieBinding/rlottie/src/vector/vpainter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/RLottieBinding/RLottieBinding/rlottie/src/vector/vpainter.h -------------------------------------------------------------------------------- /SubModules/RLottieBinding/RLottieBinding/rlottie/src/vector/vpath.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/RLottieBinding/RLottieBinding/rlottie/src/vector/vpath.cpp -------------------------------------------------------------------------------- /SubModules/RLottieBinding/RLottieBinding/rlottie/src/vector/vpath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/RLottieBinding/RLottieBinding/rlottie/src/vector/vpath.h -------------------------------------------------------------------------------- /SubModules/RLottieBinding/RLottieBinding/rlottie/src/vector/vpathmesure.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/RLottieBinding/RLottieBinding/rlottie/src/vector/vpathmesure.h -------------------------------------------------------------------------------- /SubModules/RLottieBinding/RLottieBinding/rlottie/src/vector/vpoint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/RLottieBinding/RLottieBinding/rlottie/src/vector/vpoint.h -------------------------------------------------------------------------------- /SubModules/RLottieBinding/RLottieBinding/rlottie/src/vector/vraster.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/RLottieBinding/RLottieBinding/rlottie/src/vector/vraster.cpp -------------------------------------------------------------------------------- /SubModules/RLottieBinding/RLottieBinding/rlottie/src/vector/vraster.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/RLottieBinding/RLottieBinding/rlottie/src/vector/vraster.h -------------------------------------------------------------------------------- /SubModules/RLottieBinding/RLottieBinding/rlottie/src/vector/vrect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/RLottieBinding/RLottieBinding/rlottie/src/vector/vrect.cpp -------------------------------------------------------------------------------- /SubModules/RLottieBinding/RLottieBinding/rlottie/src/vector/vrect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/RLottieBinding/RLottieBinding/rlottie/src/vector/vrect.h -------------------------------------------------------------------------------- /SubModules/RLottieBinding/RLottieBinding/rlottie/src/vector/vrle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/RLottieBinding/RLottieBinding/rlottie/src/vector/vrle.cpp -------------------------------------------------------------------------------- /SubModules/RLottieBinding/RLottieBinding/rlottie/src/vector/vrle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/RLottieBinding/RLottieBinding/rlottie/src/vector/vrle.h -------------------------------------------------------------------------------- /SubModules/RLottieBinding/RLottieBinding/rlottie/src/vector/vtaskqueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/RLottieBinding/RLottieBinding/rlottie/src/vector/vtaskqueue.h -------------------------------------------------------------------------------- /SubModules/SSignalKit/SSignalKit.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/SSignalKit/SSignalKit.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /SubModules/SSignalKit/SSignalKit/SSignalKit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/SSignalKit/SSignalKit/SSignalKit.h -------------------------------------------------------------------------------- /SubModules/SSignalKit/SSignalKit/Source/SSignalKit/SAtomic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/SSignalKit/SSignalKit/Source/SSignalKit/SAtomic.h -------------------------------------------------------------------------------- /SubModules/SSignalKit/SSignalKit/Source/SSignalKit/SAtomic.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/SSignalKit/SSignalKit/Source/SSignalKit/SAtomic.m -------------------------------------------------------------------------------- /SubModules/SSignalKit/SSignalKit/Source/SSignalKit/SBag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/SSignalKit/SSignalKit/Source/SSignalKit/SBag.h -------------------------------------------------------------------------------- /SubModules/SSignalKit/SSignalKit/Source/SSignalKit/SBag.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/SSignalKit/SSignalKit/Source/SSignalKit/SBag.m -------------------------------------------------------------------------------- /SubModules/SSignalKit/SSignalKit/Source/SSignalKit/SBlockDisposable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/SSignalKit/SSignalKit/Source/SSignalKit/SBlockDisposable.h -------------------------------------------------------------------------------- /SubModules/SSignalKit/SSignalKit/Source/SSignalKit/SBlockDisposable.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/SSignalKit/SSignalKit/Source/SSignalKit/SBlockDisposable.m -------------------------------------------------------------------------------- /SubModules/SSignalKit/SSignalKit/Source/SSignalKit/SDisposable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/SSignalKit/SSignalKit/Source/SSignalKit/SDisposable.h -------------------------------------------------------------------------------- /SubModules/SSignalKit/SSignalKit/Source/SSignalKit/SDisposableSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/SSignalKit/SSignalKit/Source/SSignalKit/SDisposableSet.h -------------------------------------------------------------------------------- /SubModules/SSignalKit/SSignalKit/Source/SSignalKit/SDisposableSet.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/SSignalKit/SSignalKit/Source/SSignalKit/SDisposableSet.m -------------------------------------------------------------------------------- /SubModules/SSignalKit/SSignalKit/Source/SSignalKit/SMetaDisposable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/SSignalKit/SSignalKit/Source/SSignalKit/SMetaDisposable.h -------------------------------------------------------------------------------- /SubModules/SSignalKit/SSignalKit/Source/SSignalKit/SMetaDisposable.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/SSignalKit/SSignalKit/Source/SSignalKit/SMetaDisposable.m -------------------------------------------------------------------------------- /SubModules/SSignalKit/SSignalKit/Source/SSignalKit/SQueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/SSignalKit/SSignalKit/Source/SSignalKit/SQueue.h -------------------------------------------------------------------------------- /SubModules/SSignalKit/SSignalKit/Source/SSignalKit/SQueue.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/SSignalKit/SSignalKit/Source/SSignalKit/SQueue.m -------------------------------------------------------------------------------- /SubModules/SSignalKit/SSignalKit/Source/SSignalKit/SSignal+Accumulate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/SSignalKit/SSignalKit/Source/SSignalKit/SSignal+Accumulate.h -------------------------------------------------------------------------------- /SubModules/SSignalKit/SSignalKit/Source/SSignalKit/SSignal+Accumulate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/SSignalKit/SSignalKit/Source/SSignalKit/SSignal+Accumulate.m -------------------------------------------------------------------------------- /SubModules/SSignalKit/SSignalKit/Source/SSignalKit/SSignal+Catch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/SSignalKit/SSignalKit/Source/SSignalKit/SSignal+Catch.h -------------------------------------------------------------------------------- /SubModules/SSignalKit/SSignalKit/Source/SSignalKit/SSignal+Catch.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/SSignalKit/SSignalKit/Source/SSignalKit/SSignal+Catch.m -------------------------------------------------------------------------------- /SubModules/SSignalKit/SSignalKit/Source/SSignalKit/SSignal+Combine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/SSignalKit/SSignalKit/Source/SSignalKit/SSignal+Combine.h -------------------------------------------------------------------------------- /SubModules/SSignalKit/SSignalKit/Source/SSignalKit/SSignal+Combine.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/SSignalKit/SSignalKit/Source/SSignalKit/SSignal+Combine.m -------------------------------------------------------------------------------- /SubModules/SSignalKit/SSignalKit/Source/SSignalKit/SSignal+Dispatch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/SSignalKit/SSignalKit/Source/SSignalKit/SSignal+Dispatch.h -------------------------------------------------------------------------------- /SubModules/SSignalKit/SSignalKit/Source/SSignalKit/SSignal+Dispatch.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/SSignalKit/SSignalKit/Source/SSignalKit/SSignal+Dispatch.m -------------------------------------------------------------------------------- /SubModules/SSignalKit/SSignalKit/Source/SSignalKit/SSignal+Mapping.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/SSignalKit/SSignalKit/Source/SSignalKit/SSignal+Mapping.h -------------------------------------------------------------------------------- /SubModules/SSignalKit/SSignalKit/Source/SSignalKit/SSignal+Mapping.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/SSignalKit/SSignalKit/Source/SSignalKit/SSignal+Mapping.m -------------------------------------------------------------------------------- /SubModules/SSignalKit/SSignalKit/Source/SSignalKit/SSignal+Meta.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/SSignalKit/SSignalKit/Source/SSignalKit/SSignal+Meta.h -------------------------------------------------------------------------------- /SubModules/SSignalKit/SSignalKit/Source/SSignalKit/SSignal+Meta.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/SSignalKit/SSignalKit/Source/SSignalKit/SSignal+Meta.m -------------------------------------------------------------------------------- /SubModules/SSignalKit/SSignalKit/Source/SSignalKit/SSignal+Multicast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/SSignalKit/SSignalKit/Source/SSignalKit/SSignal+Multicast.h -------------------------------------------------------------------------------- /SubModules/SSignalKit/SSignalKit/Source/SSignalKit/SSignal+Multicast.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/SSignalKit/SSignalKit/Source/SSignalKit/SSignal+Multicast.m -------------------------------------------------------------------------------- /SubModules/SSignalKit/SSignalKit/Source/SSignalKit/SSignal+Pipe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/SSignalKit/SSignalKit/Source/SSignalKit/SSignal+Pipe.h -------------------------------------------------------------------------------- /SubModules/SSignalKit/SSignalKit/Source/SSignalKit/SSignal+Pipe.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/SSignalKit/SSignalKit/Source/SSignalKit/SSignal+Pipe.m -------------------------------------------------------------------------------- /SubModules/SSignalKit/SSignalKit/Source/SSignalKit/SSignal+SideEffects.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/SSignalKit/SSignalKit/Source/SSignalKit/SSignal+SideEffects.h -------------------------------------------------------------------------------- /SubModules/SSignalKit/SSignalKit/Source/SSignalKit/SSignal+SideEffects.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/SSignalKit/SSignalKit/Source/SSignalKit/SSignal+SideEffects.m -------------------------------------------------------------------------------- /SubModules/SSignalKit/SSignalKit/Source/SSignalKit/SSignal+Single.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/SSignalKit/SSignalKit/Source/SSignalKit/SSignal+Single.h -------------------------------------------------------------------------------- /SubModules/SSignalKit/SSignalKit/Source/SSignalKit/SSignal+Single.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/SSignalKit/SSignalKit/Source/SSignalKit/SSignal+Single.m -------------------------------------------------------------------------------- /SubModules/SSignalKit/SSignalKit/Source/SSignalKit/SSignal+Take.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/SSignalKit/SSignalKit/Source/SSignalKit/SSignal+Take.h -------------------------------------------------------------------------------- /SubModules/SSignalKit/SSignalKit/Source/SSignalKit/SSignal+Take.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/SSignalKit/SSignalKit/Source/SSignalKit/SSignal+Take.m -------------------------------------------------------------------------------- /SubModules/SSignalKit/SSignalKit/Source/SSignalKit/SSignal+Timing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/SSignalKit/SSignalKit/Source/SSignalKit/SSignal+Timing.h -------------------------------------------------------------------------------- /SubModules/SSignalKit/SSignalKit/Source/SSignalKit/SSignal+Timing.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/SSignalKit/SSignalKit/Source/SSignalKit/SSignal+Timing.m -------------------------------------------------------------------------------- /SubModules/SSignalKit/SSignalKit/Source/SSignalKit/SSignal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/SSignalKit/SSignalKit/Source/SSignalKit/SSignal.h -------------------------------------------------------------------------------- /SubModules/SSignalKit/SSignalKit/Source/SSignalKit/SSignal.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/SSignalKit/SSignalKit/Source/SSignalKit/SSignal.m -------------------------------------------------------------------------------- /SubModules/SSignalKit/SSignalKit/Source/SSignalKit/SSubscriber.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/SSignalKit/SSignalKit/Source/SSignalKit/SSubscriber.h -------------------------------------------------------------------------------- /SubModules/SSignalKit/SSignalKit/Source/SSignalKit/SSubscriber.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/SSignalKit/SSignalKit/Source/SSignalKit/SSubscriber.m -------------------------------------------------------------------------------- /SubModules/SSignalKit/SSignalKit/Source/SSignalKit/SThreadPool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/SSignalKit/SSignalKit/Source/SSignalKit/SThreadPool.h -------------------------------------------------------------------------------- /SubModules/SSignalKit/SSignalKit/Source/SSignalKit/SThreadPool.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/SSignalKit/SSignalKit/Source/SSignalKit/SThreadPool.m -------------------------------------------------------------------------------- /SubModules/SSignalKit/SSignalKit/Source/SSignalKit/SThreadPoolQueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/SSignalKit/SSignalKit/Source/SSignalKit/SThreadPoolQueue.h -------------------------------------------------------------------------------- /SubModules/SSignalKit/SSignalKit/Source/SSignalKit/SThreadPoolQueue.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/SSignalKit/SSignalKit/Source/SSignalKit/SThreadPoolQueue.m -------------------------------------------------------------------------------- /SubModules/SSignalKit/SSignalKit/Source/SSignalKit/SThreadPoolTask.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/SSignalKit/SSignalKit/Source/SSignalKit/SThreadPoolTask.h -------------------------------------------------------------------------------- /SubModules/SSignalKit/SSignalKit/Source/SSignalKit/SThreadPoolTask.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/SSignalKit/SSignalKit/Source/SSignalKit/SThreadPoolTask.m -------------------------------------------------------------------------------- /SubModules/SSignalKit/SSignalKit/Source/SSignalKit/STimer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/SSignalKit/SSignalKit/Source/SSignalKit/STimer.h -------------------------------------------------------------------------------- /SubModules/SSignalKit/SSignalKit/Source/SSignalKit/STimer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/SSignalKit/SSignalKit/Source/SSignalKit/STimer.m -------------------------------------------------------------------------------- /SubModules/SSignalKit/SSignalKit/Source/SSignalKit/SVariable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/SSignalKit/SSignalKit/Source/SSignalKit/SVariable.h -------------------------------------------------------------------------------- /SubModules/SSignalKit/SSignalKit/Source/SSignalKit/SVariable.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/SSignalKit/SSignalKit/Source/SSignalKit/SVariable.m -------------------------------------------------------------------------------- /SubModules/Sodium/Sodium.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/Sodium/Sodium.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /SubModules/Sodium/Sodium/Clibsodium.xcframework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/Sodium/Sodium/Clibsodium.xcframework/Info.plist -------------------------------------------------------------------------------- /SubModules/Sodium/Sodium/Clibsodium.xcframework/tvos-arm64/libsodium.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/Sodium/Sodium/Clibsodium.xcframework/tvos-arm64/libsodium.a -------------------------------------------------------------------------------- /SubModules/Sodium/Sodium/Sodium.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/Sodium/Sodium/Sodium.h -------------------------------------------------------------------------------- /SubModules/Sodium/Sodium/Sources/Aead.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/Sodium/Sodium/Sources/Aead.swift -------------------------------------------------------------------------------- /SubModules/Sodium/Sodium/Sources/Auth.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/Sodium/Sodium/Sources/Auth.swift -------------------------------------------------------------------------------- /SubModules/Sodium/Sodium/Sources/Box.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/Sodium/Sodium/Sources/Box.swift -------------------------------------------------------------------------------- /SubModules/Sodium/Sodium/Sources/Bytes.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/Sodium/Sodium/Sources/Bytes.swift -------------------------------------------------------------------------------- /SubModules/Sodium/Sodium/Sources/ExitCode.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/Sodium/Sodium/Sources/ExitCode.swift -------------------------------------------------------------------------------- /SubModules/Sodium/Sodium/Sources/Generators/KeyPairGenerator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/Sodium/Sodium/Sources/Generators/KeyPairGenerator.swift -------------------------------------------------------------------------------- /SubModules/Sodium/Sodium/Sources/Generators/KeyPairProtocol.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/Sodium/Sodium/Sources/Generators/KeyPairProtocol.swift -------------------------------------------------------------------------------- /SubModules/Sodium/Sodium/Sources/Generators/NonceGenerator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/Sodium/Sodium/Sources/Generators/NonceGenerator.swift -------------------------------------------------------------------------------- /SubModules/Sodium/Sodium/Sources/Generators/SecretKeyGenerator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/Sodium/Sodium/Sources/Generators/SecretKeyGenerator.swift -------------------------------------------------------------------------------- /SubModules/Sodium/Sodium/Sources/GenericHash.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/Sodium/Sodium/Sources/GenericHash.swift -------------------------------------------------------------------------------- /SubModules/Sodium/Sodium/Sources/KeyDerivation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/Sodium/Sodium/Sources/KeyDerivation.swift -------------------------------------------------------------------------------- /SubModules/Sodium/Sodium/Sources/KeyExchange.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/Sodium/Sodium/Sources/KeyExchange.swift -------------------------------------------------------------------------------- /SubModules/Sodium/Sodium/Sources/PWHash.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/Sodium/Sodium/Sources/PWHash.swift -------------------------------------------------------------------------------- /SubModules/Sodium/Sodium/Sources/RandomBytes.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/Sodium/Sodium/Sources/RandomBytes.swift -------------------------------------------------------------------------------- /SubModules/Sodium/Sodium/Sources/SecretBox.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/Sodium/Sodium/Sources/SecretBox.swift -------------------------------------------------------------------------------- /SubModules/Sodium/Sodium/Sources/SecretStream.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/Sodium/Sodium/Sources/SecretStream.swift -------------------------------------------------------------------------------- /SubModules/Sodium/Sodium/Sources/ShortHash.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/Sodium/Sodium/Sources/ShortHash.swift -------------------------------------------------------------------------------- /SubModules/Sodium/Sodium/Sources/Sign.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/Sodium/Sodium/Sources/Sign.swift -------------------------------------------------------------------------------- /SubModules/Sodium/Sodium/Sources/Sodium.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/Sodium/Sodium/Sources/Sodium.h -------------------------------------------------------------------------------- /SubModules/Sodium/Sodium/Sources/Sodium.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/Sodium/Sodium/Sources/Sodium.swift -------------------------------------------------------------------------------- /SubModules/Sodium/Sodium/Sources/Stream.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/Sodium/Sodium/Sources/Stream.swift -------------------------------------------------------------------------------- /SubModules/Sodium/Sodium/Sources/Utils.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/Sodium/Sodium/Sources/Utils.swift -------------------------------------------------------------------------------- /SubModules/Sodium/Sodium/Sources/Version.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/Sodium/Sodium/Sources/Version.swift -------------------------------------------------------------------------------- /SubModules/Sodium/Sodium/Sources/libsodium/core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/Sodium/Sodium/Sources/libsodium/core.h -------------------------------------------------------------------------------- /SubModules/Sodium/Sodium/Sources/libsodium/crypto_aead_aes256gcm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/Sodium/Sodium/Sources/libsodium/crypto_aead_aes256gcm.h -------------------------------------------------------------------------------- /SubModules/Sodium/Sodium/Sources/libsodium/crypto_aead_chacha20poly1305.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/Sodium/Sodium/Sources/libsodium/crypto_aead_chacha20poly1305.h -------------------------------------------------------------------------------- /SubModules/Sodium/Sodium/Sources/libsodium/crypto_aead_xchacha20poly1305.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/Sodium/Sodium/Sources/libsodium/crypto_aead_xchacha20poly1305.h -------------------------------------------------------------------------------- /SubModules/Sodium/Sodium/Sources/libsodium/crypto_auth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/Sodium/Sodium/Sources/libsodium/crypto_auth.h -------------------------------------------------------------------------------- /SubModules/Sodium/Sodium/Sources/libsodium/crypto_auth_hmacsha256.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/Sodium/Sodium/Sources/libsodium/crypto_auth_hmacsha256.h -------------------------------------------------------------------------------- /SubModules/Sodium/Sodium/Sources/libsodium/crypto_auth_hmacsha512.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/Sodium/Sodium/Sources/libsodium/crypto_auth_hmacsha512.h -------------------------------------------------------------------------------- /SubModules/Sodium/Sodium/Sources/libsodium/crypto_auth_hmacsha512256.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/Sodium/Sodium/Sources/libsodium/crypto_auth_hmacsha512256.h -------------------------------------------------------------------------------- /SubModules/Sodium/Sodium/Sources/libsodium/crypto_box.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/Sodium/Sodium/Sources/libsodium/crypto_box.h -------------------------------------------------------------------------------- /SubModules/Sodium/Sodium/Sources/libsodium/crypto_core_curve25519.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/Sodium/Sodium/Sources/libsodium/crypto_core_curve25519.h -------------------------------------------------------------------------------- /SubModules/Sodium/Sodium/Sources/libsodium/crypto_core_ed25519.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/Sodium/Sodium/Sources/libsodium/crypto_core_ed25519.h -------------------------------------------------------------------------------- /SubModules/Sodium/Sodium/Sources/libsodium/crypto_core_hchacha20.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/Sodium/Sodium/Sources/libsodium/crypto_core_hchacha20.h -------------------------------------------------------------------------------- /SubModules/Sodium/Sodium/Sources/libsodium/crypto_core_hsalsa20.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/Sodium/Sodium/Sources/libsodium/crypto_core_hsalsa20.h -------------------------------------------------------------------------------- /SubModules/Sodium/Sodium/Sources/libsodium/crypto_core_ristretto255.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/Sodium/Sodium/Sources/libsodium/crypto_core_ristretto255.h -------------------------------------------------------------------------------- /SubModules/Sodium/Sodium/Sources/libsodium/crypto_core_salsa20.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/Sodium/Sodium/Sources/libsodium/crypto_core_salsa20.h -------------------------------------------------------------------------------- /SubModules/Sodium/Sodium/Sources/libsodium/crypto_core_salsa2012.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/Sodium/Sodium/Sources/libsodium/crypto_core_salsa2012.h -------------------------------------------------------------------------------- /SubModules/Sodium/Sodium/Sources/libsodium/crypto_core_salsa208.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/Sodium/Sodium/Sources/libsodium/crypto_core_salsa208.h -------------------------------------------------------------------------------- /SubModules/Sodium/Sodium/Sources/libsodium/crypto_generichash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/Sodium/Sodium/Sources/libsodium/crypto_generichash.h -------------------------------------------------------------------------------- /SubModules/Sodium/Sodium/Sources/libsodium/crypto_generichash_blake2b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/Sodium/Sodium/Sources/libsodium/crypto_generichash_blake2b.h -------------------------------------------------------------------------------- /SubModules/Sodium/Sodium/Sources/libsodium/crypto_hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/Sodium/Sodium/Sources/libsodium/crypto_hash.h -------------------------------------------------------------------------------- /SubModules/Sodium/Sodium/Sources/libsodium/crypto_hash_sha256.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/Sodium/Sodium/Sources/libsodium/crypto_hash_sha256.h -------------------------------------------------------------------------------- /SubModules/Sodium/Sodium/Sources/libsodium/crypto_hash_sha512.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/Sodium/Sodium/Sources/libsodium/crypto_hash_sha512.h -------------------------------------------------------------------------------- /SubModules/Sodium/Sodium/Sources/libsodium/crypto_kdf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/Sodium/Sodium/Sources/libsodium/crypto_kdf.h -------------------------------------------------------------------------------- /SubModules/Sodium/Sodium/Sources/libsodium/crypto_kdf_blake2b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/Sodium/Sodium/Sources/libsodium/crypto_kdf_blake2b.h -------------------------------------------------------------------------------- /SubModules/Sodium/Sodium/Sources/libsodium/crypto_kx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/Sodium/Sodium/Sources/libsodium/crypto_kx.h -------------------------------------------------------------------------------- /SubModules/Sodium/Sodium/Sources/libsodium/crypto_onetimeauth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/Sodium/Sodium/Sources/libsodium/crypto_onetimeauth.h -------------------------------------------------------------------------------- /SubModules/Sodium/Sodium/Sources/libsodium/crypto_onetimeauth_poly1305.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/Sodium/Sodium/Sources/libsodium/crypto_onetimeauth_poly1305.h -------------------------------------------------------------------------------- /SubModules/Sodium/Sodium/Sources/libsodium/crypto_pwhash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/Sodium/Sodium/Sources/libsodium/crypto_pwhash.h -------------------------------------------------------------------------------- /SubModules/Sodium/Sodium/Sources/libsodium/crypto_pwhash_argon2i.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/Sodium/Sodium/Sources/libsodium/crypto_pwhash_argon2i.h -------------------------------------------------------------------------------- /SubModules/Sodium/Sodium/Sources/libsodium/crypto_pwhash_argon2id.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/Sodium/Sodium/Sources/libsodium/crypto_pwhash_argon2id.h -------------------------------------------------------------------------------- /SubModules/Sodium/Sodium/Sources/libsodium/crypto_scalarmult.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/Sodium/Sodium/Sources/libsodium/crypto_scalarmult.h -------------------------------------------------------------------------------- /SubModules/Sodium/Sodium/Sources/libsodium/crypto_scalarmult_curve25519.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/Sodium/Sodium/Sources/libsodium/crypto_scalarmult_curve25519.h -------------------------------------------------------------------------------- /SubModules/Sodium/Sodium/Sources/libsodium/crypto_scalarmult_ed25519.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/Sodium/Sodium/Sources/libsodium/crypto_scalarmult_ed25519.h -------------------------------------------------------------------------------- /SubModules/Sodium/Sodium/Sources/libsodium/crypto_secretbox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/Sodium/Sodium/Sources/libsodium/crypto_secretbox.h -------------------------------------------------------------------------------- /SubModules/Sodium/Sodium/Sources/libsodium/crypto_shorthash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/Sodium/Sodium/Sources/libsodium/crypto_shorthash.h -------------------------------------------------------------------------------- /SubModules/Sodium/Sodium/Sources/libsodium/crypto_shorthash_siphash24.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/Sodium/Sodium/Sources/libsodium/crypto_shorthash_siphash24.h -------------------------------------------------------------------------------- /SubModules/Sodium/Sodium/Sources/libsodium/crypto_sign.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/Sodium/Sodium/Sources/libsodium/crypto_sign.h -------------------------------------------------------------------------------- /SubModules/Sodium/Sodium/Sources/libsodium/crypto_sign_ed25519.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/Sodium/Sodium/Sources/libsodium/crypto_sign_ed25519.h -------------------------------------------------------------------------------- /SubModules/Sodium/Sodium/Sources/libsodium/crypto_stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/Sodium/Sodium/Sources/libsodium/crypto_stream.h -------------------------------------------------------------------------------- /SubModules/Sodium/Sodium/Sources/libsodium/crypto_stream_chacha20.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/Sodium/Sodium/Sources/libsodium/crypto_stream_chacha20.h -------------------------------------------------------------------------------- /SubModules/Sodium/Sodium/Sources/libsodium/crypto_stream_salsa20.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/Sodium/Sodium/Sources/libsodium/crypto_stream_salsa20.h -------------------------------------------------------------------------------- /SubModules/Sodium/Sodium/Sources/libsodium/crypto_stream_salsa2012.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/Sodium/Sodium/Sources/libsodium/crypto_stream_salsa2012.h -------------------------------------------------------------------------------- /SubModules/Sodium/Sodium/Sources/libsodium/crypto_stream_salsa208.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/Sodium/Sodium/Sources/libsodium/crypto_stream_salsa208.h -------------------------------------------------------------------------------- /SubModules/Sodium/Sodium/Sources/libsodium/crypto_stream_xchacha20.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/Sodium/Sodium/Sources/libsodium/crypto_stream_xchacha20.h -------------------------------------------------------------------------------- /SubModules/Sodium/Sodium/Sources/libsodium/crypto_stream_xsalsa20.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/Sodium/Sodium/Sources/libsodium/crypto_stream_xsalsa20.h -------------------------------------------------------------------------------- /SubModules/Sodium/Sodium/Sources/libsodium/crypto_verify_16.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/Sodium/Sodium/Sources/libsodium/crypto_verify_16.h -------------------------------------------------------------------------------- /SubModules/Sodium/Sodium/Sources/libsodium/crypto_verify_32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/Sodium/Sodium/Sources/libsodium/crypto_verify_32.h -------------------------------------------------------------------------------- /SubModules/Sodium/Sodium/Sources/libsodium/crypto_verify_64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/Sodium/Sodium/Sources/libsodium/crypto_verify_64.h -------------------------------------------------------------------------------- /SubModules/Sodium/Sodium/Sources/libsodium/export.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/Sodium/Sodium/Sources/libsodium/export.h -------------------------------------------------------------------------------- /SubModules/Sodium/Sodium/Sources/libsodium/randombytes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/Sodium/Sodium/Sources/libsodium/randombytes.h -------------------------------------------------------------------------------- /SubModules/Sodium/Sodium/Sources/libsodium/randombytes_internal_random.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/Sodium/Sodium/Sources/libsodium/randombytes_internal_random.h -------------------------------------------------------------------------------- /SubModules/Sodium/Sodium/Sources/libsodium/randombytes_sysrandom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/Sodium/Sodium/Sources/libsodium/randombytes_sysrandom.h -------------------------------------------------------------------------------- /SubModules/Sodium/Sodium/Sources/libsodium/runtime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/Sodium/Sodium/Sources/libsodium/runtime.h -------------------------------------------------------------------------------- /SubModules/Sodium/Sodium/Sources/libsodium/sodium_lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/Sodium/Sodium/Sources/libsodium/sodium_lib.h -------------------------------------------------------------------------------- /SubModules/Sodium/Sodium/Sources/libsodium/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/Sodium/Sodium/Sources/libsodium/utils.h -------------------------------------------------------------------------------- /SubModules/Sodium/Sodium/Sources/libsodium/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/Sodium/Sodium/Sources/libsodium/version.h -------------------------------------------------------------------------------- /SubModules/SwiftSignalKit/SwiftSignalKit.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/SwiftSignalKit/SwiftSignalKit.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /SubModules/SwiftSignalKit/SwiftSignalKit/Source/Atomic.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/SwiftSignalKit/SwiftSignalKit/Source/Atomic.swift -------------------------------------------------------------------------------- /SubModules/SwiftSignalKit/SwiftSignalKit/Source/Bag.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/SwiftSignalKit/SwiftSignalKit/Source/Bag.swift -------------------------------------------------------------------------------- /SubModules/SwiftSignalKit/SwiftSignalKit/Source/Disposable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/SwiftSignalKit/SwiftSignalKit/Source/Disposable.swift -------------------------------------------------------------------------------- /SubModules/SwiftSignalKit/SwiftSignalKit/Source/Lock.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/SwiftSignalKit/SwiftSignalKit/Source/Lock.swift -------------------------------------------------------------------------------- /SubModules/SwiftSignalKit/SwiftSignalKit/Source/Multicast.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/SwiftSignalKit/SwiftSignalKit/Source/Multicast.swift -------------------------------------------------------------------------------- /SubModules/SwiftSignalKit/SwiftSignalKit/Source/Promise.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/SwiftSignalKit/SwiftSignalKit/Source/Promise.swift -------------------------------------------------------------------------------- /SubModules/SwiftSignalKit/SwiftSignalKit/Source/Queue.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/SwiftSignalKit/SwiftSignalKit/Source/Queue.swift -------------------------------------------------------------------------------- /SubModules/SwiftSignalKit/SwiftSignalKit/Source/QueueLocalObject.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/SwiftSignalKit/SwiftSignalKit/Source/QueueLocalObject.swift -------------------------------------------------------------------------------- /SubModules/SwiftSignalKit/SwiftSignalKit/Source/Signal.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/SwiftSignalKit/SwiftSignalKit/Source/Signal.swift -------------------------------------------------------------------------------- /SubModules/SwiftSignalKit/SwiftSignalKit/Source/Signal_Catch.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/SwiftSignalKit/SwiftSignalKit/Source/Signal_Catch.swift -------------------------------------------------------------------------------- /SubModules/SwiftSignalKit/SwiftSignalKit/Source/Signal_Combine.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/SwiftSignalKit/SwiftSignalKit/Source/Signal_Combine.swift -------------------------------------------------------------------------------- /SubModules/SwiftSignalKit/SwiftSignalKit/Source/Signal_Dispatch.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/SwiftSignalKit/SwiftSignalKit/Source/Signal_Dispatch.swift -------------------------------------------------------------------------------- /SubModules/SwiftSignalKit/SwiftSignalKit/Source/Signal_Loop.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/SwiftSignalKit/SwiftSignalKit/Source/Signal_Loop.swift -------------------------------------------------------------------------------- /SubModules/SwiftSignalKit/SwiftSignalKit/Source/Signal_Mapping.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/SwiftSignalKit/SwiftSignalKit/Source/Signal_Mapping.swift -------------------------------------------------------------------------------- /SubModules/SwiftSignalKit/SwiftSignalKit/Source/Signal_Materialize.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/SwiftSignalKit/SwiftSignalKit/Source/Signal_Materialize.swift -------------------------------------------------------------------------------- /SubModules/SwiftSignalKit/SwiftSignalKit/Source/Signal_Merge.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/SwiftSignalKit/SwiftSignalKit/Source/Signal_Merge.swift -------------------------------------------------------------------------------- /SubModules/SwiftSignalKit/SwiftSignalKit/Source/Signal_Meta.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/SwiftSignalKit/SwiftSignalKit/Source/Signal_Meta.swift -------------------------------------------------------------------------------- /SubModules/SwiftSignalKit/SwiftSignalKit/Source/Signal_Reduce.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/SwiftSignalKit/SwiftSignalKit/Source/Signal_Reduce.swift -------------------------------------------------------------------------------- /SubModules/SwiftSignalKit/SwiftSignalKit/Source/Signal_SideEffects.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/SwiftSignalKit/SwiftSignalKit/Source/Signal_SideEffects.swift -------------------------------------------------------------------------------- /SubModules/SwiftSignalKit/SwiftSignalKit/Source/Signal_Single.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/SwiftSignalKit/SwiftSignalKit/Source/Signal_Single.swift -------------------------------------------------------------------------------- /SubModules/SwiftSignalKit/SwiftSignalKit/Source/Signal_Take.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/SwiftSignalKit/SwiftSignalKit/Source/Signal_Take.swift -------------------------------------------------------------------------------- /SubModules/SwiftSignalKit/SwiftSignalKit/Source/Signal_Timing.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/SwiftSignalKit/SwiftSignalKit/Source/Signal_Timing.swift -------------------------------------------------------------------------------- /SubModules/SwiftSignalKit/SwiftSignalKit/Source/Subscriber.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/SwiftSignalKit/SwiftSignalKit/Source/Subscriber.swift -------------------------------------------------------------------------------- /SubModules/SwiftSignalKit/SwiftSignalKit/Source/ThreadPool.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/SwiftSignalKit/SwiftSignalKit/Source/ThreadPool.swift -------------------------------------------------------------------------------- /SubModules/SwiftSignalKit/SwiftSignalKit/Source/Timer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/SwiftSignalKit/SwiftSignalKit/Source/Timer.swift -------------------------------------------------------------------------------- /SubModules/SwiftSignalKit/SwiftSignalKit/Source/ValuePipe.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/SwiftSignalKit/SwiftSignalKit/Source/ValuePipe.swift -------------------------------------------------------------------------------- /SubModules/SwiftSignalKit/SwiftSignalKit/SwiftSignalKit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/SwiftSignalKit/SwiftSignalKit/SwiftSignalKit.h -------------------------------------------------------------------------------- /SubModules/SwiftyJS/SwiftyJS.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/SwiftyJS/SwiftyJS.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /SubModules/SwiftyJS/SwiftyJS/Sources/JSActor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/SwiftyJS/SwiftyJS/Sources/JSActor.swift -------------------------------------------------------------------------------- /SubModules/SwiftyJS/SwiftyJS/Sources/JSBundle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/SwiftyJS/SwiftyJS/Sources/JSBundle.swift -------------------------------------------------------------------------------- /SubModules/SwiftyJS/SwiftyJS/Sources/JSError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/SwiftyJS/SwiftyJS/Sources/JSError.swift -------------------------------------------------------------------------------- /SubModules/SwiftyJS/SwiftyJS/Sources/JSFunctions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/SwiftyJS/SwiftyJS/Sources/JSFunctions.swift -------------------------------------------------------------------------------- /SubModules/SwiftyJS/SwiftyJS/Sources/JSModule.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/SwiftyJS/SwiftyJS/Sources/JSModule.swift -------------------------------------------------------------------------------- /SubModules/SwiftyJS/SwiftyJS/SwiftyJS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/SwiftyJS/SwiftyJS/SwiftyJS.h -------------------------------------------------------------------------------- /SubModules/SwiftyTON/SwiftyTON.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/SwiftyTON/SwiftyTON.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /SubModules/SwiftyTON/SwiftyTON/Sources/Address/Address.Converter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/SwiftyTON/SwiftyTON/Sources/Address/Address.Converter.swift -------------------------------------------------------------------------------- /SubModules/SwiftyTON/SwiftyTON/Sources/Address/Address.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/SwiftyTON/SwiftyTON/Sources/Address/Address.swift -------------------------------------------------------------------------------- /SubModules/SwiftyTON/SwiftyTON/Sources/Address/ConcreteAddress.Flags.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/SwiftyTON/SwiftyTON/Sources/Address/ConcreteAddress.Flags.swift -------------------------------------------------------------------------------- /SubModules/SwiftyTON/SwiftyTON/Sources/Address/ConcreteAddress.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/SwiftyTON/SwiftyTON/Sources/Address/ConcreteAddress.swift -------------------------------------------------------------------------------- /SubModules/SwiftyTON/SwiftyTON/Sources/Address/DNSAddress.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/SwiftyTON/SwiftyTON/Sources/Address/DNSAddress.swift -------------------------------------------------------------------------------- /SubModules/SwiftyTON/SwiftyTON/Sources/Address/DisplayableAddress.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/SwiftyTON/SwiftyTON/Sources/Address/DisplayableAddress.swift -------------------------------------------------------------------------------- /SubModules/SwiftyTON/SwiftyTON/Sources/BOC/BOC.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/SwiftyTON/SwiftyTON/Sources/BOC/BOC.swift -------------------------------------------------------------------------------- /SubModules/SwiftyTON/SwiftyTON/Sources/Configuration/Configuration.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/SwiftyTON/SwiftyTON/Sources/Configuration/Configuration.swift -------------------------------------------------------------------------------- /SubModules/SwiftyTON/SwiftyTON/Sources/Contract/Contract.Info.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/SwiftyTON/SwiftyTON/Sources/Contract/Contract.Info.swift -------------------------------------------------------------------------------- /SubModules/SwiftyTON/SwiftyTON/Sources/Contract/Contract.Kind.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/SwiftyTON/SwiftyTON/Sources/Contract/Contract.Kind.swift -------------------------------------------------------------------------------- /SubModules/SwiftyTON/SwiftyTON/Sources/Contract/Contract.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/SwiftyTON/SwiftyTON/Sources/Contract/Contract.swift -------------------------------------------------------------------------------- /SubModules/SwiftyTON/SwiftyTON/Sources/Currency/Currency.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/SwiftyTON/SwiftyTON/Sources/Currency/Currency.swift -------------------------------------------------------------------------------- /SubModules/SwiftyTON/SwiftyTON/Sources/Currency/CurrencyFormatter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/SwiftyTON/SwiftyTON/Sources/Currency/CurrencyFormatter.swift -------------------------------------------------------------------------------- /SubModules/SwiftyTON/SwiftyTON/Sources/Errors/AddressError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/SwiftyTON/SwiftyTON/Sources/Errors/AddressError.swift -------------------------------------------------------------------------------- /SubModules/SwiftyTON/SwiftyTON/Sources/Errors/ContractError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/SwiftyTON/SwiftyTON/Sources/Errors/ContractError.swift -------------------------------------------------------------------------------- /SubModules/SwiftyTON/SwiftyTON/Sources/Errors/KeyError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/SwiftyTON/SwiftyTON/Sources/Errors/KeyError.swift -------------------------------------------------------------------------------- /SubModules/SwiftyTON/SwiftyTON/Sources/Errors/LiteserverError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/SwiftyTON/SwiftyTON/Sources/Errors/LiteserverError.swift -------------------------------------------------------------------------------- /SubModules/SwiftyTON/SwiftyTON/Sources/Errors/MessageError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/SwiftyTON/SwiftyTON/Sources/Errors/MessageError.swift -------------------------------------------------------------------------------- /SubModules/SwiftyTON/SwiftyTON/Sources/Errors/RetryableError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/SwiftyTON/SwiftyTON/Sources/Errors/RetryableError.swift -------------------------------------------------------------------------------- /SubModules/SwiftyTON/SwiftyTON/Sources/Errors/UndefinedError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/SwiftyTON/SwiftyTON/Sources/Errors/UndefinedError.swift -------------------------------------------------------------------------------- /SubModules/SwiftyTON/SwiftyTON/Sources/Extensions/BytesConvertible.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/SwiftyTON/SwiftyTON/Sources/Extensions/BytesConvertible.swift -------------------------------------------------------------------------------- /SubModules/SwiftyTON/SwiftyTON/Sources/Extensions/ContiguousBytes.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/SwiftyTON/SwiftyTON/Sources/Extensions/ContiguousBytes.swift -------------------------------------------------------------------------------- /SubModules/SwiftyTON/SwiftyTON/Sources/Extensions/Data.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/SwiftyTON/SwiftyTON/Sources/Extensions/Data.swift -------------------------------------------------------------------------------- /SubModules/SwiftyTON/SwiftyTON/Sources/Extensions/Date.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/SwiftyTON/SwiftyTON/Sources/Extensions/Date.swift -------------------------------------------------------------------------------- /SubModules/SwiftyTON/SwiftyTON/Sources/Extensions/Functions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/SwiftyTON/SwiftyTON/Sources/Extensions/Functions.swift -------------------------------------------------------------------------------- /SubModules/SwiftyTON/SwiftyTON/Sources/Extensions/String.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/SwiftyTON/SwiftyTON/Sources/Extensions/String.swift -------------------------------------------------------------------------------- /SubModules/SwiftyTON/SwiftyTON/Sources/Extensions/URLSession.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/SwiftyTON/SwiftyTON/Sources/Extensions/URLSession.swift -------------------------------------------------------------------------------- /SubModules/SwiftyTON/SwiftyTON/Sources/Key/Key.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/SwiftyTON/SwiftyTON/Sources/Key/Key.swift -------------------------------------------------------------------------------- /SubModules/SwiftyTON/SwiftyTON/Sources/Message/Message.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/SwiftyTON/SwiftyTON/Sources/Message/Message.swift -------------------------------------------------------------------------------- /SubModules/SwiftyTON/SwiftyTON/Sources/Resources/Configurations/mainnet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/SwiftyTON/SwiftyTON/Sources/Resources/Configurations/mainnet -------------------------------------------------------------------------------- /SubModules/SwiftyTON/SwiftyTON/Sources/Resources/Configurations/testnet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/SwiftyTON/SwiftyTON/Sources/Resources/Configurations/testnet -------------------------------------------------------------------------------- /SubModules/SwiftyTON/SwiftyTON/Sources/SMC/Jettons/JettonMinter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/SwiftyTON/SwiftyTON/Sources/SMC/Jettons/JettonMinter.swift -------------------------------------------------------------------------------- /SubModules/SwiftyTON/SwiftyTON/Sources/SMC/Jettons/JettonWallet.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/SwiftyTON/SwiftyTON/Sources/SMC/Jettons/JettonWallet.swift -------------------------------------------------------------------------------- /SubModules/SwiftyTON/SwiftyTON/Sources/SMC/Wallets/AnyWallet.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/SwiftyTON/SwiftyTON/Sources/SMC/Wallets/AnyWallet.swift -------------------------------------------------------------------------------- /SubModules/SwiftyTON/SwiftyTON/Sources/SMC/Wallets/Wallet.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/SwiftyTON/SwiftyTON/Sources/SMC/Wallets/Wallet.swift -------------------------------------------------------------------------------- /SubModules/SwiftyTON/SwiftyTON/Sources/SMC/Wallets/Wallet2/Wallet2.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/SwiftyTON/SwiftyTON/Sources/SMC/Wallets/Wallet2/Wallet2.swift -------------------------------------------------------------------------------- /SubModules/SwiftyTON/SwiftyTON/Sources/SMC/Wallets/Wallet3/Wallet3.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/SwiftyTON/SwiftyTON/Sources/SMC/Wallets/Wallet3/Wallet3.swift -------------------------------------------------------------------------------- /SubModules/SwiftyTON/SwiftyTON/Sources/SMC/Wallets/Wallet4/Wallet4.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/SwiftyTON/SwiftyTON/Sources/SMC/Wallets/Wallet4/Wallet4.swift -------------------------------------------------------------------------------- /SubModules/SwiftyTON/SwiftyTON/Sources/SwiftyTON.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/SwiftyTON/SwiftyTON/Sources/SwiftyTON.swift -------------------------------------------------------------------------------- /SubModules/SwiftyTON/SwiftyTON/Sources/Transaction/Transaction.ID.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/SwiftyTON/SwiftyTON/Sources/Transaction/Transaction.ID.swift -------------------------------------------------------------------------------- /SubModules/SwiftyTON/SwiftyTON/Sources/Transaction/Transaction.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/SwiftyTON/SwiftyTON/Sources/Transaction/Transaction.swift -------------------------------------------------------------------------------- /SubModules/SwiftyTON/SwiftyTON/SwiftyTON.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/SwiftyTON/SwiftyTON/SwiftyTON.h -------------------------------------------------------------------------------- /SubModules/TON3/TON3.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/TON3/TON3.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /SubModules/TON3/TON3/Sources/Extensions/JSBundle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/TON3/TON3/Sources/Extensions/JSBundle.swift -------------------------------------------------------------------------------- /SubModules/TON3/TON3/Sources/TON3.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/TON3/TON3/Sources/TON3.swift -------------------------------------------------------------------------------- /SubModules/TON3/TON3/Sources/TON3Functions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/TON3/TON3/Sources/TON3Functions.swift -------------------------------------------------------------------------------- /SubModules/TON3/TON3/TON3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/TON3/TON3/TON3.h -------------------------------------------------------------------------------- /SubModules/TonBinding/TonBinding.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/TonBinding/TonBinding.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /SubModules/TonBinding/TonBinding/Sources/GTTONKey.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/TonBinding/TonBinding/Sources/GTTONKey.h -------------------------------------------------------------------------------- /SubModules/TonBinding/TonBinding/Sources/GTTONKey.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/TonBinding/TonBinding/Sources/GTTONKey.mm -------------------------------------------------------------------------------- /SubModules/TonBinding/TonBinding/Sources/NSData+SHA256.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/TonBinding/TonBinding/Sources/NSData+SHA256.h -------------------------------------------------------------------------------- /SubModules/TonBinding/TonBinding/Sources/NSData+SHA256.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/TonBinding/TonBinding/Sources/NSData+SHA256.m -------------------------------------------------------------------------------- /SubModules/TonBinding/TonBinding/Sources/TON.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/TonBinding/TonBinding/Sources/TON.h -------------------------------------------------------------------------------- /SubModules/TonBinding/TonBinding/Sources/TON.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/TonBinding/TonBinding/Sources/TON.mm -------------------------------------------------------------------------------- /SubModules/TonBinding/TonBinding/TonBinding.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/TonBinding/TonBinding/TonBinding.h -------------------------------------------------------------------------------- /SubModules/TonBinding/TonBinding/openssl/include/openssl/aes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/TonBinding/TonBinding/openssl/include/openssl/aes.h -------------------------------------------------------------------------------- /SubModules/TonBinding/TonBinding/openssl/include/openssl/asn1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/TonBinding/TonBinding/openssl/include/openssl/asn1.h -------------------------------------------------------------------------------- /SubModules/TonBinding/TonBinding/openssl/include/openssl/asn1_mac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/TonBinding/TonBinding/openssl/include/openssl/asn1_mac.h -------------------------------------------------------------------------------- /SubModules/TonBinding/TonBinding/openssl/include/openssl/asn1err.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/TonBinding/TonBinding/openssl/include/openssl/asn1err.h -------------------------------------------------------------------------------- /SubModules/TonBinding/TonBinding/openssl/include/openssl/asn1t.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/TonBinding/TonBinding/openssl/include/openssl/asn1t.h -------------------------------------------------------------------------------- /SubModules/TonBinding/TonBinding/openssl/include/openssl/async.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/TonBinding/TonBinding/openssl/include/openssl/async.h -------------------------------------------------------------------------------- /SubModules/TonBinding/TonBinding/openssl/include/openssl/asyncerr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/TonBinding/TonBinding/openssl/include/openssl/asyncerr.h -------------------------------------------------------------------------------- /SubModules/TonBinding/TonBinding/openssl/include/openssl/bio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/TonBinding/TonBinding/openssl/include/openssl/bio.h -------------------------------------------------------------------------------- /SubModules/TonBinding/TonBinding/openssl/include/openssl/bioerr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/TonBinding/TonBinding/openssl/include/openssl/bioerr.h -------------------------------------------------------------------------------- /SubModules/TonBinding/TonBinding/openssl/include/openssl/blowfish.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/TonBinding/TonBinding/openssl/include/openssl/blowfish.h -------------------------------------------------------------------------------- /SubModules/TonBinding/TonBinding/openssl/include/openssl/bn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/TonBinding/TonBinding/openssl/include/openssl/bn.h -------------------------------------------------------------------------------- /SubModules/TonBinding/TonBinding/openssl/include/openssl/bnerr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/TonBinding/TonBinding/openssl/include/openssl/bnerr.h -------------------------------------------------------------------------------- /SubModules/TonBinding/TonBinding/openssl/include/openssl/buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/TonBinding/TonBinding/openssl/include/openssl/buffer.h -------------------------------------------------------------------------------- /SubModules/TonBinding/TonBinding/openssl/include/openssl/buffererr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/TonBinding/TonBinding/openssl/include/openssl/buffererr.h -------------------------------------------------------------------------------- /SubModules/TonBinding/TonBinding/openssl/include/openssl/camellia.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/TonBinding/TonBinding/openssl/include/openssl/camellia.h -------------------------------------------------------------------------------- /SubModules/TonBinding/TonBinding/openssl/include/openssl/cast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/TonBinding/TonBinding/openssl/include/openssl/cast.h -------------------------------------------------------------------------------- /SubModules/TonBinding/TonBinding/openssl/include/openssl/cmac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/TonBinding/TonBinding/openssl/include/openssl/cmac.h -------------------------------------------------------------------------------- /SubModules/TonBinding/TonBinding/openssl/include/openssl/cms.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/TonBinding/TonBinding/openssl/include/openssl/cms.h -------------------------------------------------------------------------------- /SubModules/TonBinding/TonBinding/openssl/include/openssl/cmserr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/TonBinding/TonBinding/openssl/include/openssl/cmserr.h -------------------------------------------------------------------------------- /SubModules/TonBinding/TonBinding/openssl/include/openssl/comp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/TonBinding/TonBinding/openssl/include/openssl/comp.h -------------------------------------------------------------------------------- /SubModules/TonBinding/TonBinding/openssl/include/openssl/comperr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/TonBinding/TonBinding/openssl/include/openssl/comperr.h -------------------------------------------------------------------------------- /SubModules/TonBinding/TonBinding/openssl/include/openssl/conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/TonBinding/TonBinding/openssl/include/openssl/conf.h -------------------------------------------------------------------------------- /SubModules/TonBinding/TonBinding/openssl/include/openssl/conf_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/TonBinding/TonBinding/openssl/include/openssl/conf_api.h -------------------------------------------------------------------------------- /SubModules/TonBinding/TonBinding/openssl/include/openssl/conferr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/TonBinding/TonBinding/openssl/include/openssl/conferr.h -------------------------------------------------------------------------------- /SubModules/TonBinding/TonBinding/openssl/include/openssl/crypto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/TonBinding/TonBinding/openssl/include/openssl/crypto.h -------------------------------------------------------------------------------- /SubModules/TonBinding/TonBinding/openssl/include/openssl/cryptoerr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/TonBinding/TonBinding/openssl/include/openssl/cryptoerr.h -------------------------------------------------------------------------------- /SubModules/TonBinding/TonBinding/openssl/include/openssl/ct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/TonBinding/TonBinding/openssl/include/openssl/ct.h -------------------------------------------------------------------------------- /SubModules/TonBinding/TonBinding/openssl/include/openssl/cterr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/TonBinding/TonBinding/openssl/include/openssl/cterr.h -------------------------------------------------------------------------------- /SubModules/TonBinding/TonBinding/openssl/include/openssl/des.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/TonBinding/TonBinding/openssl/include/openssl/des.h -------------------------------------------------------------------------------- /SubModules/TonBinding/TonBinding/openssl/include/openssl/dh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/TonBinding/TonBinding/openssl/include/openssl/dh.h -------------------------------------------------------------------------------- /SubModules/TonBinding/TonBinding/openssl/include/openssl/dherr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/TonBinding/TonBinding/openssl/include/openssl/dherr.h -------------------------------------------------------------------------------- /SubModules/TonBinding/TonBinding/openssl/include/openssl/dsa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/TonBinding/TonBinding/openssl/include/openssl/dsa.h -------------------------------------------------------------------------------- /SubModules/TonBinding/TonBinding/openssl/include/openssl/dsaerr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/TonBinding/TonBinding/openssl/include/openssl/dsaerr.h -------------------------------------------------------------------------------- /SubModules/TonBinding/TonBinding/openssl/include/openssl/dtls1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/TonBinding/TonBinding/openssl/include/openssl/dtls1.h -------------------------------------------------------------------------------- /SubModules/TonBinding/TonBinding/openssl/include/openssl/e_os2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/TonBinding/TonBinding/openssl/include/openssl/e_os2.h -------------------------------------------------------------------------------- /SubModules/TonBinding/TonBinding/openssl/include/openssl/ebcdic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/TonBinding/TonBinding/openssl/include/openssl/ebcdic.h -------------------------------------------------------------------------------- /SubModules/TonBinding/TonBinding/openssl/include/openssl/ec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/TonBinding/TonBinding/openssl/include/openssl/ec.h -------------------------------------------------------------------------------- /SubModules/TonBinding/TonBinding/openssl/include/openssl/ecdh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/TonBinding/TonBinding/openssl/include/openssl/ecdh.h -------------------------------------------------------------------------------- /SubModules/TonBinding/TonBinding/openssl/include/openssl/ecdsa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/TonBinding/TonBinding/openssl/include/openssl/ecdsa.h -------------------------------------------------------------------------------- /SubModules/TonBinding/TonBinding/openssl/include/openssl/ecerr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/TonBinding/TonBinding/openssl/include/openssl/ecerr.h -------------------------------------------------------------------------------- /SubModules/TonBinding/TonBinding/openssl/include/openssl/engine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/TonBinding/TonBinding/openssl/include/openssl/engine.h -------------------------------------------------------------------------------- /SubModules/TonBinding/TonBinding/openssl/include/openssl/engineerr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/TonBinding/TonBinding/openssl/include/openssl/engineerr.h -------------------------------------------------------------------------------- /SubModules/TonBinding/TonBinding/openssl/include/openssl/err.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/TonBinding/TonBinding/openssl/include/openssl/err.h -------------------------------------------------------------------------------- /SubModules/TonBinding/TonBinding/openssl/include/openssl/evp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/TonBinding/TonBinding/openssl/include/openssl/evp.h -------------------------------------------------------------------------------- /SubModules/TonBinding/TonBinding/openssl/include/openssl/evperr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/TonBinding/TonBinding/openssl/include/openssl/evperr.h -------------------------------------------------------------------------------- /SubModules/TonBinding/TonBinding/openssl/include/openssl/hmac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/TonBinding/TonBinding/openssl/include/openssl/hmac.h -------------------------------------------------------------------------------- /SubModules/TonBinding/TonBinding/openssl/include/openssl/idea.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/TonBinding/TonBinding/openssl/include/openssl/idea.h -------------------------------------------------------------------------------- /SubModules/TonBinding/TonBinding/openssl/include/openssl/kdf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/TonBinding/TonBinding/openssl/include/openssl/kdf.h -------------------------------------------------------------------------------- /SubModules/TonBinding/TonBinding/openssl/include/openssl/kdferr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/TonBinding/TonBinding/openssl/include/openssl/kdferr.h -------------------------------------------------------------------------------- /SubModules/TonBinding/TonBinding/openssl/include/openssl/lhash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/TonBinding/TonBinding/openssl/include/openssl/lhash.h -------------------------------------------------------------------------------- /SubModules/TonBinding/TonBinding/openssl/include/openssl/md2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/TonBinding/TonBinding/openssl/include/openssl/md2.h -------------------------------------------------------------------------------- /SubModules/TonBinding/TonBinding/openssl/include/openssl/md4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/TonBinding/TonBinding/openssl/include/openssl/md4.h -------------------------------------------------------------------------------- /SubModules/TonBinding/TonBinding/openssl/include/openssl/md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/TonBinding/TonBinding/openssl/include/openssl/md5.h -------------------------------------------------------------------------------- /SubModules/TonBinding/TonBinding/openssl/include/openssl/mdc2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/TonBinding/TonBinding/openssl/include/openssl/mdc2.h -------------------------------------------------------------------------------- /SubModules/TonBinding/TonBinding/openssl/include/openssl/modes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/TonBinding/TonBinding/openssl/include/openssl/modes.h -------------------------------------------------------------------------------- /SubModules/TonBinding/TonBinding/openssl/include/openssl/obj_mac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/TonBinding/TonBinding/openssl/include/openssl/obj_mac.h -------------------------------------------------------------------------------- /SubModules/TonBinding/TonBinding/openssl/include/openssl/objects.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/TonBinding/TonBinding/openssl/include/openssl/objects.h -------------------------------------------------------------------------------- /SubModules/TonBinding/TonBinding/openssl/include/openssl/objectserr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/TonBinding/TonBinding/openssl/include/openssl/objectserr.h -------------------------------------------------------------------------------- /SubModules/TonBinding/TonBinding/openssl/include/openssl/ocsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/TonBinding/TonBinding/openssl/include/openssl/ocsp.h -------------------------------------------------------------------------------- /SubModules/TonBinding/TonBinding/openssl/include/openssl/ocsperr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/TonBinding/TonBinding/openssl/include/openssl/ocsperr.h -------------------------------------------------------------------------------- /SubModules/TonBinding/TonBinding/openssl/include/openssl/opensslconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/TonBinding/TonBinding/openssl/include/openssl/opensslconf.h -------------------------------------------------------------------------------- /SubModules/TonBinding/TonBinding/openssl/include/openssl/opensslv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/TonBinding/TonBinding/openssl/include/openssl/opensslv.h -------------------------------------------------------------------------------- /SubModules/TonBinding/TonBinding/openssl/include/openssl/ossl_typ.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/TonBinding/TonBinding/openssl/include/openssl/ossl_typ.h -------------------------------------------------------------------------------- /SubModules/TonBinding/TonBinding/openssl/include/openssl/pem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/TonBinding/TonBinding/openssl/include/openssl/pem.h -------------------------------------------------------------------------------- /SubModules/TonBinding/TonBinding/openssl/include/openssl/pem2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/TonBinding/TonBinding/openssl/include/openssl/pem2.h -------------------------------------------------------------------------------- /SubModules/TonBinding/TonBinding/openssl/include/openssl/pemerr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/TonBinding/TonBinding/openssl/include/openssl/pemerr.h -------------------------------------------------------------------------------- /SubModules/TonBinding/TonBinding/openssl/include/openssl/pkcs12.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/TonBinding/TonBinding/openssl/include/openssl/pkcs12.h -------------------------------------------------------------------------------- /SubModules/TonBinding/TonBinding/openssl/include/openssl/pkcs12err.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/TonBinding/TonBinding/openssl/include/openssl/pkcs12err.h -------------------------------------------------------------------------------- /SubModules/TonBinding/TonBinding/openssl/include/openssl/pkcs7.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/TonBinding/TonBinding/openssl/include/openssl/pkcs7.h -------------------------------------------------------------------------------- /SubModules/TonBinding/TonBinding/openssl/include/openssl/pkcs7err.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/TonBinding/TonBinding/openssl/include/openssl/pkcs7err.h -------------------------------------------------------------------------------- /SubModules/TonBinding/TonBinding/openssl/include/openssl/rand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/TonBinding/TonBinding/openssl/include/openssl/rand.h -------------------------------------------------------------------------------- /SubModules/TonBinding/TonBinding/openssl/include/openssl/rand_drbg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/TonBinding/TonBinding/openssl/include/openssl/rand_drbg.h -------------------------------------------------------------------------------- /SubModules/TonBinding/TonBinding/openssl/include/openssl/randerr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/TonBinding/TonBinding/openssl/include/openssl/randerr.h -------------------------------------------------------------------------------- /SubModules/TonBinding/TonBinding/openssl/include/openssl/rc2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/TonBinding/TonBinding/openssl/include/openssl/rc2.h -------------------------------------------------------------------------------- /SubModules/TonBinding/TonBinding/openssl/include/openssl/rc4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/TonBinding/TonBinding/openssl/include/openssl/rc4.h -------------------------------------------------------------------------------- /SubModules/TonBinding/TonBinding/openssl/include/openssl/rc5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/TonBinding/TonBinding/openssl/include/openssl/rc5.h -------------------------------------------------------------------------------- /SubModules/TonBinding/TonBinding/openssl/include/openssl/ripemd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/TonBinding/TonBinding/openssl/include/openssl/ripemd.h -------------------------------------------------------------------------------- /SubModules/TonBinding/TonBinding/openssl/include/openssl/rsa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/TonBinding/TonBinding/openssl/include/openssl/rsa.h -------------------------------------------------------------------------------- /SubModules/TonBinding/TonBinding/openssl/include/openssl/rsaerr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/TonBinding/TonBinding/openssl/include/openssl/rsaerr.h -------------------------------------------------------------------------------- /SubModules/TonBinding/TonBinding/openssl/include/openssl/safestack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/TonBinding/TonBinding/openssl/include/openssl/safestack.h -------------------------------------------------------------------------------- /SubModules/TonBinding/TonBinding/openssl/include/openssl/seed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/TonBinding/TonBinding/openssl/include/openssl/seed.h -------------------------------------------------------------------------------- /SubModules/TonBinding/TonBinding/openssl/include/openssl/sha.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/TonBinding/TonBinding/openssl/include/openssl/sha.h -------------------------------------------------------------------------------- /SubModules/TonBinding/TonBinding/openssl/include/openssl/srp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/TonBinding/TonBinding/openssl/include/openssl/srp.h -------------------------------------------------------------------------------- /SubModules/TonBinding/TonBinding/openssl/include/openssl/srtp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/TonBinding/TonBinding/openssl/include/openssl/srtp.h -------------------------------------------------------------------------------- /SubModules/TonBinding/TonBinding/openssl/include/openssl/ssl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/TonBinding/TonBinding/openssl/include/openssl/ssl.h -------------------------------------------------------------------------------- /SubModules/TonBinding/TonBinding/openssl/include/openssl/ssl2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/TonBinding/TonBinding/openssl/include/openssl/ssl2.h -------------------------------------------------------------------------------- /SubModules/TonBinding/TonBinding/openssl/include/openssl/ssl3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/TonBinding/TonBinding/openssl/include/openssl/ssl3.h -------------------------------------------------------------------------------- /SubModules/TonBinding/TonBinding/openssl/include/openssl/sslerr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/TonBinding/TonBinding/openssl/include/openssl/sslerr.h -------------------------------------------------------------------------------- /SubModules/TonBinding/TonBinding/openssl/include/openssl/stack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/TonBinding/TonBinding/openssl/include/openssl/stack.h -------------------------------------------------------------------------------- /SubModules/TonBinding/TonBinding/openssl/include/openssl/store.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/TonBinding/TonBinding/openssl/include/openssl/store.h -------------------------------------------------------------------------------- /SubModules/TonBinding/TonBinding/openssl/include/openssl/storeerr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/TonBinding/TonBinding/openssl/include/openssl/storeerr.h -------------------------------------------------------------------------------- /SubModules/TonBinding/TonBinding/openssl/include/openssl/symhacks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/TonBinding/TonBinding/openssl/include/openssl/symhacks.h -------------------------------------------------------------------------------- /SubModules/TonBinding/TonBinding/openssl/include/openssl/tls1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/TonBinding/TonBinding/openssl/include/openssl/tls1.h -------------------------------------------------------------------------------- /SubModules/TonBinding/TonBinding/openssl/include/openssl/ts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/TonBinding/TonBinding/openssl/include/openssl/ts.h -------------------------------------------------------------------------------- /SubModules/TonBinding/TonBinding/openssl/include/openssl/tserr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/TonBinding/TonBinding/openssl/include/openssl/tserr.h -------------------------------------------------------------------------------- /SubModules/TonBinding/TonBinding/openssl/include/openssl/txt_db.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/TonBinding/TonBinding/openssl/include/openssl/txt_db.h -------------------------------------------------------------------------------- /SubModules/TonBinding/TonBinding/openssl/include/openssl/ui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/TonBinding/TonBinding/openssl/include/openssl/ui.h -------------------------------------------------------------------------------- /SubModules/TonBinding/TonBinding/openssl/include/openssl/uierr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/TonBinding/TonBinding/openssl/include/openssl/uierr.h -------------------------------------------------------------------------------- /SubModules/TonBinding/TonBinding/openssl/include/openssl/whrlpool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/TonBinding/TonBinding/openssl/include/openssl/whrlpool.h -------------------------------------------------------------------------------- /SubModules/TonBinding/TonBinding/openssl/include/openssl/x509.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/TonBinding/TonBinding/openssl/include/openssl/x509.h -------------------------------------------------------------------------------- /SubModules/TonBinding/TonBinding/openssl/include/openssl/x509_vfy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/TonBinding/TonBinding/openssl/include/openssl/x509_vfy.h -------------------------------------------------------------------------------- /SubModules/TonBinding/TonBinding/openssl/include/openssl/x509err.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/TonBinding/TonBinding/openssl/include/openssl/x509err.h -------------------------------------------------------------------------------- /SubModules/TonBinding/TonBinding/openssl/include/openssl/x509v3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/TonBinding/TonBinding/openssl/include/openssl/x509v3.h -------------------------------------------------------------------------------- /SubModules/TonBinding/TonBinding/openssl/include/openssl/x509v3err.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/TonBinding/TonBinding/openssl/include/openssl/x509v3err.h -------------------------------------------------------------------------------- /SubModules/TonBinding/TonBinding/ton/include/auto/tl/tonlib_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/TonBinding/TonBinding/ton/include/auto/tl/tonlib_api.h -------------------------------------------------------------------------------- /SubModules/TonBinding/TonBinding/ton/include/td/utils/SharedSlice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/TonBinding/TonBinding/ton/include/td/utils/SharedSlice.h -------------------------------------------------------------------------------- /SubModules/TonBinding/TonBinding/ton/include/td/utils/Slice-decl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/TonBinding/TonBinding/ton/include/td/utils/Slice-decl.h -------------------------------------------------------------------------------- /SubModules/TonBinding/TonBinding/ton/include/td/utils/Slice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/TonBinding/TonBinding/ton/include/td/utils/Slice.h -------------------------------------------------------------------------------- /SubModules/TonBinding/TonBinding/ton/include/td/utils/check.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/TonBinding/TonBinding/ton/include/td/utils/check.h -------------------------------------------------------------------------------- /SubModules/TonBinding/TonBinding/ton/include/td/utils/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/TonBinding/TonBinding/ton/include/td/utils/common.h -------------------------------------------------------------------------------- /SubModules/TonBinding/TonBinding/ton/include/td/utils/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/TonBinding/TonBinding/ton/include/td/utils/config.h -------------------------------------------------------------------------------- /SubModules/TonBinding/TonBinding/ton/include/td/utils/int_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/TonBinding/TonBinding/ton/include/td/utils/int_types.h -------------------------------------------------------------------------------- /SubModules/TonBinding/TonBinding/ton/include/td/utils/port/platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/TonBinding/TonBinding/ton/include/td/utils/port/platform.h -------------------------------------------------------------------------------- /SubModules/TonBinding/TonBinding/ton/include/td/utils/unique_ptr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/TonBinding/TonBinding/ton/include/td/utils/unique_ptr.h -------------------------------------------------------------------------------- /SubModules/TonBinding/TonBinding/ton/include/tl/TlObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/TonBinding/TonBinding/ton/include/tl/TlObject.h -------------------------------------------------------------------------------- /SubModules/TonBinding/TonBinding/ton/include/tonlib/Client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/TonBinding/TonBinding/ton/include/tonlib/Client.h -------------------------------------------------------------------------------- /SubModules/TonBinding/TonBinding/ton/include/tonlib/tonlib_client_json.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/TonBinding/TonBinding/ton/include/tonlib/tonlib_client_json.h -------------------------------------------------------------------------------- /SubModules/TonBinding/TonBinding/ton/include/tonlib/tonlibjson_export.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/TonBinding/TonBinding/ton/include/tonlib/tonlibjson_export.h -------------------------------------------------------------------------------- /SubModules/TonBinding/TonBinding/ton/include_extra/common/refcnt.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/TonBinding/TonBinding/ton/include_extra/common/refcnt.hpp -------------------------------------------------------------------------------- /SubModules/TonBinding/TonBinding/ton/include_extra/td/utils/Destructor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/TonBinding/TonBinding/ton/include_extra/td/utils/Destructor.h -------------------------------------------------------------------------------- /SubModules/TonBinding/TonBinding/ton/include_extra/td/utils/MovableValue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/TonBinding/TonBinding/ton/include_extra/td/utils/MovableValue.h -------------------------------------------------------------------------------- /SubModules/TonBinding/TonBinding/ton/include_extra/td/utils/bits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/TonBinding/TonBinding/ton/include_extra/td/utils/bits.h -------------------------------------------------------------------------------- /SubModules/TonBinding/TonBinding/ton/include_extra/td/utils/logging.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/TonBinding/TonBinding/ton/include_extra/td/utils/logging.h -------------------------------------------------------------------------------- /SubModules/TonBinding/TonBinding/ton/include_extra/td/utils/port/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/TonBinding/TonBinding/ton/include_extra/td/utils/port/config.h -------------------------------------------------------------------------------- /SubModules/UIComponents/UIComponents.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/UIComponents/UIComponents.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /SubModules/UIComponents/UIComponents/Sources/Buttons/WBaseButton.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/UIComponents/UIComponents/Sources/Buttons/WBaseButton.swift -------------------------------------------------------------------------------- /SubModules/UIComponents/UIComponents/Sources/Buttons/WButton.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/UIComponents/UIComponents/Sources/Buttons/WButton.swift -------------------------------------------------------------------------------- /SubModules/UIComponents/UIComponents/Sources/CommonViews/BalanceView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/UIComponents/UIComponents/Sources/CommonViews/BalanceView.swift -------------------------------------------------------------------------------- /SubModules/UIComponents/UIComponents/Sources/CommonViews/HeaderView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/UIComponents/UIComponents/Sources/CommonViews/HeaderView.swift -------------------------------------------------------------------------------- /SubModules/UIComponents/UIComponents/Sources/CommonViews/ToastView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/UIComponents/UIComponents/Sources/CommonViews/ToastView.swift -------------------------------------------------------------------------------- /SubModules/UIComponents/UIComponents/Sources/Label/WAddressLabel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/UIComponents/UIComponents/Sources/Label/WAddressLabel.swift -------------------------------------------------------------------------------- /SubModules/UIComponents/UIComponents/Sources/Label/WAmountLabel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/UIComponents/UIComponents/Sources/Label/WAmountLabel.swift -------------------------------------------------------------------------------- /SubModules/UIComponents/UIComponents/Sources/QR/Sources/ImageCorners.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/UIComponents/UIComponents/Sources/QR/Sources/ImageCorners.swift -------------------------------------------------------------------------------- /SubModules/UIComponents/UIComponents/Sources/QR/Sources/QrCode.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/UIComponents/UIComponents/Sources/QR/Sources/QrCode.swift -------------------------------------------------------------------------------- /SubModules/UIComponents/UIComponents/Sources/QR/WQrCode.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/UIComponents/UIComponents/Sources/QR/WQrCode.swift -------------------------------------------------------------------------------- /SubModules/UIComponents/UIComponents/Sources/TextInput/WAddressInput.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/UIComponents/UIComponents/Sources/TextInput/WAddressInput.swift -------------------------------------------------------------------------------- /SubModules/UIComponents/UIComponents/Sources/TextInput/WAmountInput.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/UIComponents/UIComponents/Sources/TextInput/WAmountInput.swift -------------------------------------------------------------------------------- /SubModules/UIComponents/UIComponents/Sources/TextInput/WCommentInput.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/UIComponents/UIComponents/Sources/TextInput/WCommentInput.swift -------------------------------------------------------------------------------- /SubModules/UIComponents/UIComponents/Sources/Utils/CAAnimationUtils.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/UIComponents/UIComponents/Sources/Utils/CAAnimationUtils.swift -------------------------------------------------------------------------------- /SubModules/UIComponents/UIComponents/Sources/Utils/UIColorUtils.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/UIComponents/UIComponents/Sources/Utils/UIColorUtils.swift -------------------------------------------------------------------------------- /SubModules/UIComponents/UIComponents/Sources/Utils/UIImageViewUtils.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/UIComponents/UIComponents/Sources/Utils/UIImageViewUtils.swift -------------------------------------------------------------------------------- /SubModules/UIComponents/UIComponents/Sources/Utils/UIKitRuntimeUtils.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/UIComponents/UIComponents/Sources/Utils/UIKitRuntimeUtils.swift -------------------------------------------------------------------------------- /SubModules/UIComponents/UIComponents/Sources/Utils/UIKitUtils.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/UIComponents/UIComponents/Sources/Utils/UIKitUtils.swift -------------------------------------------------------------------------------- /SubModules/UIComponents/UIComponents/Sources/Utils/WKeyboardObserver.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/UIComponents/UIComponents/Sources/Utils/WKeyboardObserver.swift -------------------------------------------------------------------------------- /SubModules/UIComponents/UIComponents/Sources/View/WTouchPassView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/UIComponents/UIComponents/Sources/View/WTouchPassView.swift -------------------------------------------------------------------------------- /SubModules/UIComponents/UIComponents/Sources/WordInput/WWordInput.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/UIComponents/UIComponents/Sources/WordInput/WWordInput.swift -------------------------------------------------------------------------------- /SubModules/UIComponents/UIComponents/UIComponents.docc/UIComponents.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/UIComponents/UIComponents/UIComponents.docc/UIComponents.md -------------------------------------------------------------------------------- /SubModules/UIComponents/UIComponents/UIComponents.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/UIComponents/UIComponents/UIComponents.h -------------------------------------------------------------------------------- /SubModules/UIComponents/UIComponentsTests/UIComponentsTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/UIComponents/UIComponentsTests/UIComponentsTests.swift -------------------------------------------------------------------------------- /SubModules/UICreateWallet/UICreateWallet.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/UICreateWallet/UICreateWallet.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /SubModules/UICreateWallet/UICreateWallet/Sources/PossibleWords.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/UICreateWallet/UICreateWallet/Sources/PossibleWords.swift -------------------------------------------------------------------------------- /SubModules/UICreateWallet/UICreateWallet/UICreateWallet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/UICreateWallet/UICreateWallet/UICreateWallet.h -------------------------------------------------------------------------------- /SubModules/UICreateWallet/UICreateWalletTests/UICreateWalletTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/UICreateWallet/UICreateWalletTests/UICreateWalletTests.swift -------------------------------------------------------------------------------- /SubModules/UIPasscode/UIPasscode.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/UIPasscode/UIPasscode.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /SubModules/UIPasscode/UIPasscode/Sources/Helpers/BiometricHelper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/UIPasscode/UIPasscode/Sources/Helpers/BiometricHelper.swift -------------------------------------------------------------------------------- /SubModules/UIPasscode/UIPasscode/UIPasscode.docc/UIPasscode.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/UIPasscode/UIPasscode/UIPasscode.docc/UIPasscode.md -------------------------------------------------------------------------------- /SubModules/UIPasscode/UIPasscode/UIPasscode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/UIPasscode/UIPasscode/UIPasscode.h -------------------------------------------------------------------------------- /SubModules/UIPasscode/UIPasscodeTests/UIPasscodeTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/UIPasscode/UIPasscodeTests/UIPasscodeTests.swift -------------------------------------------------------------------------------- /SubModules/UIQRScan/UIQRScan.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/UIQRScan/UIQRScan.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /SubModules/UIQRScan/UIQRScan/Sources/Camera/Camera.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/UIQRScan/UIQRScan/Sources/Camera/Camera.swift -------------------------------------------------------------------------------- /SubModules/UIQRScan/UIQRScan/Sources/Camera/CameraDevice.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/UIQRScan/UIQRScan/Sources/Camera/CameraDevice.swift -------------------------------------------------------------------------------- /SubModules/UIQRScan/UIQRScan/Sources/Camera/CameraInput.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/UIQRScan/UIQRScan/Sources/Camera/CameraInput.swift -------------------------------------------------------------------------------- /SubModules/UIQRScan/UIQRScan/Sources/Camera/CameraOutput.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/UIQRScan/UIQRScan/Sources/Camera/CameraOutput.swift -------------------------------------------------------------------------------- /SubModules/UIQRScan/UIQRScan/Sources/Camera/CameraPreviewNode.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/UIQRScan/UIQRScan/Sources/Camera/CameraPreviewNode.swift -------------------------------------------------------------------------------- /SubModules/UIQRScan/UIQRScan/Sources/Camera/CameraUtils.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/UIQRScan/UIQRScan/Sources/Camera/CameraUtils.swift -------------------------------------------------------------------------------- /SubModules/UIQRScan/UIQRScan/Sources/ViewControllers/QRScan/QRScanVC.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/UIQRScan/UIQRScan/Sources/ViewControllers/QRScan/QRScanVC.swift -------------------------------------------------------------------------------- /SubModules/UIQRScan/UIQRScan/UIQRScan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/UIQRScan/UIQRScan/UIQRScan.h -------------------------------------------------------------------------------- /SubModules/UITonConnect/UITonConnect.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/UITonConnect/UITonConnect.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /SubModules/UITonConnect/UITonConnect/UITonConnect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/UITonConnect/UITonConnect/UITonConnect.h -------------------------------------------------------------------------------- /SubModules/UIWalletHome/UIWalletHome.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/UIWalletHome/UIWalletHome.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /SubModules/UIWalletHome/UIWalletHome/Sources/MergeLists/Identifiable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/UIWalletHome/UIWalletHome/Sources/MergeLists/Identifiable.swift -------------------------------------------------------------------------------- /SubModules/UIWalletHome/UIWalletHome/Sources/MergeLists/MergeLists.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/UIWalletHome/UIWalletHome/Sources/MergeLists/MergeLists.swift -------------------------------------------------------------------------------- /SubModules/UIWalletHome/UIWalletHome/UIWalletHome.docc/UIWalletHome.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/UIWalletHome/UIWalletHome/UIWalletHome.docc/UIWalletHome.md -------------------------------------------------------------------------------- /SubModules/UIWalletHome/UIWalletHome/UIWalletHome.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/UIWalletHome/UIWalletHome/UIWalletHome.h -------------------------------------------------------------------------------- /SubModules/UIWalletHome/UIWalletHomeTests/UIWalletHomeTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/UIWalletHome/UIWalletHomeTests/UIWalletHomeTests.swift -------------------------------------------------------------------------------- /SubModules/UIWalletSend/UIWalletSend.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/UIWalletSend/UIWalletSend.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /SubModules/UIWalletSend/UIWalletSend/Sources/Models/RecentAddress.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/UIWalletSend/UIWalletSend/Sources/Models/RecentAddress.swift -------------------------------------------------------------------------------- /SubModules/UIWalletSend/UIWalletSend/UIWalletSend.docc/UIWalletSend.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/UIWalletSend/UIWalletSend/UIWalletSend.docc/UIWalletSend.md -------------------------------------------------------------------------------- /SubModules/UIWalletSend/UIWalletSend/UIWalletSend.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/UIWalletSend/UIWalletSend/UIWalletSend.h -------------------------------------------------------------------------------- /SubModules/UIWalletSend/UIWalletSendTests/UIWalletSendTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/UIWalletSend/UIWalletSendTests/UIWalletSendTests.swift -------------------------------------------------------------------------------- /SubModules/WalletContext/WalletContext.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/WalletContext/WalletContext.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /SubModules/WalletContext/WalletContext/Sources/Downloader.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/WalletContext/WalletContext/Sources/Downloader.swift -------------------------------------------------------------------------------- /SubModules/WalletContext/WalletContext/Sources/Helpers/EventsHelper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/WalletContext/WalletContext/Sources/Helpers/EventsHelper.swift -------------------------------------------------------------------------------- /SubModules/WalletContext/WalletContext/Sources/Helpers/ScreenHelpers.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/WalletContext/WalletContext/Sources/Helpers/ScreenHelpers.swift -------------------------------------------------------------------------------- /SubModules/WalletContext/WalletContext/Sources/Localization/WStrings.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/WalletContext/WalletContext/Sources/Localization/WStrings.swift -------------------------------------------------------------------------------- /SubModules/WalletContext/WalletContext/Sources/Theme/WColors.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/WalletContext/WalletContext/Sources/Theme/WColors.swift -------------------------------------------------------------------------------- /SubModules/WalletContext/WalletContext/Sources/Theme/WTheme.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/WalletContext/WalletContext/Sources/Theme/WTheme.swift -------------------------------------------------------------------------------- /SubModules/WalletContext/WalletContext/Sources/Utils/DataUtils.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/WalletContext/WalletContext/Sources/Utils/DataUtils.swift -------------------------------------------------------------------------------- /SubModules/WalletContext/WalletContext/Sources/Utils/DateUtils.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/WalletContext/WalletContext/Sources/Utils/DateUtils.swift -------------------------------------------------------------------------------- /SubModules/WalletContext/WalletContext/Sources/Utils/Int64Utils.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/WalletContext/WalletContext/Sources/Utils/Int64Utils.swift -------------------------------------------------------------------------------- /SubModules/WalletContext/WalletContext/Sources/Utils/StringUtils.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/WalletContext/WalletContext/Sources/Utils/StringUtils.swift -------------------------------------------------------------------------------- /SubModules/WalletContext/WalletContext/Sources/Utils/URLUtils.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/WalletContext/WalletContext/Sources/Utils/URLUtils.swift -------------------------------------------------------------------------------- /SubModules/WalletContext/WalletContext/Sources/Utils/WalletUtils.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/WalletContext/WalletContext/Sources/Utils/WalletUtils.swift -------------------------------------------------------------------------------- /SubModules/WalletContext/WalletContext/Sources/WalletContext.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/WalletContext/WalletContext/Sources/WalletContext.swift -------------------------------------------------------------------------------- /SubModules/WalletContext/WalletContext/WalletContext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/WalletContext/WalletContext/WalletContext.h -------------------------------------------------------------------------------- /SubModules/WalletCore/WalletCore.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/WalletCore/WalletCore.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /SubModules/WalletCore/WalletCore/Sources/Helpers/AddressHelpers.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/WalletCore/WalletCore/Sources/Helpers/AddressHelpers.swift -------------------------------------------------------------------------------- /SubModules/WalletCore/WalletCore/Sources/Helpers/TONQueryHelpers.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/WalletCore/WalletCore/Sources/Helpers/TONQueryHelpers.swift -------------------------------------------------------------------------------- /SubModules/WalletCore/WalletCore/Sources/Utils/DataUtils.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/WalletCore/WalletCore/Sources/Utils/DataUtils.swift -------------------------------------------------------------------------------- /SubModules/WalletCore/WalletCore/Sources/Utils/PublicKeyUtils.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/WalletCore/WalletCore/Sources/Utils/PublicKeyUtils.swift -------------------------------------------------------------------------------- /SubModules/WalletCore/WalletCore/Sources/Utils/StringUtils.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/WalletCore/WalletCore/Sources/Utils/StringUtils.swift -------------------------------------------------------------------------------- /SubModules/WalletCore/WalletCore/Sources/Utils/WalletInfoUtils.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/WalletCore/WalletCore/Sources/Utils/WalletInfoUtils.swift -------------------------------------------------------------------------------- /SubModules/WalletCore/WalletCore/WalletCore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/WalletCore/WalletCore/WalletCore.h -------------------------------------------------------------------------------- /SubModules/WalletCore/WalletCore/WalletCore.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/WalletCore/WalletCore/WalletCore.swift -------------------------------------------------------------------------------- /SubModules/WalletURL/WalletUrl.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/WalletURL/WalletUrl.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /SubModules/WalletURL/WalletUrl/WalletUrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/WalletURL/WalletUrl/WalletUrl.h -------------------------------------------------------------------------------- /SubModules/WalletURL/WalletUrl/WalletUrl.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/WalletURL/WalletUrl/WalletUrl.swift -------------------------------------------------------------------------------- /SubModules/YuvConversion/YuvConversion.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/YuvConversion/YuvConversion.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /SubModules/YuvConversion/YuvConversion/PublicHeaders/YuvConversion/YUV.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/YuvConversion/YuvConversion/PublicHeaders/YuvConversion/YUV.h -------------------------------------------------------------------------------- /SubModules/YuvConversion/YuvConversion/Sources/YUV.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/YuvConversion/YuvConversion/Sources/YUV.m -------------------------------------------------------------------------------- /SubModules/YuvConversion/YuvConversion/YuvConversion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/SubModules/YuvConversion/YuvConversion/YuvConversion.h -------------------------------------------------------------------------------- /ToncoinWallet.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/ToncoinWallet.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ToncoinWallet.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/ToncoinWallet.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /ToncoinWallet.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/ToncoinWallet.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /ToncoinWallet/ToncoinWallet.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/ToncoinWallet/ToncoinWallet.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ToncoinWallet/ToncoinWallet/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/ToncoinWallet/ToncoinWallet/AppDelegate.swift -------------------------------------------------------------------------------- /ToncoinWallet/ToncoinWallet/Assets.xcassets/AppIcon.appiconset/AppIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/ToncoinWallet/ToncoinWallet/Assets.xcassets/AppIcon.appiconset/AppIcon.png -------------------------------------------------------------------------------- /ToncoinWallet/ToncoinWallet/Assets.xcassets/BalanceGem.imageset/gem.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/ToncoinWallet/ToncoinWallet/Assets.xcassets/BalanceGem.imageset/gem.pdf -------------------------------------------------------------------------------- /ToncoinWallet/ToncoinWallet/Assets.xcassets/Colors/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/ToncoinWallet/ToncoinWallet/Assets.xcassets/Colors/Contents.json -------------------------------------------------------------------------------- /ToncoinWallet/ToncoinWallet/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/ToncoinWallet/ToncoinWallet/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /ToncoinWallet/ToncoinWallet/Assets.xcassets/Keyboard/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/ToncoinWallet/ToncoinWallet/Assets.xcassets/Keyboard/Contents.json -------------------------------------------------------------------------------- /ToncoinWallet/ToncoinWallet/Assets.xcassets/NavigationBar/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/ToncoinWallet/ToncoinWallet/Assets.xcassets/NavigationBar/Contents.json -------------------------------------------------------------------------------- /ToncoinWallet/ToncoinWallet/Assets.xcassets/QRScan/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/ToncoinWallet/ToncoinWallet/Assets.xcassets/QRScan/Contents.json -------------------------------------------------------------------------------- /ToncoinWallet/ToncoinWallet/Assets.xcassets/Receive/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/ToncoinWallet/ToncoinWallet/Assets.xcassets/Receive/Contents.json -------------------------------------------------------------------------------- /ToncoinWallet/ToncoinWallet/Assets.xcassets/Send/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/ToncoinWallet/ToncoinWallet/Assets.xcassets/Send/Contents.json -------------------------------------------------------------------------------- /ToncoinWallet/ToncoinWallet/Assets.xcassets/SendAmount/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/ToncoinWallet/ToncoinWallet/Assets.xcassets/SendAmount/Contents.json -------------------------------------------------------------------------------- /ToncoinWallet/ToncoinWallet/Assets.xcassets/Settings/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/ToncoinWallet/ToncoinWallet/Assets.xcassets/Settings/Contents.json -------------------------------------------------------------------------------- /ToncoinWallet/ToncoinWallet/Assets.xcassets/Splash/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/ToncoinWallet/ToncoinWallet/Assets.xcassets/Splash/Contents.json -------------------------------------------------------------------------------- /ToncoinWallet/ToncoinWallet/Assets.xcassets/ToastView/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/ToncoinWallet/ToncoinWallet/Assets.xcassets/ToastView/Contents.json -------------------------------------------------------------------------------- /ToncoinWallet/ToncoinWallet/Assets.xcassets/TonConnect/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/ToncoinWallet/ToncoinWallet/Assets.xcassets/TonConnect/Contents.json -------------------------------------------------------------------------------- /ToncoinWallet/ToncoinWallet/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/ToncoinWallet/ToncoinWallet/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /ToncoinWallet/ToncoinWallet/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/ToncoinWallet/ToncoinWallet/Info.plist -------------------------------------------------------------------------------- /ToncoinWallet/ToncoinWallet/Resources/Animations/Congratulations.tgs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/ToncoinWallet/ToncoinWallet/Resources/Animations/Congratulations.tgs -------------------------------------------------------------------------------- /ToncoinWallet/ToncoinWallet/Resources/Animations/Created.tgs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/ToncoinWallet/ToncoinWallet/Resources/Animations/Created.tgs -------------------------------------------------------------------------------- /ToncoinWallet/ToncoinWallet/Resources/Animations/Loading.tgs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/ToncoinWallet/ToncoinWallet/Resources/Animations/Loading.tgs -------------------------------------------------------------------------------- /ToncoinWallet/ToncoinWallet/Resources/Animations/Main.tgs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/ToncoinWallet/ToncoinWallet/Resources/Animations/Main.tgs -------------------------------------------------------------------------------- /ToncoinWallet/ToncoinWallet/Resources/Animations/Password.tgs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/ToncoinWallet/ToncoinWallet/Resources/Animations/Password.tgs -------------------------------------------------------------------------------- /ToncoinWallet/ToncoinWallet/Resources/Animations/Recovery Phrase.tgs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/ToncoinWallet/ToncoinWallet/Resources/Animations/Recovery Phrase.tgs -------------------------------------------------------------------------------- /ToncoinWallet/ToncoinWallet/Resources/Animations/Start.tgs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/ToncoinWallet/ToncoinWallet/Resources/Animations/Start.tgs -------------------------------------------------------------------------------- /ToncoinWallet/ToncoinWallet/Resources/Animations/Success.tgs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/ToncoinWallet/ToncoinWallet/Resources/Animations/Success.tgs -------------------------------------------------------------------------------- /ToncoinWallet/ToncoinWallet/Resources/Animations/Test Time.tgs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/ToncoinWallet/ToncoinWallet/Resources/Animations/Test Time.tgs -------------------------------------------------------------------------------- /ToncoinWallet/ToncoinWallet/Resources/Animations/Too Bad.tgs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/ToncoinWallet/ToncoinWallet/Resources/Animations/Too Bad.tgs -------------------------------------------------------------------------------- /ToncoinWallet/ToncoinWallet/Resources/Animations/Waiting TON.tgs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/ToncoinWallet/ToncoinWallet/Resources/Animations/Waiting TON.tgs -------------------------------------------------------------------------------- /ToncoinWallet/ToncoinWallet/Resources/Strings/en.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/ToncoinWallet/ToncoinWallet/Resources/Strings/en.lproj/Localizable.strings -------------------------------------------------------------------------------- /ToncoinWallet/ToncoinWallet/Resources/ton3-core.bundle/boc/builder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/ToncoinWallet/ToncoinWallet/Resources/ton3-core.bundle/boc/builder.js -------------------------------------------------------------------------------- /ToncoinWallet/ToncoinWallet/Resources/ton3-core.bundle/boc/cell.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/ToncoinWallet/ToncoinWallet/Resources/ton3-core.bundle/boc/cell.js -------------------------------------------------------------------------------- /ToncoinWallet/ToncoinWallet/Resources/ton3-core.bundle/boc/hashmap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/ToncoinWallet/ToncoinWallet/Resources/ton3-core.bundle/boc/hashmap.js -------------------------------------------------------------------------------- /ToncoinWallet/ToncoinWallet/Resources/ton3-core.bundle/boc/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/ToncoinWallet/ToncoinWallet/Resources/ton3-core.bundle/boc/index.js -------------------------------------------------------------------------------- /ToncoinWallet/ToncoinWallet/Resources/ton3-core.bundle/boc/serializer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/ToncoinWallet/ToncoinWallet/Resources/ton3-core.bundle/boc/serializer.js -------------------------------------------------------------------------------- /ToncoinWallet/ToncoinWallet/Resources/ton3-core.bundle/boc/slice.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/ToncoinWallet/ToncoinWallet/Resources/ton3-core.bundle/boc/slice.js -------------------------------------------------------------------------------- /ToncoinWallet/ToncoinWallet/Resources/ton3-core.bundle/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/ToncoinWallet/ToncoinWallet/Resources/ton3-core.bundle/index.js -------------------------------------------------------------------------------- /ToncoinWallet/ToncoinWallet/Resources/ton3-core.bundle/types/bit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/ToncoinWallet/ToncoinWallet/Resources/ton3-core.bundle/types/bit.js -------------------------------------------------------------------------------- /ToncoinWallet/ToncoinWallet/Resources/ton3-core.bundle/utils/checksum.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/ToncoinWallet/ToncoinWallet/Resources/ton3-core.bundle/utils/checksum.js -------------------------------------------------------------------------------- /ToncoinWallet/ToncoinWallet/Resources/ton3-core.bundle/utils/hash.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/ToncoinWallet/ToncoinWallet/Resources/ton3-core.bundle/utils/hash.js -------------------------------------------------------------------------------- /ToncoinWallet/ToncoinWallet/Resources/ton3-core.bundle/utils/helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/ToncoinWallet/ToncoinWallet/Resources/ton3-core.bundle/utils/helpers.js -------------------------------------------------------------------------------- /ToncoinWallet/ToncoinWallet/Resources/ton3-core.bundle/utils/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/ToncoinWallet/ToncoinWallet/Resources/ton3-core.bundle/utils/index.js -------------------------------------------------------------------------------- /ToncoinWallet/ToncoinWallet/Sources/DeeplinkHandler/DeeplinkHandler.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/ToncoinWallet/ToncoinWallet/Sources/DeeplinkHandler/DeeplinkHandler.swift -------------------------------------------------------------------------------- /ToncoinWallet/ToncoinWallet/Sources/SplashScreen/SplashVC.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/ToncoinWallet/ToncoinWallet/Sources/SplashScreen/SplashVC.swift -------------------------------------------------------------------------------- /ToncoinWallet/ToncoinWallet/Sources/SplashScreen/SplashVM.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/ToncoinWallet/ToncoinWallet/Sources/SplashScreen/SplashVM.swift -------------------------------------------------------------------------------- /ToncoinWallet/ToncoinWallet/Sources/Wallet/FileBackedStorage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/ToncoinWallet/ToncoinWallet/Sources/Wallet/FileBackedStorage.swift -------------------------------------------------------------------------------- /ToncoinWallet/ToncoinWallet/Sources/Wallet/WalletConfiguration.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/ToncoinWallet/ToncoinWallet/Sources/Wallet/WalletConfiguration.swift -------------------------------------------------------------------------------- /ToncoinWallet/ToncoinWalletTests/ToncoinWalletTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/ToncoinWallet/ToncoinWalletTests/ToncoinWalletTests.swift -------------------------------------------------------------------------------- /ToncoinWallet/ToncoinWalletUITests/ToncoinWalletUITests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/ToncoinWallet/ToncoinWalletUITests/ToncoinWalletUITests.swift -------------------------------------------------------------------------------- /ToncoinWallet/ToncoinWalletUITests/ToncoinWalletUITestsLaunchTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sina-KH/TonCoin-Wallet-iOS-Contest/HEAD/ToncoinWallet/ToncoinWalletUITests/ToncoinWalletUITestsLaunchTests.swift --------------------------------------------------------------------------------