├── .gitattributes ├── .github ├── dependabot.yml └── workflows │ ├── docs.yml │ ├── release.yml │ └── validation.yml ├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── TESTS.md ├── VERSION ├── Writerside ├── c.list ├── cfg │ └── buildprofiles.xml ├── hi.tree ├── topics │ └── Overview.md ├── v.list └── writerside.cfg ├── bigint ├── api │ ├── ton-sdk-bigint.api │ └── ton-sdk-bigint.klib.api ├── build.gradle.kts ├── src │ └── BigInt.kt ├── src@jvm │ └── BigInt.jvm.kt └── src@native │ └── BigInt.native.kt ├── bitstring-legacy ├── api │ ├── ton-kotlin-bitstring.api │ └── ton-kotlin-bitstring.klib.api ├── build.gradle.kts ├── src │ ├── BitString.kt │ ├── ByteBackedBitString.kt │ ├── ByteBackedMutableBitString.kt │ ├── EmptyBitString.kt │ ├── FiftHexBitStringSerializer.kt │ ├── MutableBitString.kt │ └── exception │ │ └── exceptions.kt └── test │ └── BitStringTest.kt ├── bitstring ├── api │ ├── ton-sdk-bitstring.api │ └── ton-sdk-bitstring.klib.api ├── build.gradle.kts ├── src │ ├── BitSink.kt │ ├── BitSource.kt │ ├── BitString.kt │ ├── BitStringBuilder.kt │ ├── BitStringReader.kt │ ├── internal │ │ └── BitsOperations.kt │ └── unsafe │ │ ├── Annotations.kt │ │ └── UnsafeBitStringOperations.kt └── test │ ├── BitStringBuilder.kt │ └── BitStringTest.kt ├── block-tlb ├── api │ ├── ton-kotlin-block-tlb.api │ └── ton-kotlin-block-tlb.klib.api ├── build.gradle.kts ├── src │ ├── AccStatusChange.kt │ ├── AccountActive.kt │ ├── AccountBlock.kt │ ├── AccountFrozen.kt │ ├── AccountState.kt │ ├── AccountStatus.kt │ ├── AccountStorage.kt │ ├── AccountUninit.kt │ ├── ActionChangeLibrary.kt │ ├── ActionReserveCurrency.kt │ ├── ActionSendMsg.kt │ ├── ActionSetCode.kt │ ├── AddrExtern.kt │ ├── AddrNone.kt │ ├── AddrStd.kt │ ├── AddrVar.kt │ ├── Anycast.kt │ ├── BinTree.kt │ ├── BinTreeFork.kt │ ├── BinTreeLeaf.kt │ ├── BlkMasterInfo.kt │ ├── BlkPrevInfo.kt │ ├── Block.kt │ ├── BlockCreateStats.kt │ ├── BlockCreateStatsExt.kt │ ├── BlockCreateStatsRegular.kt │ ├── BlockExtra.kt │ ├── BlockInfo.kt │ ├── Certificate.kt │ ├── CertificateEnv.kt │ ├── ChainedSignature.kt │ ├── ChunkRef.kt │ ├── ChunkRefEmpty.kt │ ├── Coins.kt │ ├── CommonMsgInfo.kt │ ├── CommonMsgInfoRelaxed.kt │ ├── ConfigParams.kt │ ├── Counters.kt │ ├── CreatorStats.kt │ ├── CryptoSignature.kt │ ├── CryptoSignaturePair.kt │ ├── CryptoSignatureSimple.kt │ ├── CurrencyCollection.kt │ ├── DepthBalanceInfo.kt │ ├── DnsAdnlAddress.kt │ ├── DnsNextResolver.kt │ ├── DnsRecord.kt │ ├── DnsSmcAddress.kt │ ├── DnsText.kt │ ├── Either.kt │ ├── EnqueuedMsg.kt │ ├── ExtBlkRef.kt │ ├── ExtInMsgInfo.kt │ ├── ExtOutMsgInfo.kt │ ├── ExtraCurrencyCollection.kt │ ├── FutureSplitMerge.kt │ ├── FutureSplitMergeMerge.kt │ ├── FutureSplitMergeNone.kt │ ├── FutureSplitMergeSplit.kt │ ├── GlobalVersion.kt │ ├── HashUpdate.kt │ ├── IhrPendingSince.kt │ ├── ImportFees.kt │ ├── InMsg.kt │ ├── IntMsgInfo.kt │ ├── IntermediateAddress.kt │ ├── IntermediateAddressExt.kt │ ├── IntermediateAddressRegular.kt │ ├── IntermediateAddressSimple.kt │ ├── KeyExtBlkRef.kt │ ├── KeyMaxLt.kt │ ├── LibDescr.kt │ ├── LibRef.kt │ ├── LibRefHash.kt │ ├── LibRefRef.kt │ ├── Maybe.kt │ ├── McBlockExtra.kt │ ├── McStateExtra.kt │ ├── MerkleProof.kt │ ├── MerkleUpdate.kt │ ├── Message.kt │ ├── MessageRelaxed.kt │ ├── MsgAddress.kt │ ├── MsgAddressExt.kt │ ├── MsgAddressInt.kt │ ├── MsgDiscardFin.kt │ ├── MsgDiscardTr.kt │ ├── MsgEnvelope.kt │ ├── MsgExportDeq.kt │ ├── MsgExportDeqImm.kt │ ├── MsgExportDeqShort.kt │ ├── MsgExportExt.kt │ ├── MsgExportImm.kt │ ├── MsgExportNew.kt │ ├── MsgExportTr.kt │ ├── MsgExportTrReq.kt │ ├── MsgImportExt.kt │ ├── MsgImportFin.kt │ ├── MsgImportIhr.kt │ ├── MsgImportImm.kt │ ├── MsgImportTr.kt │ ├── OldMcBlocksInfo.kt │ ├── OutAction.kt │ ├── OutList.kt │ ├── OutListEmpty.kt │ ├── OutListLink.kt │ ├── OutListNode.kt │ ├── OutMsg.kt │ ├── OutMsgQueueInfo.kt │ ├── PrevBlkInfo.kt │ ├── PrevBlksInfo.kt │ ├── ProcessedUpto.kt │ ├── ProtoHttp.kt │ ├── ProtoList.kt │ ├── ProtoListNext.kt │ ├── ProtoListNil.kt │ ├── Protocol.kt │ ├── ShardAccounts.kt │ ├── ShardDescr.kt │ ├── ShardFeeCreated.kt │ ├── ShardHashes.kt │ ├── ShardIdent.kt │ ├── ShardState.kt │ ├── ShardStateUnsplit.kt │ ├── SigPubKey.kt │ ├── SignedCertificate.kt │ ├── SimpleLib.kt │ ├── SmartContractInfo.kt │ ├── SmcCapList.kt │ ├── SmcCapability.kt │ ├── SplitMergeInfo.kt │ ├── SplitState.kt │ ├── StateInit.kt │ ├── StorageInfo.kt │ ├── StorageUsed.kt │ ├── StorageUsedShort.kt │ ├── Text.kt │ ├── TextChunk.kt │ ├── TextChunkEmpty.kt │ ├── TextChunkRef.kt │ ├── TextChunks.kt │ ├── TickTock.kt │ ├── ValidatorBaseInfo.kt │ ├── ValidatorInfo.kt │ ├── ValueFlow.kt │ ├── VarInteger.kt │ ├── VarUInteger.kt │ ├── VmCellSlice.kt │ ├── VmCont.kt │ ├── VmContEnvelope.kt │ ├── VmContQuit.kt │ ├── VmContQuitExc.kt │ ├── VmContRepeat.kt │ ├── VmContStd.kt │ ├── VmControlData.kt │ ├── VmGasLimits.kt │ ├── VmLibraries.kt │ ├── VmSaveList.kt │ ├── VmStack.kt │ ├── VmStackBuilder.kt │ ├── VmStackCell.kt │ ├── VmStackCont.kt │ ├── VmStackInt.kt │ ├── VmStackList.kt │ ├── VmStackNan.kt │ ├── VmStackNull.kt │ ├── VmStackNumber.kt │ ├── VmStackSlice.kt │ ├── VmStackTinyInt.kt │ ├── VmStackTuple.kt │ ├── VmStackValue.kt │ ├── VmTuple.kt │ ├── VmTupleNil.kt │ ├── VmTupleRef.kt │ ├── VmTupleTcons.kt │ ├── account │ │ ├── Account.kt │ │ └── ShardAccount.kt │ ├── blocktlb.kt │ ├── config │ │ ├── BurningConfig.kt │ │ └── StoragePrices.kt │ ├── currency │ │ └── VarUInt248.kt │ ├── message │ │ └── MessageLayout.kt │ └── transaction │ │ ├── Transaction.kt │ │ ├── TransactionInfo.kt │ │ └── phase │ │ ├── ActionPhase.kt │ │ ├── BouncePhase.kt │ │ ├── ComputePhase.kt │ │ ├── CreditPhase.kt │ │ └── StoragePhase.kt └── test │ ├── AddrStdTest.kt │ ├── MsgAddressIntTest.kt │ ├── StateInitTest.kt │ ├── TextTest.kt │ ├── VmStackListTest.kt │ ├── VmStackTest.kt │ ├── VmStackValue.kt │ └── util.kt ├── blockchain ├── api │ ├── ton-sdk-blockchain.api │ └── ton-sdk-blockchain.klib.api ├── build.gradle.kts └── src │ ├── BlockId.kt │ ├── BlockIdShort.kt │ ├── GlobalVersion.kt │ ├── ShardId.kt │ ├── account │ ├── AccountStatus.kt │ └── StorageUsedShort.kt │ ├── address │ ├── Address.kt │ ├── AddressExt.kt │ ├── Anycast.kt │ └── SplitDepth.kt │ ├── block │ ├── AccountBlock.kt │ ├── BlockExtra.kt │ ├── BlockInfo.kt │ ├── BlockRef.kt │ ├── McBlockExtra.kt │ └── ValueFlow.kt │ ├── currency │ ├── Coins.kt │ ├── CurrencyCollection.kt │ ├── ExtraCoins.kt │ └── ExtraCurrencyCollection.kt │ ├── message │ ├── ImportFees.kt │ ├── InMsg.kt │ ├── Message.kt │ └── OutMsg.kt │ └── transaction │ ├── HashUpdate.kt │ ├── SplitMergeInfo.kt │ ├── Transaction.kt │ ├── TransactionDescription.kt │ └── phases │ ├── AccountStatusChange.kt │ ├── ActionPhase.kt │ ├── BouncePhase.kt │ ├── ComputePhase.kt │ ├── CreditPhase.kt │ └── StoragePhase.kt ├── cell ├── api │ ├── ton-sdk-cell.api │ └── ton-sdk-cell.klib.api ├── build.gradle.kts ├── src │ ├── Cell.kt │ ├── CellBuilder.kt │ ├── CellContext.kt │ ├── CellDescriptor.kt │ ├── CellRef.kt │ ├── CellType.kt │ ├── LevelMask.kt │ ├── boc │ │ ├── BagOfCellSerializer.kt │ │ ├── BagOfCells.kt │ │ ├── BagOfCellsHeader.kt │ │ ├── StaticBagOfCells.kt │ │ └── internal │ │ │ └── io.kt │ ├── exception │ │ └── CellOverflowException.kt │ └── internal │ │ ├── CellLoader.kt │ │ ├── DataCell.kt │ │ ├── EmptyCell.kt │ │ ├── EmptyCellContext.kt │ │ ├── ExtCell.kt │ │ ├── LibraryCell.kt │ │ ├── PrunedCell.kt │ │ ├── VirtualCell.kt │ │ └── bitstring.kt └── test │ ├── BocTest.kt │ ├── CellBuilderTest.kt │ ├── CellTest.kt │ ├── PrunedBranchTest.kt │ ├── StoreBigIntTest.kt │ ├── StoreIntTest.kt │ ├── StoreLongTest.kt │ └── utils │ ├── XorShift128Plus.kt │ └── cell.kt ├── contract ├── api │ ├── ton-kotlin-contract.api │ └── ton-kotlin-contract.klib.api ├── build.gradle.kts ├── src │ ├── CellString.kt │ ├── ChunkedData.kt │ ├── ContentData.kt │ ├── FullContent.kt │ ├── SmartContract.kt │ ├── SnakeData.kt │ ├── Text.kt │ ├── exception │ │ └── AccountNotInitializedException.kt │ └── wallet │ │ ├── HighLoadWalletV2Contract.kt │ │ ├── MessageText.kt │ │ ├── WalletContract.kt │ │ ├── WalletMessage.kt │ │ ├── WalletTransfer.kt │ │ ├── WalletV3Contract.kt │ │ └── WalletV4R2Contract.kt └── test │ ├── SnakeDataTest.kt │ └── wallet │ ├── GlobalConfig.kt │ ├── LiteClient.kt │ └── WalletV4Example.kt ├── crypto ├── api │ ├── ton-sdk-crypto.api │ └── ton-sdk-crypto.klib.api ├── build.gradle.kts ├── src │ ├── Decryptor.kt │ ├── Digest.kt │ ├── Encryptor.kt │ ├── HashBytes.kt │ ├── PrivateKey.kt │ ├── PublicKey.kt │ ├── SecureRandom.kt │ ├── aes.kt │ ├── crc16.kt │ ├── crc32.kt │ ├── curve25519 │ │ ├── constants │ │ │ ├── constants.kt │ │ │ └── tables │ │ │ │ ├── AffineNielsPointLookupTable.kt │ │ │ │ ├── AffineNielsPointNafLookupTable.kt │ │ │ │ ├── EdwardsBasepointTable.kt │ │ │ │ ├── PackedAffineOddMultiplesOfBasepoint.kt │ │ │ │ ├── PackedEdwardsBasepointTable.kt │ │ │ │ ├── ProjectiveNielsPointLookupTable.kt │ │ │ │ └── ProjectiveNielsPointNafLookupTable.kt │ │ ├── edwards │ │ │ ├── CompressedEdwardsY.kt │ │ │ └── EdwardsPoint.kt │ │ ├── exceptioin │ │ │ └── InvalidYCoordinateException.kt │ │ ├── field │ │ │ └── FieldElement.kt │ │ ├── internal │ │ │ ├── binary.kt │ │ │ ├── fieldCommon.kt │ │ │ ├── math.kt │ │ │ └── scalar64.kt │ │ ├── models │ │ │ ├── AffineNielsPoint.kt │ │ │ ├── CompletedPoint.kt │ │ │ ├── ProjectiveNielsPoint.kt │ │ │ └── ProjectivePoint.kt │ │ ├── montgomery │ │ │ ├── MontgomeryPoint.kt │ │ │ └── MontgomeryProjectivePoint.kt │ │ ├── scalar │ │ │ ├── Scalar.kt │ │ │ └── UnpackedScalar.kt │ │ └── subtle │ │ │ └── subtle.kt │ ├── ed25519.kt │ ├── hmac.kt │ ├── mnemonic │ │ ├── Mnemonic.kt │ │ └── bip39.kt │ ├── overlay.kt │ ├── pbkdf2.kt │ ├── sha256.kt │ ├── sha512.kt │ └── unenc.kt ├── src@apple │ ├── AesCtr.apple.kt │ ├── SecureRandom.apple.kt │ ├── sha256.apple.kt │ └── sha512.apple.kt ├── src@jvm │ ├── AesCtr.jvm.kt │ ├── SecureRandom.jvm.kt │ ├── crc32.jvm.kt │ ├── sha256.jvm.kt │ └── sha512.jvm.kt ├── src@linux │ └── SecureRandom.linux.kt ├── src@mingw │ └── SecureRandom.mingw.kt ├── src@native │ └── crc32.native.kt ├── src@nonApplePosix │ ├── AesCtr.nonApplePosix.kt │ ├── sha256.nonApplePosix.kt │ └── sha512.nonApplePosix.kt └── test │ ├── Crc16Test.kt │ ├── Ed25519Golden.kt │ └── Ed25519Test.kt ├── detekt.yml ├── dict ├── api │ ├── ton-kotlin-dict.api │ └── ton-kotlin-dict.klib.api ├── build.gradle.kts └── src │ └── org │ └── ton │ └── kotlin │ └── dict │ ├── AugmentedDictionary.kt │ ├── Dictionary.kt │ ├── DictionaryKeyCodec.kt │ ├── RawDictionary.kt │ └── internal │ ├── Label.kt │ └── SetMode.kt ├── docs ├── block.tlb ├── ci.md ├── fift.md ├── lite_api.tl ├── tblkch.md └── tvm.md ├── examples ├── build.gradle.kts ├── java-maven-project │ ├── .gitignore │ ├── pom.xml │ └── src │ │ └── main │ │ └── java │ │ └── org │ │ └── ton │ │ └── sdk │ │ └── example │ │ └── GetTransactionExample.java ├── kotlin-gradle-project │ ├── build.gradle.kts │ └── src │ │ └── jvmMain │ │ └── kotlin │ │ └── GetTransactionExample.kt └── src │ ├── ConfigContractExample.kt │ ├── ExtraCurrencyExample.kt │ ├── ExtraCurrencyMonitor.kt │ ├── TestSer.kt │ ├── WalletV4R2Example.kt │ ├── contract │ ├── BaseWalletContract.kt │ ├── WalletMessage.kt │ ├── WalletV1R3Contract.kt │ └── config │ │ └── ConfigContract.kt │ ├── faucet │ └── TestnetFaucet.kt │ └── provider │ ├── GlobalConfig.kt │ ├── LiteClient.kt │ └── Provider.kt ├── git-cliff.toml ├── gradle.properties ├── gradle ├── libs.versions.toml └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── hashmap-tlb ├── api │ ├── ton-kotlin-hashmap-tlb.api │ └── ton-kotlin-hashmap-tlb.klib.api ├── build.gradle.kts ├── src │ ├── AugmentedDictionary.kt │ ├── HashMapE.kt │ ├── HashMapNode.kt │ ├── HashmapAug.kt │ ├── HashmapAugE.kt │ ├── HashmapAugNode.kt │ ├── HmEdge.kt │ ├── HmLabel.kt │ ├── HmeEmpty.kt │ ├── HmeRoot.kt │ ├── HmlLong.kt │ ├── HmlSame.kt │ ├── HmlShort.kt │ ├── HmnFork.kt │ ├── HmnLeaf.kt │ ├── Unary.kt │ ├── UnarySuccess.kt │ └── UnaryZero.kt └── test │ ├── HashMapEdgeTest.kt │ ├── HashMapEditTest.kt │ ├── HashMapLabelTest.kt │ ├── UnaryTest.kt │ └── util.kt ├── liteapi-tl ├── api │ ├── ton-kotlin-liteapi-tl.api │ └── ton-kotlin-liteapi-tl.klib.api ├── build.gradle.kts └── src │ ├── LiteApi.kt │ ├── LiteApiClient.kt │ ├── exception │ └── exceptions.kt │ └── liteserver │ ├── LiteServerAccountId.kt │ ├── LiteServerAccountState.kt │ ├── LiteServerAllShardsInfo.kt │ ├── LiteServerBlockData.kt │ ├── LiteServerBlockHeader.kt │ ├── LiteServerBlockLink.kt │ ├── LiteServerBlockLinkBack.kt │ ├── LiteServerBlockLinkForward.kt │ ├── LiteServerBlockState.kt │ ├── LiteServerBlockTransactions.kt │ ├── LiteServerConfigInfo.kt │ ├── LiteServerCurrentTime.kt │ ├── LiteServerDebugVerbosity.kt │ ├── LiteServerError.kt │ ├── LiteServerMasterchainInfo.kt │ ├── LiteServerMasterchainInfoExt.kt │ ├── LiteServerPartialBlockProof.kt │ ├── LiteServerQueryPrefix.kt │ ├── LiteServerRunMethodResult.kt │ ├── LiteServerSendMsgStatus.kt │ ├── LiteServerShardInfo.kt │ ├── LiteServerSignature.kt │ ├── LiteServerSignatureSet.kt │ ├── LiteServerTransactionId.kt │ ├── LiteServerTransactionId3.kt │ ├── LiteServerTransactionInfo.kt │ ├── LiteServerTransactionList.kt │ ├── LiteServerValidatorStats.kt │ ├── LiteServerVersion.kt │ └── functions │ ├── LiteServerGetAccountState.kt │ ├── LiteServerGetAllShardsInfo.kt │ ├── LiteServerGetBlock.kt │ ├── LiteServerGetBlockHeader.kt │ ├── LiteServerGetBlockProof.kt │ ├── LiteServerGetConfigAll.kt │ ├── LiteServerGetConfigParams.kt │ ├── LiteServerGetMasterchainInfo.kt │ ├── LiteServerGetMasterchainInfoExt.kt │ ├── LiteServerGetOneTransaction.kt │ ├── LiteServerGetShardInfo.kt │ ├── LiteServerGetState.kt │ ├── LiteServerGetTime.kt │ ├── LiteServerGetTransactions.kt │ ├── LiteServerGetValidatorStats.kt │ ├── LiteServerGetVersion.kt │ ├── LiteServerListBlockTransactions.kt │ ├── LiteServerLookupBlock.kt │ ├── LiteServerQuery.kt │ ├── LiteServerRunSmcMethod.kt │ ├── LiteServerSendMessage.kt │ └── LiteServerWaitMasterchainSeqno.kt ├── liteclient ├── api │ ├── ton-kotlin-liteclient.api │ └── ton-kotlin-liteclient.klib.api ├── build.gradle.kts ├── src │ ├── LiteClient.kt │ ├── LiteClientApi.kt │ └── internal │ │ ├── BlockHeaderResult.kt │ │ ├── CheckProofUtils.kt │ │ ├── LiteConnection.kt │ │ ├── LiteMessage.kt │ │ ├── LiteTcpTransport.kt │ │ ├── LiteTransport.kt │ │ └── utils.kt └── test@jvm │ ├── Config.kt │ └── LiteClientIntegrationTest.kt ├── provider ├── build.gradle.kts ├── core │ ├── build.gradle.kts │ ├── src │ │ └── Provider.kt │ ├── src@jvm │ │ └── Provider.jvm.kt │ └── src@nonJvm │ │ └── Provider.nonJvm.kt ├── liteapi │ ├── build.gradle.kts │ ├── src │ │ ├── LiteApi.kt │ │ ├── LiteApiClient.kt │ │ ├── LiteApiClientImpl.kt │ │ ├── LiteApiClientProvider.kt │ │ └── internal │ │ │ ├── LiteConnection.kt │ │ │ ├── LiteMessage.kt │ │ │ ├── LiteTcpTransport.kt │ │ │ ├── LiteTransport.kt │ │ │ └── utils.kt │ └── test │ │ └── LiteClientTest.kt └── toncenter │ ├── build.gradle.kts │ └── src │ └── TonCenterV3ClientProvider.kt ├── settings.gradle.kts ├── tl-legacy ├── api │ ├── ton-kotlin-tl-legacy.api │ └── ton-kotlin-tl-legacy.klib.api ├── build.gradle.kts └── src │ ├── AbstractTlCombinator.kt │ ├── ByteStringBase64Serializer.kt │ ├── TlCodec.kt │ ├── TlCombinator.kt │ ├── TlConstructor.kt │ ├── TlDecoder.kt │ ├── TlEncoder.kt │ ├── TlReader.kt │ ├── TlWriter.kt │ ├── constructors │ ├── BoolTlConstructor.kt │ ├── BytesTlConstructor.kt │ └── EnumTlCombinator.kt │ └── deprecation.kt ├── tl ├── api │ ├── ton-sdk-tl.api │ └── ton-sdk-tl.klib.api ├── build.gradle.kts └── src │ ├── TL.kt │ ├── annotations.kt │ ├── internal │ ├── TlDecoderImpl.kt │ ├── TlEncoderImpl.kt │ ├── TlMeta.kt │ ├── TlReader.kt │ └── TlWriter.kt │ └── serializers │ ├── ByteArrayBase64Serializer.kt │ └── ByteStringBase64Serializer.kt ├── tlb ├── api │ ├── ton-kotlin-tlb.api │ └── ton-kotlin-tlb.klib.api ├── build.gradle.kts └── src │ ├── AbstractTlbCombinator.kt │ ├── CellRef.kt │ ├── TlbCodec.kt │ ├── TlbCombinator.kt │ ├── TlbConstructor.kt │ ├── TlbNegatedCombinator.kt │ ├── TlbObject.kt │ ├── TlbPrettyPrinter.kt │ ├── constructor │ ├── exception │ ├── ParseTlbException.kt │ └── UnknownTlbConstructorException.kt │ └── providers │ ├── TlbCombinatorProvider.kt │ ├── TlbConstructorProvider.kt │ └── TlbProvider.kt ├── ton-kotlin-fift ├── build.gradle.kts └── src │ ├── commonMain │ ├── kotlin │ │ └── org │ │ │ └── ton │ │ │ └── fift │ │ │ ├── Box.kt │ │ │ ├── dictionary.kt │ │ │ ├── exceptions.kt │ │ │ ├── interpretator.kt │ │ │ ├── stack.kt │ │ │ ├── utils.kt │ │ │ └── words.kt │ └── resources │ │ └── Fift.fif │ └── commonTest │ └── kotlin │ └── org │ └── ton │ └── fift │ └── WordsTest.kt ├── ton-sdk-toncenter ├── ton-sdk-toncenter-client │ ├── build.gradle.kts │ ├── src │ │ ├── TonCenter.kt │ │ ├── client │ │ │ └── TonCenterV3Client.kt │ │ ├── internal │ │ │ ├── TonCenterV3ClientImpl.kt │ │ │ └── serializers │ │ │ │ ├── AccountStatusChangeSerializer.kt │ │ │ │ ├── AccountStatusSerializer.kt │ │ │ │ ├── ActionPhaseSerializer.kt │ │ │ │ ├── AddressStdAsBase64Serializer.kt │ │ │ │ ├── BigIntAsHexStringSerializer.kt │ │ │ │ ├── BigIntHexSerializer.kt │ │ │ │ ├── BouncePhaseSerializer.kt │ │ │ │ ├── CoinsSerializer.kt │ │ │ │ ├── ComputePhaseSerializer.kt │ │ │ │ ├── CreditPhaseSerializer.kt │ │ │ │ ├── ExtraCurrencyCollectionSerializer.kt │ │ │ │ ├── HashBytesAsBase64Serializer.kt │ │ │ │ ├── IntHexSerializer.kt │ │ │ │ ├── StoragePhaseSerializer.kt │ │ │ │ ├── StorageUsedShortSerializer.kt │ │ │ │ └── TransactionDescriptionSerializer.kt │ │ └── model │ │ │ ├── TonCenterAccountState.kt │ │ │ ├── TonCenterAccountStateFull.kt │ │ │ ├── TonCenterAccountStates.kt │ │ │ ├── TonCenterAddressBook.kt │ │ │ ├── TonCenterAddressBookRequest.kt │ │ │ ├── TonCenterAddressMetadata.kt │ │ │ ├── TonCenterBlock.kt │ │ │ ├── TonCenterBlocksRequest.kt │ │ │ ├── TonCenterBlocksResponse.kt │ │ │ ├── TonCenterDecodedContent.kt │ │ │ ├── TonCenterMasterchainBlockShardStateRequest.kt │ │ │ ├── TonCenterMasterchainInfo.kt │ │ │ ├── TonCenterMessage.kt │ │ │ ├── TonCenterMessageContent.kt │ │ │ ├── TonCenterMetadataRequest.kt │ │ │ ├── TonCenterRequestBuilder.kt │ │ │ ├── TonCenterRunGetMethod.kt │ │ │ ├── TonCenterSendMessage.kt │ │ │ ├── TonCenterStackEntry.kt │ │ │ ├── TonCenterTokenInfo.kt │ │ │ ├── TonCenterTransaction.kt │ │ │ ├── TonCenterTransactionsRequestBuilder.kt │ │ │ ├── TonCenterTransactionsResponse.kt │ │ │ ├── TonCenterWalletState.kt │ │ │ ├── TonCenterWalletStatesResponse.kt │ │ │ └── TonCenterWalletType.kt │ ├── src@jvm │ │ └── TonCenterClient.jvm.kt │ ├── src@nonJvm │ │ └── TonCenterClient.nonJvm.kt │ ├── test@jvm │ │ ├── TonCenterTest.kt │ │ └── TransactionsTest.kt │ └── testResources@jvm │ │ └── transactions.json ├── ton-sdk-toncenter-protocol │ ├── build.gradle.kts │ └── openapi.yaml └── ton-sdk-toncenter-provider │ └── build.gradle.kts ├── tonapi-tl ├── api │ ├── ton-kotlin-tonapi-tl.api │ └── ton-kotlin-tonapi-tl.klib.api ├── build.gradle.kts ├── src │ ├── SignedTlObject.kt │ ├── adnl │ │ ├── AdnlAddress.kt │ │ ├── AdnlAddressList.kt │ │ ├── AdnlIdShort.kt │ │ ├── AdnlNode.kt │ │ ├── AdnlNodes.kt │ │ ├── AdnlPacketContents.kt │ │ ├── AdnlPing.kt │ │ ├── AdnlPong.kt │ │ ├── AdnlProxy.kt │ │ ├── AdnlProxyTo.kt │ │ ├── AdnlProxyToSign.kt │ │ ├── config │ │ │ └── AdnlConfigGlobal.kt │ │ └── message │ │ │ ├── AdnlMessage.kt │ │ │ ├── AdnlMessageAnswer.kt │ │ │ ├── AdnlMessageConfirmChannel.kt │ │ │ ├── AdnlMessageCreateChannel.kt │ │ │ ├── AdnlMessageCustom.kt │ │ │ ├── AdnlMessageNop.kt │ │ │ ├── AdnlMessagePart.kt │ │ │ ├── AdnlMessageQuery.kt │ │ │ └── AdnlMessageReinit.kt │ ├── config │ │ └── ConfigGlobal.kt │ ├── dht │ │ ├── DhtKey.kt │ │ ├── DhtKeyDescription.kt │ │ ├── DhtMessage.kt │ │ ├── DhtNode.kt │ │ ├── DhtNodes.kt │ │ ├── DhtPong.kt │ │ ├── DhtStore.kt │ │ ├── DhtStored.kt │ │ ├── DhtUpdateRule.kt │ │ ├── DhtValue.kt │ │ ├── DhtValueResult.kt │ │ ├── config │ │ │ ├── DhtConfigGlobal.kt │ │ │ ├── DhtConfigIdLocal.kt │ │ │ ├── DhtConfigLocal.kt │ │ │ └── DhtConfigRandomLocal.kt │ │ ├── db │ │ │ ├── DhtDbBucket.kt │ │ │ └── DhtDbKey.kt │ │ └── functions │ │ │ ├── DhtFindValue.kt │ │ │ ├── DhtPing.kt │ │ │ └── DhtQuery.kt │ ├── exception │ │ ├── TvmException.kt │ │ └── exceptions.kt │ ├── fec │ │ ├── FecRaptorQ.kt │ │ └── FecType.kt │ ├── http │ │ ├── HttpHeader.kt │ │ ├── HttpPayloadPart.kt │ │ ├── HttpResponse.kt │ │ ├── functions │ │ │ ├── HttpGetNextPayloadPart.kt │ │ │ └── HttpRequest.kt │ │ └── server │ │ │ ├── HttpServerDnsEntry.kt │ │ │ └── HttpServerHost.kt │ ├── liteclient │ │ └── config │ │ │ └── LiteClientConfigGlobal.kt │ ├── liteserver │ │ ├── LiteServerDesc.kt │ │ └── config │ │ │ ├── LiteServerConfigLocal.kt │ │ │ └── LiteServerConfigRandomLocal.kt │ ├── overlay │ │ ├── OverlayNode.kt │ │ ├── OverlayNodeToSign.kt │ │ └── OverlayNodes.kt │ ├── rldp │ │ ├── RldpAnswer.kt │ │ ├── RldpComplete.kt │ │ ├── RldpConfirm.kt │ │ ├── RldpMessage.kt │ │ ├── RldpMessageData.kt │ │ ├── RldpMessagePart.kt │ │ ├── RldpMessagePartData.kt │ │ └── RldpQuery.kt │ ├── tcp │ │ ├── TcpAuthentificate.kt │ │ ├── TcpAuthentificationComplete.kt │ │ ├── TcpAuthentificationNonce.kt │ │ ├── TcpMessage.kt │ │ ├── TcpPing.kt │ │ └── TcpPong.kt │ ├── tonnode │ │ ├── Shard.kt │ │ ├── TonNodeBlockId.kt │ │ ├── TonNodeBlockIdExt.kt │ │ ├── TonNodeZeroStateIdExt.kt │ │ └── Workchain.kt │ └── validator │ │ └── config │ │ ├── ValidatorConfigGlobal.kt │ │ ├── ValidatorConfigLocal.kt │ │ └── ValidatorConfigRandomLocal.kt └── test │ └── PrivateKeyTest.kt └── tvm ├── api ├── ton-kotlin-tvm.api └── ton-kotlin-tvm.klib.api ├── build.gradle.kts ├── src ├── Tvm.kt ├── boc │ ├── BagOfCells.kt │ ├── BagOfCellsImpl.kt │ ├── BagOfCellsUtils.kt │ └── CachedBagOfCells.kt └── cell │ ├── Cell.kt │ ├── CellBuilder.kt │ ├── CellContext.kt │ ├── CellDescriptor.kt │ ├── CellSize.kt │ ├── CellSlice.kt │ ├── CellType.kt │ ├── DataCell.kt │ ├── EmptyCell.kt │ ├── LevelMask.kt │ ├── PrunedBranchCell.kt │ ├── VirtualCell.kt │ └── exception │ └── exceptions.kt └── test ├── BagOfCellsTest.kt ├── CellBuilderTest.kt ├── CellSliceTest.kt ├── CellTest.kt └── PrunedBranchTest.kt /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/docs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/.github/workflows/docs.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/validation.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/.github/workflows/validation.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/README.md -------------------------------------------------------------------------------- /TESTS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/TESTS.md -------------------------------------------------------------------------------- /VERSION: -------------------------------------------------------------------------------- 1 | 0.6.0-SNAPSHOT 2 | -------------------------------------------------------------------------------- /Writerside/c.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/Writerside/c.list -------------------------------------------------------------------------------- /Writerside/cfg/buildprofiles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/Writerside/cfg/buildprofiles.xml -------------------------------------------------------------------------------- /Writerside/hi.tree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/Writerside/hi.tree -------------------------------------------------------------------------------- /Writerside/topics/Overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/Writerside/topics/Overview.md -------------------------------------------------------------------------------- /Writerside/v.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/Writerside/v.list -------------------------------------------------------------------------------- /Writerside/writerside.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/Writerside/writerside.cfg -------------------------------------------------------------------------------- /bigint/api/ton-sdk-bigint.api: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/bigint/api/ton-sdk-bigint.api -------------------------------------------------------------------------------- /bigint/api/ton-sdk-bigint.klib.api: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/bigint/api/ton-sdk-bigint.klib.api -------------------------------------------------------------------------------- /bigint/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/bigint/build.gradle.kts -------------------------------------------------------------------------------- /bigint/src/BigInt.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/bigint/src/BigInt.kt -------------------------------------------------------------------------------- /bigint/src@jvm/BigInt.jvm.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/bigint/src@jvm/BigInt.jvm.kt -------------------------------------------------------------------------------- /bigint/src@native/BigInt.native.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/bigint/src@native/BigInt.native.kt -------------------------------------------------------------------------------- /bitstring-legacy/api/ton-kotlin-bitstring.api: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/bitstring-legacy/api/ton-kotlin-bitstring.api -------------------------------------------------------------------------------- /bitstring-legacy/api/ton-kotlin-bitstring.klib.api: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/bitstring-legacy/api/ton-kotlin-bitstring.klib.api -------------------------------------------------------------------------------- /bitstring-legacy/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/bitstring-legacy/build.gradle.kts -------------------------------------------------------------------------------- /bitstring-legacy/src/BitString.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/bitstring-legacy/src/BitString.kt -------------------------------------------------------------------------------- /bitstring-legacy/src/ByteBackedBitString.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/bitstring-legacy/src/ByteBackedBitString.kt -------------------------------------------------------------------------------- /bitstring-legacy/src/ByteBackedMutableBitString.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/bitstring-legacy/src/ByteBackedMutableBitString.kt -------------------------------------------------------------------------------- /bitstring-legacy/src/EmptyBitString.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/bitstring-legacy/src/EmptyBitString.kt -------------------------------------------------------------------------------- /bitstring-legacy/src/FiftHexBitStringSerializer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/bitstring-legacy/src/FiftHexBitStringSerializer.kt -------------------------------------------------------------------------------- /bitstring-legacy/src/MutableBitString.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/bitstring-legacy/src/MutableBitString.kt -------------------------------------------------------------------------------- /bitstring-legacy/src/exception/exceptions.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/bitstring-legacy/src/exception/exceptions.kt -------------------------------------------------------------------------------- /bitstring-legacy/test/BitStringTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/bitstring-legacy/test/BitStringTest.kt -------------------------------------------------------------------------------- /bitstring/api/ton-sdk-bitstring.api: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/bitstring/api/ton-sdk-bitstring.api -------------------------------------------------------------------------------- /bitstring/api/ton-sdk-bitstring.klib.api: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/bitstring/api/ton-sdk-bitstring.klib.api -------------------------------------------------------------------------------- /bitstring/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/bitstring/build.gradle.kts -------------------------------------------------------------------------------- /bitstring/src/BitSink.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/bitstring/src/BitSink.kt -------------------------------------------------------------------------------- /bitstring/src/BitSource.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/bitstring/src/BitSource.kt -------------------------------------------------------------------------------- /bitstring/src/BitString.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/bitstring/src/BitString.kt -------------------------------------------------------------------------------- /bitstring/src/BitStringBuilder.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/bitstring/src/BitStringBuilder.kt -------------------------------------------------------------------------------- /bitstring/src/BitStringReader.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/bitstring/src/BitStringReader.kt -------------------------------------------------------------------------------- /bitstring/src/internal/BitsOperations.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/bitstring/src/internal/BitsOperations.kt -------------------------------------------------------------------------------- /bitstring/src/unsafe/Annotations.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/bitstring/src/unsafe/Annotations.kt -------------------------------------------------------------------------------- /bitstring/src/unsafe/UnsafeBitStringOperations.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/bitstring/src/unsafe/UnsafeBitStringOperations.kt -------------------------------------------------------------------------------- /bitstring/test/BitStringBuilder.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/bitstring/test/BitStringBuilder.kt -------------------------------------------------------------------------------- /bitstring/test/BitStringTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/bitstring/test/BitStringTest.kt -------------------------------------------------------------------------------- /block-tlb/api/ton-kotlin-block-tlb.api: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/block-tlb/api/ton-kotlin-block-tlb.api -------------------------------------------------------------------------------- /block-tlb/api/ton-kotlin-block-tlb.klib.api: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/block-tlb/api/ton-kotlin-block-tlb.klib.api -------------------------------------------------------------------------------- /block-tlb/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/block-tlb/build.gradle.kts -------------------------------------------------------------------------------- /block-tlb/src/AccStatusChange.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/block-tlb/src/AccStatusChange.kt -------------------------------------------------------------------------------- /block-tlb/src/AccountActive.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/block-tlb/src/AccountActive.kt -------------------------------------------------------------------------------- /block-tlb/src/AccountBlock.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/block-tlb/src/AccountBlock.kt -------------------------------------------------------------------------------- /block-tlb/src/AccountFrozen.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/block-tlb/src/AccountFrozen.kt -------------------------------------------------------------------------------- /block-tlb/src/AccountState.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/block-tlb/src/AccountState.kt -------------------------------------------------------------------------------- /block-tlb/src/AccountStatus.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/block-tlb/src/AccountStatus.kt -------------------------------------------------------------------------------- /block-tlb/src/AccountStorage.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/block-tlb/src/AccountStorage.kt -------------------------------------------------------------------------------- /block-tlb/src/AccountUninit.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/block-tlb/src/AccountUninit.kt -------------------------------------------------------------------------------- /block-tlb/src/ActionChangeLibrary.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/block-tlb/src/ActionChangeLibrary.kt -------------------------------------------------------------------------------- /block-tlb/src/ActionReserveCurrency.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/block-tlb/src/ActionReserveCurrency.kt -------------------------------------------------------------------------------- /block-tlb/src/ActionSendMsg.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/block-tlb/src/ActionSendMsg.kt -------------------------------------------------------------------------------- /block-tlb/src/ActionSetCode.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/block-tlb/src/ActionSetCode.kt -------------------------------------------------------------------------------- /block-tlb/src/AddrExtern.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/block-tlb/src/AddrExtern.kt -------------------------------------------------------------------------------- /block-tlb/src/AddrNone.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/block-tlb/src/AddrNone.kt -------------------------------------------------------------------------------- /block-tlb/src/AddrStd.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/block-tlb/src/AddrStd.kt -------------------------------------------------------------------------------- /block-tlb/src/AddrVar.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/block-tlb/src/AddrVar.kt -------------------------------------------------------------------------------- /block-tlb/src/Anycast.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/block-tlb/src/Anycast.kt -------------------------------------------------------------------------------- /block-tlb/src/BinTree.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/block-tlb/src/BinTree.kt -------------------------------------------------------------------------------- /block-tlb/src/BinTreeFork.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/block-tlb/src/BinTreeFork.kt -------------------------------------------------------------------------------- /block-tlb/src/BinTreeLeaf.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/block-tlb/src/BinTreeLeaf.kt -------------------------------------------------------------------------------- /block-tlb/src/BlkMasterInfo.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/block-tlb/src/BlkMasterInfo.kt -------------------------------------------------------------------------------- /block-tlb/src/BlkPrevInfo.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/block-tlb/src/BlkPrevInfo.kt -------------------------------------------------------------------------------- /block-tlb/src/Block.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/block-tlb/src/Block.kt -------------------------------------------------------------------------------- /block-tlb/src/BlockCreateStats.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/block-tlb/src/BlockCreateStats.kt -------------------------------------------------------------------------------- /block-tlb/src/BlockCreateStatsExt.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/block-tlb/src/BlockCreateStatsExt.kt -------------------------------------------------------------------------------- /block-tlb/src/BlockCreateStatsRegular.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/block-tlb/src/BlockCreateStatsRegular.kt -------------------------------------------------------------------------------- /block-tlb/src/BlockExtra.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/block-tlb/src/BlockExtra.kt -------------------------------------------------------------------------------- /block-tlb/src/BlockInfo.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/block-tlb/src/BlockInfo.kt -------------------------------------------------------------------------------- /block-tlb/src/Certificate.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/block-tlb/src/Certificate.kt -------------------------------------------------------------------------------- /block-tlb/src/CertificateEnv.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/block-tlb/src/CertificateEnv.kt -------------------------------------------------------------------------------- /block-tlb/src/ChainedSignature.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/block-tlb/src/ChainedSignature.kt -------------------------------------------------------------------------------- /block-tlb/src/ChunkRef.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/block-tlb/src/ChunkRef.kt -------------------------------------------------------------------------------- /block-tlb/src/ChunkRefEmpty.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/block-tlb/src/ChunkRefEmpty.kt -------------------------------------------------------------------------------- /block-tlb/src/Coins.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/block-tlb/src/Coins.kt -------------------------------------------------------------------------------- /block-tlb/src/CommonMsgInfo.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/block-tlb/src/CommonMsgInfo.kt -------------------------------------------------------------------------------- /block-tlb/src/CommonMsgInfoRelaxed.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/block-tlb/src/CommonMsgInfoRelaxed.kt -------------------------------------------------------------------------------- /block-tlb/src/ConfigParams.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/block-tlb/src/ConfigParams.kt -------------------------------------------------------------------------------- /block-tlb/src/Counters.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/block-tlb/src/Counters.kt -------------------------------------------------------------------------------- /block-tlb/src/CreatorStats.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/block-tlb/src/CreatorStats.kt -------------------------------------------------------------------------------- /block-tlb/src/CryptoSignature.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/block-tlb/src/CryptoSignature.kt -------------------------------------------------------------------------------- /block-tlb/src/CryptoSignaturePair.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/block-tlb/src/CryptoSignaturePair.kt -------------------------------------------------------------------------------- /block-tlb/src/CryptoSignatureSimple.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/block-tlb/src/CryptoSignatureSimple.kt -------------------------------------------------------------------------------- /block-tlb/src/CurrencyCollection.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/block-tlb/src/CurrencyCollection.kt -------------------------------------------------------------------------------- /block-tlb/src/DepthBalanceInfo.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/block-tlb/src/DepthBalanceInfo.kt -------------------------------------------------------------------------------- /block-tlb/src/DnsAdnlAddress.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/block-tlb/src/DnsAdnlAddress.kt -------------------------------------------------------------------------------- /block-tlb/src/DnsNextResolver.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/block-tlb/src/DnsNextResolver.kt -------------------------------------------------------------------------------- /block-tlb/src/DnsRecord.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/block-tlb/src/DnsRecord.kt -------------------------------------------------------------------------------- /block-tlb/src/DnsSmcAddress.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/block-tlb/src/DnsSmcAddress.kt -------------------------------------------------------------------------------- /block-tlb/src/DnsText.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/block-tlb/src/DnsText.kt -------------------------------------------------------------------------------- /block-tlb/src/Either.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/block-tlb/src/Either.kt -------------------------------------------------------------------------------- /block-tlb/src/EnqueuedMsg.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/block-tlb/src/EnqueuedMsg.kt -------------------------------------------------------------------------------- /block-tlb/src/ExtBlkRef.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/block-tlb/src/ExtBlkRef.kt -------------------------------------------------------------------------------- /block-tlb/src/ExtInMsgInfo.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/block-tlb/src/ExtInMsgInfo.kt -------------------------------------------------------------------------------- /block-tlb/src/ExtOutMsgInfo.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/block-tlb/src/ExtOutMsgInfo.kt -------------------------------------------------------------------------------- /block-tlb/src/ExtraCurrencyCollection.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/block-tlb/src/ExtraCurrencyCollection.kt -------------------------------------------------------------------------------- /block-tlb/src/FutureSplitMerge.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/block-tlb/src/FutureSplitMerge.kt -------------------------------------------------------------------------------- /block-tlb/src/FutureSplitMergeMerge.kt: -------------------------------------------------------------------------------- 1 | package org.ton.block 2 | -------------------------------------------------------------------------------- /block-tlb/src/FutureSplitMergeNone.kt: -------------------------------------------------------------------------------- 1 | package org.ton.block 2 | -------------------------------------------------------------------------------- /block-tlb/src/FutureSplitMergeSplit.kt: -------------------------------------------------------------------------------- 1 | package org.ton.block 2 | -------------------------------------------------------------------------------- /block-tlb/src/GlobalVersion.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/block-tlb/src/GlobalVersion.kt -------------------------------------------------------------------------------- /block-tlb/src/HashUpdate.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/block-tlb/src/HashUpdate.kt -------------------------------------------------------------------------------- /block-tlb/src/IhrPendingSince.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/block-tlb/src/IhrPendingSince.kt -------------------------------------------------------------------------------- /block-tlb/src/ImportFees.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/block-tlb/src/ImportFees.kt -------------------------------------------------------------------------------- /block-tlb/src/InMsg.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/block-tlb/src/InMsg.kt -------------------------------------------------------------------------------- /block-tlb/src/IntMsgInfo.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/block-tlb/src/IntMsgInfo.kt -------------------------------------------------------------------------------- /block-tlb/src/IntermediateAddress.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/block-tlb/src/IntermediateAddress.kt -------------------------------------------------------------------------------- /block-tlb/src/IntermediateAddressExt.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/block-tlb/src/IntermediateAddressExt.kt -------------------------------------------------------------------------------- /block-tlb/src/IntermediateAddressRegular.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/block-tlb/src/IntermediateAddressRegular.kt -------------------------------------------------------------------------------- /block-tlb/src/IntermediateAddressSimple.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/block-tlb/src/IntermediateAddressSimple.kt -------------------------------------------------------------------------------- /block-tlb/src/KeyExtBlkRef.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/block-tlb/src/KeyExtBlkRef.kt -------------------------------------------------------------------------------- /block-tlb/src/KeyMaxLt.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/block-tlb/src/KeyMaxLt.kt -------------------------------------------------------------------------------- /block-tlb/src/LibDescr.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/block-tlb/src/LibDescr.kt -------------------------------------------------------------------------------- /block-tlb/src/LibRef.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/block-tlb/src/LibRef.kt -------------------------------------------------------------------------------- /block-tlb/src/LibRefHash.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/block-tlb/src/LibRefHash.kt -------------------------------------------------------------------------------- /block-tlb/src/LibRefRef.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/block-tlb/src/LibRefRef.kt -------------------------------------------------------------------------------- /block-tlb/src/Maybe.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/block-tlb/src/Maybe.kt -------------------------------------------------------------------------------- /block-tlb/src/McBlockExtra.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/block-tlb/src/McBlockExtra.kt -------------------------------------------------------------------------------- /block-tlb/src/McStateExtra.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/block-tlb/src/McStateExtra.kt -------------------------------------------------------------------------------- /block-tlb/src/MerkleProof.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/block-tlb/src/MerkleProof.kt -------------------------------------------------------------------------------- /block-tlb/src/MerkleUpdate.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/block-tlb/src/MerkleUpdate.kt -------------------------------------------------------------------------------- /block-tlb/src/Message.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/block-tlb/src/Message.kt -------------------------------------------------------------------------------- /block-tlb/src/MessageRelaxed.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/block-tlb/src/MessageRelaxed.kt -------------------------------------------------------------------------------- /block-tlb/src/MsgAddress.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/block-tlb/src/MsgAddress.kt -------------------------------------------------------------------------------- /block-tlb/src/MsgAddressExt.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/block-tlb/src/MsgAddressExt.kt -------------------------------------------------------------------------------- /block-tlb/src/MsgAddressInt.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/block-tlb/src/MsgAddressInt.kt -------------------------------------------------------------------------------- /block-tlb/src/MsgDiscardFin.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/block-tlb/src/MsgDiscardFin.kt -------------------------------------------------------------------------------- /block-tlb/src/MsgDiscardTr.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/block-tlb/src/MsgDiscardTr.kt -------------------------------------------------------------------------------- /block-tlb/src/MsgEnvelope.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/block-tlb/src/MsgEnvelope.kt -------------------------------------------------------------------------------- /block-tlb/src/MsgExportDeq.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/block-tlb/src/MsgExportDeq.kt -------------------------------------------------------------------------------- /block-tlb/src/MsgExportDeqImm.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/block-tlb/src/MsgExportDeqImm.kt -------------------------------------------------------------------------------- /block-tlb/src/MsgExportDeqShort.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/block-tlb/src/MsgExportDeqShort.kt -------------------------------------------------------------------------------- /block-tlb/src/MsgExportExt.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/block-tlb/src/MsgExportExt.kt -------------------------------------------------------------------------------- /block-tlb/src/MsgExportImm.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/block-tlb/src/MsgExportImm.kt -------------------------------------------------------------------------------- /block-tlb/src/MsgExportNew.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/block-tlb/src/MsgExportNew.kt -------------------------------------------------------------------------------- /block-tlb/src/MsgExportTr.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/block-tlb/src/MsgExportTr.kt -------------------------------------------------------------------------------- /block-tlb/src/MsgExportTrReq.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/block-tlb/src/MsgExportTrReq.kt -------------------------------------------------------------------------------- /block-tlb/src/MsgImportExt.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/block-tlb/src/MsgImportExt.kt -------------------------------------------------------------------------------- /block-tlb/src/MsgImportFin.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/block-tlb/src/MsgImportFin.kt -------------------------------------------------------------------------------- /block-tlb/src/MsgImportIhr.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/block-tlb/src/MsgImportIhr.kt -------------------------------------------------------------------------------- /block-tlb/src/MsgImportImm.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/block-tlb/src/MsgImportImm.kt -------------------------------------------------------------------------------- /block-tlb/src/MsgImportTr.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/block-tlb/src/MsgImportTr.kt -------------------------------------------------------------------------------- /block-tlb/src/OldMcBlocksInfo.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/block-tlb/src/OldMcBlocksInfo.kt -------------------------------------------------------------------------------- /block-tlb/src/OutAction.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/block-tlb/src/OutAction.kt -------------------------------------------------------------------------------- /block-tlb/src/OutList.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/block-tlb/src/OutList.kt -------------------------------------------------------------------------------- /block-tlb/src/OutListEmpty.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/block-tlb/src/OutListEmpty.kt -------------------------------------------------------------------------------- /block-tlb/src/OutListLink.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/block-tlb/src/OutListLink.kt -------------------------------------------------------------------------------- /block-tlb/src/OutListNode.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/block-tlb/src/OutListNode.kt -------------------------------------------------------------------------------- /block-tlb/src/OutMsg.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/block-tlb/src/OutMsg.kt -------------------------------------------------------------------------------- /block-tlb/src/OutMsgQueueInfo.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/block-tlb/src/OutMsgQueueInfo.kt -------------------------------------------------------------------------------- /block-tlb/src/PrevBlkInfo.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/block-tlb/src/PrevBlkInfo.kt -------------------------------------------------------------------------------- /block-tlb/src/PrevBlksInfo.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/block-tlb/src/PrevBlksInfo.kt -------------------------------------------------------------------------------- /block-tlb/src/ProcessedUpto.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/block-tlb/src/ProcessedUpto.kt -------------------------------------------------------------------------------- /block-tlb/src/ProtoHttp.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/block-tlb/src/ProtoHttp.kt -------------------------------------------------------------------------------- /block-tlb/src/ProtoList.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/block-tlb/src/ProtoList.kt -------------------------------------------------------------------------------- /block-tlb/src/ProtoListNext.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/block-tlb/src/ProtoListNext.kt -------------------------------------------------------------------------------- /block-tlb/src/ProtoListNil.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/block-tlb/src/ProtoListNil.kt -------------------------------------------------------------------------------- /block-tlb/src/Protocol.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/block-tlb/src/Protocol.kt -------------------------------------------------------------------------------- /block-tlb/src/ShardAccounts.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/block-tlb/src/ShardAccounts.kt -------------------------------------------------------------------------------- /block-tlb/src/ShardDescr.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/block-tlb/src/ShardDescr.kt -------------------------------------------------------------------------------- /block-tlb/src/ShardFeeCreated.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/block-tlb/src/ShardFeeCreated.kt -------------------------------------------------------------------------------- /block-tlb/src/ShardHashes.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/block-tlb/src/ShardHashes.kt -------------------------------------------------------------------------------- /block-tlb/src/ShardIdent.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/block-tlb/src/ShardIdent.kt -------------------------------------------------------------------------------- /block-tlb/src/ShardState.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/block-tlb/src/ShardState.kt -------------------------------------------------------------------------------- /block-tlb/src/ShardStateUnsplit.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/block-tlb/src/ShardStateUnsplit.kt -------------------------------------------------------------------------------- /block-tlb/src/SigPubKey.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/block-tlb/src/SigPubKey.kt -------------------------------------------------------------------------------- /block-tlb/src/SignedCertificate.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/block-tlb/src/SignedCertificate.kt -------------------------------------------------------------------------------- /block-tlb/src/SimpleLib.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/block-tlb/src/SimpleLib.kt -------------------------------------------------------------------------------- /block-tlb/src/SmartContractInfo.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/block-tlb/src/SmartContractInfo.kt -------------------------------------------------------------------------------- /block-tlb/src/SmcCapList.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/block-tlb/src/SmcCapList.kt -------------------------------------------------------------------------------- /block-tlb/src/SmcCapability.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/block-tlb/src/SmcCapability.kt -------------------------------------------------------------------------------- /block-tlb/src/SplitMergeInfo.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/block-tlb/src/SplitMergeInfo.kt -------------------------------------------------------------------------------- /block-tlb/src/SplitState.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/block-tlb/src/SplitState.kt -------------------------------------------------------------------------------- /block-tlb/src/StateInit.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/block-tlb/src/StateInit.kt -------------------------------------------------------------------------------- /block-tlb/src/StorageInfo.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/block-tlb/src/StorageInfo.kt -------------------------------------------------------------------------------- /block-tlb/src/StorageUsed.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/block-tlb/src/StorageUsed.kt -------------------------------------------------------------------------------- /block-tlb/src/StorageUsedShort.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/block-tlb/src/StorageUsedShort.kt -------------------------------------------------------------------------------- /block-tlb/src/Text.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/block-tlb/src/Text.kt -------------------------------------------------------------------------------- /block-tlb/src/TextChunk.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/block-tlb/src/TextChunk.kt -------------------------------------------------------------------------------- /block-tlb/src/TextChunkEmpty.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/block-tlb/src/TextChunkEmpty.kt -------------------------------------------------------------------------------- /block-tlb/src/TextChunkRef.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/block-tlb/src/TextChunkRef.kt -------------------------------------------------------------------------------- /block-tlb/src/TextChunks.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/block-tlb/src/TextChunks.kt -------------------------------------------------------------------------------- /block-tlb/src/TickTock.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/block-tlb/src/TickTock.kt -------------------------------------------------------------------------------- /block-tlb/src/ValidatorBaseInfo.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/block-tlb/src/ValidatorBaseInfo.kt -------------------------------------------------------------------------------- /block-tlb/src/ValidatorInfo.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/block-tlb/src/ValidatorInfo.kt -------------------------------------------------------------------------------- /block-tlb/src/ValueFlow.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/block-tlb/src/ValueFlow.kt -------------------------------------------------------------------------------- /block-tlb/src/VarInteger.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/block-tlb/src/VarInteger.kt -------------------------------------------------------------------------------- /block-tlb/src/VarUInteger.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/block-tlb/src/VarUInteger.kt -------------------------------------------------------------------------------- /block-tlb/src/VmCellSlice.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/block-tlb/src/VmCellSlice.kt -------------------------------------------------------------------------------- /block-tlb/src/VmCont.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/block-tlb/src/VmCont.kt -------------------------------------------------------------------------------- /block-tlb/src/VmContEnvelope.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/block-tlb/src/VmContEnvelope.kt -------------------------------------------------------------------------------- /block-tlb/src/VmContQuit.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/block-tlb/src/VmContQuit.kt -------------------------------------------------------------------------------- /block-tlb/src/VmContQuitExc.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/block-tlb/src/VmContQuitExc.kt -------------------------------------------------------------------------------- /block-tlb/src/VmContRepeat.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/block-tlb/src/VmContRepeat.kt -------------------------------------------------------------------------------- /block-tlb/src/VmContStd.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/block-tlb/src/VmContStd.kt -------------------------------------------------------------------------------- /block-tlb/src/VmControlData.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/block-tlb/src/VmControlData.kt -------------------------------------------------------------------------------- /block-tlb/src/VmGasLimits.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/block-tlb/src/VmGasLimits.kt -------------------------------------------------------------------------------- /block-tlb/src/VmLibraries.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/block-tlb/src/VmLibraries.kt -------------------------------------------------------------------------------- /block-tlb/src/VmSaveList.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/block-tlb/src/VmSaveList.kt -------------------------------------------------------------------------------- /block-tlb/src/VmStack.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/block-tlb/src/VmStack.kt -------------------------------------------------------------------------------- /block-tlb/src/VmStackBuilder.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/block-tlb/src/VmStackBuilder.kt -------------------------------------------------------------------------------- /block-tlb/src/VmStackCell.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/block-tlb/src/VmStackCell.kt -------------------------------------------------------------------------------- /block-tlb/src/VmStackCont.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/block-tlb/src/VmStackCont.kt -------------------------------------------------------------------------------- /block-tlb/src/VmStackInt.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/block-tlb/src/VmStackInt.kt -------------------------------------------------------------------------------- /block-tlb/src/VmStackList.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/block-tlb/src/VmStackList.kt -------------------------------------------------------------------------------- /block-tlb/src/VmStackNan.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/block-tlb/src/VmStackNan.kt -------------------------------------------------------------------------------- /block-tlb/src/VmStackNull.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/block-tlb/src/VmStackNull.kt -------------------------------------------------------------------------------- /block-tlb/src/VmStackNumber.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/block-tlb/src/VmStackNumber.kt -------------------------------------------------------------------------------- /block-tlb/src/VmStackSlice.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/block-tlb/src/VmStackSlice.kt -------------------------------------------------------------------------------- /block-tlb/src/VmStackTinyInt.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/block-tlb/src/VmStackTinyInt.kt -------------------------------------------------------------------------------- /block-tlb/src/VmStackTuple.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/block-tlb/src/VmStackTuple.kt -------------------------------------------------------------------------------- /block-tlb/src/VmStackValue.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/block-tlb/src/VmStackValue.kt -------------------------------------------------------------------------------- /block-tlb/src/VmTuple.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/block-tlb/src/VmTuple.kt -------------------------------------------------------------------------------- /block-tlb/src/VmTupleNil.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/block-tlb/src/VmTupleNil.kt -------------------------------------------------------------------------------- /block-tlb/src/VmTupleRef.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/block-tlb/src/VmTupleRef.kt -------------------------------------------------------------------------------- /block-tlb/src/VmTupleTcons.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/block-tlb/src/VmTupleTcons.kt -------------------------------------------------------------------------------- /block-tlb/src/account/Account.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/block-tlb/src/account/Account.kt -------------------------------------------------------------------------------- /block-tlb/src/account/ShardAccount.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/block-tlb/src/account/ShardAccount.kt -------------------------------------------------------------------------------- /block-tlb/src/blocktlb.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/block-tlb/src/blocktlb.kt -------------------------------------------------------------------------------- /block-tlb/src/config/BurningConfig.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/block-tlb/src/config/BurningConfig.kt -------------------------------------------------------------------------------- /block-tlb/src/config/StoragePrices.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/block-tlb/src/config/StoragePrices.kt -------------------------------------------------------------------------------- /block-tlb/src/currency/VarUInt248.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/block-tlb/src/currency/VarUInt248.kt -------------------------------------------------------------------------------- /block-tlb/src/message/MessageLayout.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/block-tlb/src/message/MessageLayout.kt -------------------------------------------------------------------------------- /block-tlb/src/transaction/Transaction.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/block-tlb/src/transaction/Transaction.kt -------------------------------------------------------------------------------- /block-tlb/src/transaction/TransactionInfo.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/block-tlb/src/transaction/TransactionInfo.kt -------------------------------------------------------------------------------- /block-tlb/src/transaction/phase/ActionPhase.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/block-tlb/src/transaction/phase/ActionPhase.kt -------------------------------------------------------------------------------- /block-tlb/src/transaction/phase/BouncePhase.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/block-tlb/src/transaction/phase/BouncePhase.kt -------------------------------------------------------------------------------- /block-tlb/src/transaction/phase/ComputePhase.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/block-tlb/src/transaction/phase/ComputePhase.kt -------------------------------------------------------------------------------- /block-tlb/src/transaction/phase/CreditPhase.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/block-tlb/src/transaction/phase/CreditPhase.kt -------------------------------------------------------------------------------- /block-tlb/src/transaction/phase/StoragePhase.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/block-tlb/src/transaction/phase/StoragePhase.kt -------------------------------------------------------------------------------- /block-tlb/test/AddrStdTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/block-tlb/test/AddrStdTest.kt -------------------------------------------------------------------------------- /block-tlb/test/MsgAddressIntTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/block-tlb/test/MsgAddressIntTest.kt -------------------------------------------------------------------------------- /block-tlb/test/StateInitTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/block-tlb/test/StateInitTest.kt -------------------------------------------------------------------------------- /block-tlb/test/TextTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/block-tlb/test/TextTest.kt -------------------------------------------------------------------------------- /block-tlb/test/VmStackListTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/block-tlb/test/VmStackListTest.kt -------------------------------------------------------------------------------- /block-tlb/test/VmStackTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/block-tlb/test/VmStackTest.kt -------------------------------------------------------------------------------- /block-tlb/test/VmStackValue.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/block-tlb/test/VmStackValue.kt -------------------------------------------------------------------------------- /block-tlb/test/util.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/block-tlb/test/util.kt -------------------------------------------------------------------------------- /blockchain/api/ton-sdk-blockchain.api: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/blockchain/api/ton-sdk-blockchain.api -------------------------------------------------------------------------------- /blockchain/api/ton-sdk-blockchain.klib.api: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/blockchain/api/ton-sdk-blockchain.klib.api -------------------------------------------------------------------------------- /blockchain/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/blockchain/build.gradle.kts -------------------------------------------------------------------------------- /blockchain/src/BlockId.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/blockchain/src/BlockId.kt -------------------------------------------------------------------------------- /blockchain/src/BlockIdShort.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/blockchain/src/BlockIdShort.kt -------------------------------------------------------------------------------- /blockchain/src/GlobalVersion.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/blockchain/src/GlobalVersion.kt -------------------------------------------------------------------------------- /blockchain/src/ShardId.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/blockchain/src/ShardId.kt -------------------------------------------------------------------------------- /blockchain/src/account/AccountStatus.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/blockchain/src/account/AccountStatus.kt -------------------------------------------------------------------------------- /blockchain/src/account/StorageUsedShort.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/blockchain/src/account/StorageUsedShort.kt -------------------------------------------------------------------------------- /blockchain/src/address/Address.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/blockchain/src/address/Address.kt -------------------------------------------------------------------------------- /blockchain/src/address/AddressExt.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/blockchain/src/address/AddressExt.kt -------------------------------------------------------------------------------- /blockchain/src/address/Anycast.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/blockchain/src/address/Anycast.kt -------------------------------------------------------------------------------- /blockchain/src/address/SplitDepth.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/blockchain/src/address/SplitDepth.kt -------------------------------------------------------------------------------- /blockchain/src/block/AccountBlock.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/blockchain/src/block/AccountBlock.kt -------------------------------------------------------------------------------- /blockchain/src/block/BlockExtra.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/blockchain/src/block/BlockExtra.kt -------------------------------------------------------------------------------- /blockchain/src/block/BlockInfo.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/blockchain/src/block/BlockInfo.kt -------------------------------------------------------------------------------- /blockchain/src/block/BlockRef.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/blockchain/src/block/BlockRef.kt -------------------------------------------------------------------------------- /blockchain/src/block/McBlockExtra.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/blockchain/src/block/McBlockExtra.kt -------------------------------------------------------------------------------- /blockchain/src/block/ValueFlow.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/blockchain/src/block/ValueFlow.kt -------------------------------------------------------------------------------- /blockchain/src/currency/Coins.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/blockchain/src/currency/Coins.kt -------------------------------------------------------------------------------- /blockchain/src/currency/CurrencyCollection.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/blockchain/src/currency/CurrencyCollection.kt -------------------------------------------------------------------------------- /blockchain/src/currency/ExtraCoins.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/blockchain/src/currency/ExtraCoins.kt -------------------------------------------------------------------------------- /blockchain/src/currency/ExtraCurrencyCollection.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/blockchain/src/currency/ExtraCurrencyCollection.kt -------------------------------------------------------------------------------- /blockchain/src/message/ImportFees.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/blockchain/src/message/ImportFees.kt -------------------------------------------------------------------------------- /blockchain/src/message/InMsg.kt: -------------------------------------------------------------------------------- 1 | package org.ton.sdk.blockchain.message 2 | 3 | internal class InMsg 4 | -------------------------------------------------------------------------------- /blockchain/src/message/Message.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/blockchain/src/message/Message.kt -------------------------------------------------------------------------------- /blockchain/src/message/OutMsg.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/blockchain/src/message/OutMsg.kt -------------------------------------------------------------------------------- /blockchain/src/transaction/HashUpdate.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/blockchain/src/transaction/HashUpdate.kt -------------------------------------------------------------------------------- /blockchain/src/transaction/SplitMergeInfo.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/blockchain/src/transaction/SplitMergeInfo.kt -------------------------------------------------------------------------------- /blockchain/src/transaction/Transaction.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/blockchain/src/transaction/Transaction.kt -------------------------------------------------------------------------------- /blockchain/src/transaction/TransactionDescription.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/blockchain/src/transaction/TransactionDescription.kt -------------------------------------------------------------------------------- /blockchain/src/transaction/phases/AccountStatusChange.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/blockchain/src/transaction/phases/AccountStatusChange.kt -------------------------------------------------------------------------------- /blockchain/src/transaction/phases/ActionPhase.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/blockchain/src/transaction/phases/ActionPhase.kt -------------------------------------------------------------------------------- /blockchain/src/transaction/phases/BouncePhase.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/blockchain/src/transaction/phases/BouncePhase.kt -------------------------------------------------------------------------------- /blockchain/src/transaction/phases/ComputePhase.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/blockchain/src/transaction/phases/ComputePhase.kt -------------------------------------------------------------------------------- /blockchain/src/transaction/phases/CreditPhase.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/blockchain/src/transaction/phases/CreditPhase.kt -------------------------------------------------------------------------------- /blockchain/src/transaction/phases/StoragePhase.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/blockchain/src/transaction/phases/StoragePhase.kt -------------------------------------------------------------------------------- /cell/api/ton-sdk-cell.api: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/cell/api/ton-sdk-cell.api -------------------------------------------------------------------------------- /cell/api/ton-sdk-cell.klib.api: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/cell/api/ton-sdk-cell.klib.api -------------------------------------------------------------------------------- /cell/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/cell/build.gradle.kts -------------------------------------------------------------------------------- /cell/src/Cell.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/cell/src/Cell.kt -------------------------------------------------------------------------------- /cell/src/CellBuilder.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/cell/src/CellBuilder.kt -------------------------------------------------------------------------------- /cell/src/CellContext.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/cell/src/CellContext.kt -------------------------------------------------------------------------------- /cell/src/CellDescriptor.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/cell/src/CellDescriptor.kt -------------------------------------------------------------------------------- /cell/src/CellRef.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/cell/src/CellRef.kt -------------------------------------------------------------------------------- /cell/src/CellType.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/cell/src/CellType.kt -------------------------------------------------------------------------------- /cell/src/LevelMask.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/cell/src/LevelMask.kt -------------------------------------------------------------------------------- /cell/src/boc/BagOfCellSerializer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/cell/src/boc/BagOfCellSerializer.kt -------------------------------------------------------------------------------- /cell/src/boc/BagOfCells.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/cell/src/boc/BagOfCells.kt -------------------------------------------------------------------------------- /cell/src/boc/BagOfCellsHeader.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/cell/src/boc/BagOfCellsHeader.kt -------------------------------------------------------------------------------- /cell/src/boc/StaticBagOfCells.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/cell/src/boc/StaticBagOfCells.kt -------------------------------------------------------------------------------- /cell/src/boc/internal/io.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/cell/src/boc/internal/io.kt -------------------------------------------------------------------------------- /cell/src/exception/CellOverflowException.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/cell/src/exception/CellOverflowException.kt -------------------------------------------------------------------------------- /cell/src/internal/CellLoader.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/cell/src/internal/CellLoader.kt -------------------------------------------------------------------------------- /cell/src/internal/DataCell.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/cell/src/internal/DataCell.kt -------------------------------------------------------------------------------- /cell/src/internal/EmptyCell.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/cell/src/internal/EmptyCell.kt -------------------------------------------------------------------------------- /cell/src/internal/EmptyCellContext.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/cell/src/internal/EmptyCellContext.kt -------------------------------------------------------------------------------- /cell/src/internal/ExtCell.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/cell/src/internal/ExtCell.kt -------------------------------------------------------------------------------- /cell/src/internal/LibraryCell.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/cell/src/internal/LibraryCell.kt -------------------------------------------------------------------------------- /cell/src/internal/PrunedCell.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/cell/src/internal/PrunedCell.kt -------------------------------------------------------------------------------- /cell/src/internal/VirtualCell.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/cell/src/internal/VirtualCell.kt -------------------------------------------------------------------------------- /cell/src/internal/bitstring.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/cell/src/internal/bitstring.kt -------------------------------------------------------------------------------- /cell/test/BocTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/cell/test/BocTest.kt -------------------------------------------------------------------------------- /cell/test/CellBuilderTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/cell/test/CellBuilderTest.kt -------------------------------------------------------------------------------- /cell/test/CellTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/cell/test/CellTest.kt -------------------------------------------------------------------------------- /cell/test/PrunedBranchTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/cell/test/PrunedBranchTest.kt -------------------------------------------------------------------------------- /cell/test/StoreBigIntTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/cell/test/StoreBigIntTest.kt -------------------------------------------------------------------------------- /cell/test/StoreIntTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/cell/test/StoreIntTest.kt -------------------------------------------------------------------------------- /cell/test/StoreLongTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/cell/test/StoreLongTest.kt -------------------------------------------------------------------------------- /cell/test/utils/XorShift128Plus.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/cell/test/utils/XorShift128Plus.kt -------------------------------------------------------------------------------- /cell/test/utils/cell.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/cell/test/utils/cell.kt -------------------------------------------------------------------------------- /contract/api/ton-kotlin-contract.api: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/contract/api/ton-kotlin-contract.api -------------------------------------------------------------------------------- /contract/api/ton-kotlin-contract.klib.api: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/contract/api/ton-kotlin-contract.klib.api -------------------------------------------------------------------------------- /contract/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/contract/build.gradle.kts -------------------------------------------------------------------------------- /contract/src/CellString.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/contract/src/CellString.kt -------------------------------------------------------------------------------- /contract/src/ChunkedData.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/contract/src/ChunkedData.kt -------------------------------------------------------------------------------- /contract/src/ContentData.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/contract/src/ContentData.kt -------------------------------------------------------------------------------- /contract/src/FullContent.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/contract/src/FullContent.kt -------------------------------------------------------------------------------- /contract/src/SmartContract.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/contract/src/SmartContract.kt -------------------------------------------------------------------------------- /contract/src/SnakeData.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/contract/src/SnakeData.kt -------------------------------------------------------------------------------- /contract/src/Text.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/contract/src/Text.kt -------------------------------------------------------------------------------- /contract/src/exception/AccountNotInitializedException.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/contract/src/exception/AccountNotInitializedException.kt -------------------------------------------------------------------------------- /contract/src/wallet/HighLoadWalletV2Contract.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/contract/src/wallet/HighLoadWalletV2Contract.kt -------------------------------------------------------------------------------- /contract/src/wallet/MessageText.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/contract/src/wallet/MessageText.kt -------------------------------------------------------------------------------- /contract/src/wallet/WalletContract.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/contract/src/wallet/WalletContract.kt -------------------------------------------------------------------------------- /contract/src/wallet/WalletMessage.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/contract/src/wallet/WalletMessage.kt -------------------------------------------------------------------------------- /contract/src/wallet/WalletTransfer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/contract/src/wallet/WalletTransfer.kt -------------------------------------------------------------------------------- /contract/src/wallet/WalletV3Contract.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/contract/src/wallet/WalletV3Contract.kt -------------------------------------------------------------------------------- /contract/src/wallet/WalletV4R2Contract.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/contract/src/wallet/WalletV4R2Contract.kt -------------------------------------------------------------------------------- /contract/test/SnakeDataTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/contract/test/SnakeDataTest.kt -------------------------------------------------------------------------------- /contract/test/wallet/GlobalConfig.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/contract/test/wallet/GlobalConfig.kt -------------------------------------------------------------------------------- /contract/test/wallet/LiteClient.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/contract/test/wallet/LiteClient.kt -------------------------------------------------------------------------------- /contract/test/wallet/WalletV4Example.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/contract/test/wallet/WalletV4Example.kt -------------------------------------------------------------------------------- /crypto/api/ton-sdk-crypto.api: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/crypto/api/ton-sdk-crypto.api -------------------------------------------------------------------------------- /crypto/api/ton-sdk-crypto.klib.api: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/crypto/api/ton-sdk-crypto.klib.api -------------------------------------------------------------------------------- /crypto/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/crypto/build.gradle.kts -------------------------------------------------------------------------------- /crypto/src/Decryptor.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/crypto/src/Decryptor.kt -------------------------------------------------------------------------------- /crypto/src/Digest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/crypto/src/Digest.kt -------------------------------------------------------------------------------- /crypto/src/Encryptor.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/crypto/src/Encryptor.kt -------------------------------------------------------------------------------- /crypto/src/HashBytes.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/crypto/src/HashBytes.kt -------------------------------------------------------------------------------- /crypto/src/PrivateKey.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/crypto/src/PrivateKey.kt -------------------------------------------------------------------------------- /crypto/src/PublicKey.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/crypto/src/PublicKey.kt -------------------------------------------------------------------------------- /crypto/src/SecureRandom.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/crypto/src/SecureRandom.kt -------------------------------------------------------------------------------- /crypto/src/aes.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/crypto/src/aes.kt -------------------------------------------------------------------------------- /crypto/src/crc16.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/crypto/src/crc16.kt -------------------------------------------------------------------------------- /crypto/src/crc32.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/crypto/src/crc32.kt -------------------------------------------------------------------------------- /crypto/src/curve25519/constants/constants.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/crypto/src/curve25519/constants/constants.kt -------------------------------------------------------------------------------- /crypto/src/curve25519/constants/tables/AffineNielsPointLookupTable.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/crypto/src/curve25519/constants/tables/AffineNielsPointLookupTable.kt -------------------------------------------------------------------------------- /crypto/src/curve25519/constants/tables/AffineNielsPointNafLookupTable.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/crypto/src/curve25519/constants/tables/AffineNielsPointNafLookupTable.kt -------------------------------------------------------------------------------- /crypto/src/curve25519/constants/tables/EdwardsBasepointTable.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/crypto/src/curve25519/constants/tables/EdwardsBasepointTable.kt -------------------------------------------------------------------------------- /crypto/src/curve25519/constants/tables/PackedAffineOddMultiplesOfBasepoint.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/crypto/src/curve25519/constants/tables/PackedAffineOddMultiplesOfBasepoint.kt -------------------------------------------------------------------------------- /crypto/src/curve25519/constants/tables/PackedEdwardsBasepointTable.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/crypto/src/curve25519/constants/tables/PackedEdwardsBasepointTable.kt -------------------------------------------------------------------------------- /crypto/src/curve25519/constants/tables/ProjectiveNielsPointLookupTable.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/crypto/src/curve25519/constants/tables/ProjectiveNielsPointLookupTable.kt -------------------------------------------------------------------------------- /crypto/src/curve25519/constants/tables/ProjectiveNielsPointNafLookupTable.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/crypto/src/curve25519/constants/tables/ProjectiveNielsPointNafLookupTable.kt -------------------------------------------------------------------------------- /crypto/src/curve25519/edwards/CompressedEdwardsY.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/crypto/src/curve25519/edwards/CompressedEdwardsY.kt -------------------------------------------------------------------------------- /crypto/src/curve25519/edwards/EdwardsPoint.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/crypto/src/curve25519/edwards/EdwardsPoint.kt -------------------------------------------------------------------------------- /crypto/src/curve25519/exceptioin/InvalidYCoordinateException.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/crypto/src/curve25519/exceptioin/InvalidYCoordinateException.kt -------------------------------------------------------------------------------- /crypto/src/curve25519/field/FieldElement.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/crypto/src/curve25519/field/FieldElement.kt -------------------------------------------------------------------------------- /crypto/src/curve25519/internal/binary.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/crypto/src/curve25519/internal/binary.kt -------------------------------------------------------------------------------- /crypto/src/curve25519/internal/fieldCommon.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/crypto/src/curve25519/internal/fieldCommon.kt -------------------------------------------------------------------------------- /crypto/src/curve25519/internal/math.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/crypto/src/curve25519/internal/math.kt -------------------------------------------------------------------------------- /crypto/src/curve25519/internal/scalar64.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/crypto/src/curve25519/internal/scalar64.kt -------------------------------------------------------------------------------- /crypto/src/curve25519/models/AffineNielsPoint.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/crypto/src/curve25519/models/AffineNielsPoint.kt -------------------------------------------------------------------------------- /crypto/src/curve25519/models/CompletedPoint.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/crypto/src/curve25519/models/CompletedPoint.kt -------------------------------------------------------------------------------- /crypto/src/curve25519/models/ProjectiveNielsPoint.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/crypto/src/curve25519/models/ProjectiveNielsPoint.kt -------------------------------------------------------------------------------- /crypto/src/curve25519/models/ProjectivePoint.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/crypto/src/curve25519/models/ProjectivePoint.kt -------------------------------------------------------------------------------- /crypto/src/curve25519/montgomery/MontgomeryPoint.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/crypto/src/curve25519/montgomery/MontgomeryPoint.kt -------------------------------------------------------------------------------- /crypto/src/curve25519/montgomery/MontgomeryProjectivePoint.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/crypto/src/curve25519/montgomery/MontgomeryProjectivePoint.kt -------------------------------------------------------------------------------- /crypto/src/curve25519/scalar/Scalar.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/crypto/src/curve25519/scalar/Scalar.kt -------------------------------------------------------------------------------- /crypto/src/curve25519/scalar/UnpackedScalar.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/crypto/src/curve25519/scalar/UnpackedScalar.kt -------------------------------------------------------------------------------- /crypto/src/curve25519/subtle/subtle.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/crypto/src/curve25519/subtle/subtle.kt -------------------------------------------------------------------------------- /crypto/src/ed25519.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/crypto/src/ed25519.kt -------------------------------------------------------------------------------- /crypto/src/hmac.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/crypto/src/hmac.kt -------------------------------------------------------------------------------- /crypto/src/mnemonic/Mnemonic.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/crypto/src/mnemonic/Mnemonic.kt -------------------------------------------------------------------------------- /crypto/src/mnemonic/bip39.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/crypto/src/mnemonic/bip39.kt -------------------------------------------------------------------------------- /crypto/src/overlay.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/crypto/src/overlay.kt -------------------------------------------------------------------------------- /crypto/src/pbkdf2.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/crypto/src/pbkdf2.kt -------------------------------------------------------------------------------- /crypto/src/sha256.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/crypto/src/sha256.kt -------------------------------------------------------------------------------- /crypto/src/sha512.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/crypto/src/sha512.kt -------------------------------------------------------------------------------- /crypto/src/unenc.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/crypto/src/unenc.kt -------------------------------------------------------------------------------- /crypto/src@apple/AesCtr.apple.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/crypto/src@apple/AesCtr.apple.kt -------------------------------------------------------------------------------- /crypto/src@apple/SecureRandom.apple.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/crypto/src@apple/SecureRandom.apple.kt -------------------------------------------------------------------------------- /crypto/src@apple/sha256.apple.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/crypto/src@apple/sha256.apple.kt -------------------------------------------------------------------------------- /crypto/src@apple/sha512.apple.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/crypto/src@apple/sha512.apple.kt -------------------------------------------------------------------------------- /crypto/src@jvm/AesCtr.jvm.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/crypto/src@jvm/AesCtr.jvm.kt -------------------------------------------------------------------------------- /crypto/src@jvm/SecureRandom.jvm.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/crypto/src@jvm/SecureRandom.jvm.kt -------------------------------------------------------------------------------- /crypto/src@jvm/crc32.jvm.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/crypto/src@jvm/crc32.jvm.kt -------------------------------------------------------------------------------- /crypto/src@jvm/sha256.jvm.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/crypto/src@jvm/sha256.jvm.kt -------------------------------------------------------------------------------- /crypto/src@jvm/sha512.jvm.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/crypto/src@jvm/sha512.jvm.kt -------------------------------------------------------------------------------- /crypto/src@linux/SecureRandom.linux.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/crypto/src@linux/SecureRandom.linux.kt -------------------------------------------------------------------------------- /crypto/src@mingw/SecureRandom.mingw.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/crypto/src@mingw/SecureRandom.mingw.kt -------------------------------------------------------------------------------- /crypto/src@native/crc32.native.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/crypto/src@native/crc32.native.kt -------------------------------------------------------------------------------- /crypto/src@nonApplePosix/AesCtr.nonApplePosix.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/crypto/src@nonApplePosix/AesCtr.nonApplePosix.kt -------------------------------------------------------------------------------- /crypto/src@nonApplePosix/sha256.nonApplePosix.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/crypto/src@nonApplePosix/sha256.nonApplePosix.kt -------------------------------------------------------------------------------- /crypto/src@nonApplePosix/sha512.nonApplePosix.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/crypto/src@nonApplePosix/sha512.nonApplePosix.kt -------------------------------------------------------------------------------- /crypto/test/Crc16Test.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/crypto/test/Crc16Test.kt -------------------------------------------------------------------------------- /crypto/test/Ed25519Golden.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/crypto/test/Ed25519Golden.kt -------------------------------------------------------------------------------- /crypto/test/Ed25519Test.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/crypto/test/Ed25519Test.kt -------------------------------------------------------------------------------- /detekt.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/detekt.yml -------------------------------------------------------------------------------- /dict/api/ton-kotlin-dict.api: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/dict/api/ton-kotlin-dict.api -------------------------------------------------------------------------------- /dict/api/ton-kotlin-dict.klib.api: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/dict/api/ton-kotlin-dict.klib.api -------------------------------------------------------------------------------- /dict/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/dict/build.gradle.kts -------------------------------------------------------------------------------- /dict/src/org/ton/kotlin/dict/AugmentedDictionary.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/dict/src/org/ton/kotlin/dict/AugmentedDictionary.kt -------------------------------------------------------------------------------- /dict/src/org/ton/kotlin/dict/Dictionary.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/dict/src/org/ton/kotlin/dict/Dictionary.kt -------------------------------------------------------------------------------- /dict/src/org/ton/kotlin/dict/DictionaryKeyCodec.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/dict/src/org/ton/kotlin/dict/DictionaryKeyCodec.kt -------------------------------------------------------------------------------- /dict/src/org/ton/kotlin/dict/RawDictionary.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/dict/src/org/ton/kotlin/dict/RawDictionary.kt -------------------------------------------------------------------------------- /dict/src/org/ton/kotlin/dict/internal/Label.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/dict/src/org/ton/kotlin/dict/internal/Label.kt -------------------------------------------------------------------------------- /dict/src/org/ton/kotlin/dict/internal/SetMode.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/dict/src/org/ton/kotlin/dict/internal/SetMode.kt -------------------------------------------------------------------------------- /docs/block.tlb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/docs/block.tlb -------------------------------------------------------------------------------- /docs/ci.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/docs/ci.md -------------------------------------------------------------------------------- /docs/fift.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/docs/fift.md -------------------------------------------------------------------------------- /docs/lite_api.tl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/docs/lite_api.tl -------------------------------------------------------------------------------- /docs/tblkch.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/docs/tblkch.md -------------------------------------------------------------------------------- /docs/tvm.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/docs/tvm.md -------------------------------------------------------------------------------- /examples/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/examples/build.gradle.kts -------------------------------------------------------------------------------- /examples/java-maven-project/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/examples/java-maven-project/.gitignore -------------------------------------------------------------------------------- /examples/java-maven-project/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/examples/java-maven-project/pom.xml -------------------------------------------------------------------------------- /examples/java-maven-project/src/main/java/org/ton/sdk/example/GetTransactionExample.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/examples/java-maven-project/src/main/java/org/ton/sdk/example/GetTransactionExample.java -------------------------------------------------------------------------------- /examples/kotlin-gradle-project/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/examples/kotlin-gradle-project/build.gradle.kts -------------------------------------------------------------------------------- /examples/kotlin-gradle-project/src/jvmMain/kotlin/GetTransactionExample.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/examples/kotlin-gradle-project/src/jvmMain/kotlin/GetTransactionExample.kt -------------------------------------------------------------------------------- /examples/src/ConfigContractExample.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/examples/src/ConfigContractExample.kt -------------------------------------------------------------------------------- /examples/src/ExtraCurrencyExample.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/examples/src/ExtraCurrencyExample.kt -------------------------------------------------------------------------------- /examples/src/ExtraCurrencyMonitor.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/examples/src/ExtraCurrencyMonitor.kt -------------------------------------------------------------------------------- /examples/src/TestSer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/examples/src/TestSer.kt -------------------------------------------------------------------------------- /examples/src/WalletV4R2Example.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/examples/src/WalletV4R2Example.kt -------------------------------------------------------------------------------- /examples/src/contract/BaseWalletContract.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/examples/src/contract/BaseWalletContract.kt -------------------------------------------------------------------------------- /examples/src/contract/WalletMessage.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/examples/src/contract/WalletMessage.kt -------------------------------------------------------------------------------- /examples/src/contract/WalletV1R3Contract.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/examples/src/contract/WalletV1R3Contract.kt -------------------------------------------------------------------------------- /examples/src/contract/config/ConfigContract.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/examples/src/contract/config/ConfigContract.kt -------------------------------------------------------------------------------- /examples/src/faucet/TestnetFaucet.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/examples/src/faucet/TestnetFaucet.kt -------------------------------------------------------------------------------- /examples/src/provider/GlobalConfig.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/examples/src/provider/GlobalConfig.kt -------------------------------------------------------------------------------- /examples/src/provider/LiteClient.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/examples/src/provider/LiteClient.kt -------------------------------------------------------------------------------- /examples/src/provider/Provider.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/examples/src/provider/Provider.kt -------------------------------------------------------------------------------- /git-cliff.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/git-cliff.toml -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/libs.versions.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/gradle/libs.versions.toml -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/gradlew.bat -------------------------------------------------------------------------------- /hashmap-tlb/api/ton-kotlin-hashmap-tlb.api: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/hashmap-tlb/api/ton-kotlin-hashmap-tlb.api -------------------------------------------------------------------------------- /hashmap-tlb/api/ton-kotlin-hashmap-tlb.klib.api: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/hashmap-tlb/api/ton-kotlin-hashmap-tlb.klib.api -------------------------------------------------------------------------------- /hashmap-tlb/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/hashmap-tlb/build.gradle.kts -------------------------------------------------------------------------------- /hashmap-tlb/src/AugmentedDictionary.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/hashmap-tlb/src/AugmentedDictionary.kt -------------------------------------------------------------------------------- /hashmap-tlb/src/HashMapE.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/hashmap-tlb/src/HashMapE.kt -------------------------------------------------------------------------------- /hashmap-tlb/src/HashMapNode.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/hashmap-tlb/src/HashMapNode.kt -------------------------------------------------------------------------------- /hashmap-tlb/src/HashmapAug.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/hashmap-tlb/src/HashmapAug.kt -------------------------------------------------------------------------------- /hashmap-tlb/src/HashmapAugE.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/hashmap-tlb/src/HashmapAugE.kt -------------------------------------------------------------------------------- /hashmap-tlb/src/HashmapAugNode.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/hashmap-tlb/src/HashmapAugNode.kt -------------------------------------------------------------------------------- /hashmap-tlb/src/HmEdge.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/hashmap-tlb/src/HmEdge.kt -------------------------------------------------------------------------------- /hashmap-tlb/src/HmLabel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/hashmap-tlb/src/HmLabel.kt -------------------------------------------------------------------------------- /hashmap-tlb/src/HmeEmpty.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/hashmap-tlb/src/HmeEmpty.kt -------------------------------------------------------------------------------- /hashmap-tlb/src/HmeRoot.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/hashmap-tlb/src/HmeRoot.kt -------------------------------------------------------------------------------- /hashmap-tlb/src/HmlLong.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/hashmap-tlb/src/HmlLong.kt -------------------------------------------------------------------------------- /hashmap-tlb/src/HmlSame.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/hashmap-tlb/src/HmlSame.kt -------------------------------------------------------------------------------- /hashmap-tlb/src/HmlShort.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/hashmap-tlb/src/HmlShort.kt -------------------------------------------------------------------------------- /hashmap-tlb/src/HmnFork.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/hashmap-tlb/src/HmnFork.kt -------------------------------------------------------------------------------- /hashmap-tlb/src/HmnLeaf.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/hashmap-tlb/src/HmnLeaf.kt -------------------------------------------------------------------------------- /hashmap-tlb/src/Unary.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/hashmap-tlb/src/Unary.kt -------------------------------------------------------------------------------- /hashmap-tlb/src/UnarySuccess.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/hashmap-tlb/src/UnarySuccess.kt -------------------------------------------------------------------------------- /hashmap-tlb/src/UnaryZero.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/hashmap-tlb/src/UnaryZero.kt -------------------------------------------------------------------------------- /hashmap-tlb/test/HashMapEdgeTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/hashmap-tlb/test/HashMapEdgeTest.kt -------------------------------------------------------------------------------- /hashmap-tlb/test/HashMapEditTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/hashmap-tlb/test/HashMapEditTest.kt -------------------------------------------------------------------------------- /hashmap-tlb/test/HashMapLabelTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/hashmap-tlb/test/HashMapLabelTest.kt -------------------------------------------------------------------------------- /hashmap-tlb/test/UnaryTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/hashmap-tlb/test/UnaryTest.kt -------------------------------------------------------------------------------- /hashmap-tlb/test/util.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/hashmap-tlb/test/util.kt -------------------------------------------------------------------------------- /liteapi-tl/api/ton-kotlin-liteapi-tl.api: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/liteapi-tl/api/ton-kotlin-liteapi-tl.api -------------------------------------------------------------------------------- /liteapi-tl/api/ton-kotlin-liteapi-tl.klib.api: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/liteapi-tl/api/ton-kotlin-liteapi-tl.klib.api -------------------------------------------------------------------------------- /liteapi-tl/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/liteapi-tl/build.gradle.kts -------------------------------------------------------------------------------- /liteapi-tl/src/LiteApi.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/liteapi-tl/src/LiteApi.kt -------------------------------------------------------------------------------- /liteapi-tl/src/LiteApiClient.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/liteapi-tl/src/LiteApiClient.kt -------------------------------------------------------------------------------- /liteapi-tl/src/exception/exceptions.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/liteapi-tl/src/exception/exceptions.kt -------------------------------------------------------------------------------- /liteapi-tl/src/liteserver/LiteServerAccountId.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/liteapi-tl/src/liteserver/LiteServerAccountId.kt -------------------------------------------------------------------------------- /liteapi-tl/src/liteserver/LiteServerAccountState.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/liteapi-tl/src/liteserver/LiteServerAccountState.kt -------------------------------------------------------------------------------- /liteapi-tl/src/liteserver/LiteServerAllShardsInfo.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/liteapi-tl/src/liteserver/LiteServerAllShardsInfo.kt -------------------------------------------------------------------------------- /liteapi-tl/src/liteserver/LiteServerBlockData.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/liteapi-tl/src/liteserver/LiteServerBlockData.kt -------------------------------------------------------------------------------- /liteapi-tl/src/liteserver/LiteServerBlockHeader.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/liteapi-tl/src/liteserver/LiteServerBlockHeader.kt -------------------------------------------------------------------------------- /liteapi-tl/src/liteserver/LiteServerBlockLink.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/liteapi-tl/src/liteserver/LiteServerBlockLink.kt -------------------------------------------------------------------------------- /liteapi-tl/src/liteserver/LiteServerBlockLinkBack.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/liteapi-tl/src/liteserver/LiteServerBlockLinkBack.kt -------------------------------------------------------------------------------- /liteapi-tl/src/liteserver/LiteServerBlockLinkForward.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/liteapi-tl/src/liteserver/LiteServerBlockLinkForward.kt -------------------------------------------------------------------------------- /liteapi-tl/src/liteserver/LiteServerBlockState.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/liteapi-tl/src/liteserver/LiteServerBlockState.kt -------------------------------------------------------------------------------- /liteapi-tl/src/liteserver/LiteServerBlockTransactions.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/liteapi-tl/src/liteserver/LiteServerBlockTransactions.kt -------------------------------------------------------------------------------- /liteapi-tl/src/liteserver/LiteServerConfigInfo.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/liteapi-tl/src/liteserver/LiteServerConfigInfo.kt -------------------------------------------------------------------------------- /liteapi-tl/src/liteserver/LiteServerCurrentTime.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/liteapi-tl/src/liteserver/LiteServerCurrentTime.kt -------------------------------------------------------------------------------- /liteapi-tl/src/liteserver/LiteServerDebugVerbosity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/liteapi-tl/src/liteserver/LiteServerDebugVerbosity.kt -------------------------------------------------------------------------------- /liteapi-tl/src/liteserver/LiteServerError.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/liteapi-tl/src/liteserver/LiteServerError.kt -------------------------------------------------------------------------------- /liteapi-tl/src/liteserver/LiteServerMasterchainInfo.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/liteapi-tl/src/liteserver/LiteServerMasterchainInfo.kt -------------------------------------------------------------------------------- /liteapi-tl/src/liteserver/LiteServerMasterchainInfoExt.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/liteapi-tl/src/liteserver/LiteServerMasterchainInfoExt.kt -------------------------------------------------------------------------------- /liteapi-tl/src/liteserver/LiteServerPartialBlockProof.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/liteapi-tl/src/liteserver/LiteServerPartialBlockProof.kt -------------------------------------------------------------------------------- /liteapi-tl/src/liteserver/LiteServerQueryPrefix.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/liteapi-tl/src/liteserver/LiteServerQueryPrefix.kt -------------------------------------------------------------------------------- /liteapi-tl/src/liteserver/LiteServerRunMethodResult.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/liteapi-tl/src/liteserver/LiteServerRunMethodResult.kt -------------------------------------------------------------------------------- /liteapi-tl/src/liteserver/LiteServerSendMsgStatus.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/liteapi-tl/src/liteserver/LiteServerSendMsgStatus.kt -------------------------------------------------------------------------------- /liteapi-tl/src/liteserver/LiteServerShardInfo.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/liteapi-tl/src/liteserver/LiteServerShardInfo.kt -------------------------------------------------------------------------------- /liteapi-tl/src/liteserver/LiteServerSignature.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/liteapi-tl/src/liteserver/LiteServerSignature.kt -------------------------------------------------------------------------------- /liteapi-tl/src/liteserver/LiteServerSignatureSet.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/liteapi-tl/src/liteserver/LiteServerSignatureSet.kt -------------------------------------------------------------------------------- /liteapi-tl/src/liteserver/LiteServerTransactionId.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/liteapi-tl/src/liteserver/LiteServerTransactionId.kt -------------------------------------------------------------------------------- /liteapi-tl/src/liteserver/LiteServerTransactionId3.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/liteapi-tl/src/liteserver/LiteServerTransactionId3.kt -------------------------------------------------------------------------------- /liteapi-tl/src/liteserver/LiteServerTransactionInfo.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/liteapi-tl/src/liteserver/LiteServerTransactionInfo.kt -------------------------------------------------------------------------------- /liteapi-tl/src/liteserver/LiteServerTransactionList.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/liteapi-tl/src/liteserver/LiteServerTransactionList.kt -------------------------------------------------------------------------------- /liteapi-tl/src/liteserver/LiteServerValidatorStats.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/liteapi-tl/src/liteserver/LiteServerValidatorStats.kt -------------------------------------------------------------------------------- /liteapi-tl/src/liteserver/LiteServerVersion.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/liteapi-tl/src/liteserver/LiteServerVersion.kt -------------------------------------------------------------------------------- /liteapi-tl/src/liteserver/functions/LiteServerGetAccountState.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/liteapi-tl/src/liteserver/functions/LiteServerGetAccountState.kt -------------------------------------------------------------------------------- /liteapi-tl/src/liteserver/functions/LiteServerGetAllShardsInfo.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/liteapi-tl/src/liteserver/functions/LiteServerGetAllShardsInfo.kt -------------------------------------------------------------------------------- /liteapi-tl/src/liteserver/functions/LiteServerGetBlock.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/liteapi-tl/src/liteserver/functions/LiteServerGetBlock.kt -------------------------------------------------------------------------------- /liteapi-tl/src/liteserver/functions/LiteServerGetBlockHeader.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/liteapi-tl/src/liteserver/functions/LiteServerGetBlockHeader.kt -------------------------------------------------------------------------------- /liteapi-tl/src/liteserver/functions/LiteServerGetBlockProof.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/liteapi-tl/src/liteserver/functions/LiteServerGetBlockProof.kt -------------------------------------------------------------------------------- /liteapi-tl/src/liteserver/functions/LiteServerGetConfigAll.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/liteapi-tl/src/liteserver/functions/LiteServerGetConfigAll.kt -------------------------------------------------------------------------------- /liteapi-tl/src/liteserver/functions/LiteServerGetConfigParams.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/liteapi-tl/src/liteserver/functions/LiteServerGetConfigParams.kt -------------------------------------------------------------------------------- /liteapi-tl/src/liteserver/functions/LiteServerGetMasterchainInfo.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/liteapi-tl/src/liteserver/functions/LiteServerGetMasterchainInfo.kt -------------------------------------------------------------------------------- /liteapi-tl/src/liteserver/functions/LiteServerGetMasterchainInfoExt.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/liteapi-tl/src/liteserver/functions/LiteServerGetMasterchainInfoExt.kt -------------------------------------------------------------------------------- /liteapi-tl/src/liteserver/functions/LiteServerGetOneTransaction.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/liteapi-tl/src/liteserver/functions/LiteServerGetOneTransaction.kt -------------------------------------------------------------------------------- /liteapi-tl/src/liteserver/functions/LiteServerGetShardInfo.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/liteapi-tl/src/liteserver/functions/LiteServerGetShardInfo.kt -------------------------------------------------------------------------------- /liteapi-tl/src/liteserver/functions/LiteServerGetState.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/liteapi-tl/src/liteserver/functions/LiteServerGetState.kt -------------------------------------------------------------------------------- /liteapi-tl/src/liteserver/functions/LiteServerGetTime.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/liteapi-tl/src/liteserver/functions/LiteServerGetTime.kt -------------------------------------------------------------------------------- /liteapi-tl/src/liteserver/functions/LiteServerGetTransactions.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/liteapi-tl/src/liteserver/functions/LiteServerGetTransactions.kt -------------------------------------------------------------------------------- /liteapi-tl/src/liteserver/functions/LiteServerGetValidatorStats.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/liteapi-tl/src/liteserver/functions/LiteServerGetValidatorStats.kt -------------------------------------------------------------------------------- /liteapi-tl/src/liteserver/functions/LiteServerGetVersion.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/liteapi-tl/src/liteserver/functions/LiteServerGetVersion.kt -------------------------------------------------------------------------------- /liteapi-tl/src/liteserver/functions/LiteServerListBlockTransactions.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/liteapi-tl/src/liteserver/functions/LiteServerListBlockTransactions.kt -------------------------------------------------------------------------------- /liteapi-tl/src/liteserver/functions/LiteServerLookupBlock.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/liteapi-tl/src/liteserver/functions/LiteServerLookupBlock.kt -------------------------------------------------------------------------------- /liteapi-tl/src/liteserver/functions/LiteServerQuery.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/liteapi-tl/src/liteserver/functions/LiteServerQuery.kt -------------------------------------------------------------------------------- /liteapi-tl/src/liteserver/functions/LiteServerRunSmcMethod.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/liteapi-tl/src/liteserver/functions/LiteServerRunSmcMethod.kt -------------------------------------------------------------------------------- /liteapi-tl/src/liteserver/functions/LiteServerSendMessage.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/liteapi-tl/src/liteserver/functions/LiteServerSendMessage.kt -------------------------------------------------------------------------------- /liteapi-tl/src/liteserver/functions/LiteServerWaitMasterchainSeqno.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/liteapi-tl/src/liteserver/functions/LiteServerWaitMasterchainSeqno.kt -------------------------------------------------------------------------------- /liteclient/api/ton-kotlin-liteclient.api: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/liteclient/api/ton-kotlin-liteclient.api -------------------------------------------------------------------------------- /liteclient/api/ton-kotlin-liteclient.klib.api: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/liteclient/api/ton-kotlin-liteclient.klib.api -------------------------------------------------------------------------------- /liteclient/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/liteclient/build.gradle.kts -------------------------------------------------------------------------------- /liteclient/src/LiteClient.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/liteclient/src/LiteClient.kt -------------------------------------------------------------------------------- /liteclient/src/LiteClientApi.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/liteclient/src/LiteClientApi.kt -------------------------------------------------------------------------------- /liteclient/src/internal/BlockHeaderResult.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/liteclient/src/internal/BlockHeaderResult.kt -------------------------------------------------------------------------------- /liteclient/src/internal/CheckProofUtils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/liteclient/src/internal/CheckProofUtils.kt -------------------------------------------------------------------------------- /liteclient/src/internal/LiteConnection.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/liteclient/src/internal/LiteConnection.kt -------------------------------------------------------------------------------- /liteclient/src/internal/LiteMessage.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/liteclient/src/internal/LiteMessage.kt -------------------------------------------------------------------------------- /liteclient/src/internal/LiteTcpTransport.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/liteclient/src/internal/LiteTcpTransport.kt -------------------------------------------------------------------------------- /liteclient/src/internal/LiteTransport.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/liteclient/src/internal/LiteTransport.kt -------------------------------------------------------------------------------- /liteclient/src/internal/utils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/liteclient/src/internal/utils.kt -------------------------------------------------------------------------------- /liteclient/test@jvm/Config.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/liteclient/test@jvm/Config.kt -------------------------------------------------------------------------------- /liteclient/test@jvm/LiteClientIntegrationTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/liteclient/test@jvm/LiteClientIntegrationTest.kt -------------------------------------------------------------------------------- /provider/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/provider/build.gradle.kts -------------------------------------------------------------------------------- /provider/core/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/provider/core/build.gradle.kts -------------------------------------------------------------------------------- /provider/core/src/Provider.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/provider/core/src/Provider.kt -------------------------------------------------------------------------------- /provider/core/src@jvm/Provider.jvm.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/provider/core/src@jvm/Provider.jvm.kt -------------------------------------------------------------------------------- /provider/core/src@nonJvm/Provider.nonJvm.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/provider/core/src@nonJvm/Provider.nonJvm.kt -------------------------------------------------------------------------------- /provider/liteapi/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/provider/liteapi/build.gradle.kts -------------------------------------------------------------------------------- /provider/liteapi/src/LiteApi.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/provider/liteapi/src/LiteApi.kt -------------------------------------------------------------------------------- /provider/liteapi/src/LiteApiClient.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/provider/liteapi/src/LiteApiClient.kt -------------------------------------------------------------------------------- /provider/liteapi/src/LiteApiClientImpl.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/provider/liteapi/src/LiteApiClientImpl.kt -------------------------------------------------------------------------------- /provider/liteapi/src/LiteApiClientProvider.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/provider/liteapi/src/LiteApiClientProvider.kt -------------------------------------------------------------------------------- /provider/liteapi/src/internal/LiteConnection.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/provider/liteapi/src/internal/LiteConnection.kt -------------------------------------------------------------------------------- /provider/liteapi/src/internal/LiteMessage.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/provider/liteapi/src/internal/LiteMessage.kt -------------------------------------------------------------------------------- /provider/liteapi/src/internal/LiteTcpTransport.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/provider/liteapi/src/internal/LiteTcpTransport.kt -------------------------------------------------------------------------------- /provider/liteapi/src/internal/LiteTransport.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/provider/liteapi/src/internal/LiteTransport.kt -------------------------------------------------------------------------------- /provider/liteapi/src/internal/utils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/provider/liteapi/src/internal/utils.kt -------------------------------------------------------------------------------- /provider/liteapi/test/LiteClientTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/provider/liteapi/test/LiteClientTest.kt -------------------------------------------------------------------------------- /provider/toncenter/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/provider/toncenter/build.gradle.kts -------------------------------------------------------------------------------- /provider/toncenter/src/TonCenterV3ClientProvider.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/provider/toncenter/src/TonCenterV3ClientProvider.kt -------------------------------------------------------------------------------- /settings.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/settings.gradle.kts -------------------------------------------------------------------------------- /tl-legacy/api/ton-kotlin-tl-legacy.api: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/tl-legacy/api/ton-kotlin-tl-legacy.api -------------------------------------------------------------------------------- /tl-legacy/api/ton-kotlin-tl-legacy.klib.api: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/tl-legacy/api/ton-kotlin-tl-legacy.klib.api -------------------------------------------------------------------------------- /tl-legacy/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/tl-legacy/build.gradle.kts -------------------------------------------------------------------------------- /tl-legacy/src/AbstractTlCombinator.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/tl-legacy/src/AbstractTlCombinator.kt -------------------------------------------------------------------------------- /tl-legacy/src/ByteStringBase64Serializer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/tl-legacy/src/ByteStringBase64Serializer.kt -------------------------------------------------------------------------------- /tl-legacy/src/TlCodec.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/tl-legacy/src/TlCodec.kt -------------------------------------------------------------------------------- /tl-legacy/src/TlCombinator.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/tl-legacy/src/TlCombinator.kt -------------------------------------------------------------------------------- /tl-legacy/src/TlConstructor.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/tl-legacy/src/TlConstructor.kt -------------------------------------------------------------------------------- /tl-legacy/src/TlDecoder.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/tl-legacy/src/TlDecoder.kt -------------------------------------------------------------------------------- /tl-legacy/src/TlEncoder.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/tl-legacy/src/TlEncoder.kt -------------------------------------------------------------------------------- /tl-legacy/src/TlReader.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/tl-legacy/src/TlReader.kt -------------------------------------------------------------------------------- /tl-legacy/src/TlWriter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/tl-legacy/src/TlWriter.kt -------------------------------------------------------------------------------- /tl-legacy/src/constructors/BoolTlConstructor.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/tl-legacy/src/constructors/BoolTlConstructor.kt -------------------------------------------------------------------------------- /tl-legacy/src/constructors/BytesTlConstructor.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/tl-legacy/src/constructors/BytesTlConstructor.kt -------------------------------------------------------------------------------- /tl-legacy/src/constructors/EnumTlCombinator.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/tl-legacy/src/constructors/EnumTlCombinator.kt -------------------------------------------------------------------------------- /tl-legacy/src/deprecation.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/tl-legacy/src/deprecation.kt -------------------------------------------------------------------------------- /tl/api/ton-sdk-tl.api: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/tl/api/ton-sdk-tl.api -------------------------------------------------------------------------------- /tl/api/ton-sdk-tl.klib.api: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/tl/api/ton-sdk-tl.klib.api -------------------------------------------------------------------------------- /tl/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/tl/build.gradle.kts -------------------------------------------------------------------------------- /tl/src/TL.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/tl/src/TL.kt -------------------------------------------------------------------------------- /tl/src/annotations.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/tl/src/annotations.kt -------------------------------------------------------------------------------- /tl/src/internal/TlDecoderImpl.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/tl/src/internal/TlDecoderImpl.kt -------------------------------------------------------------------------------- /tl/src/internal/TlEncoderImpl.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/tl/src/internal/TlEncoderImpl.kt -------------------------------------------------------------------------------- /tl/src/internal/TlMeta.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/tl/src/internal/TlMeta.kt -------------------------------------------------------------------------------- /tl/src/internal/TlReader.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/tl/src/internal/TlReader.kt -------------------------------------------------------------------------------- /tl/src/internal/TlWriter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/tl/src/internal/TlWriter.kt -------------------------------------------------------------------------------- /tl/src/serializers/ByteArrayBase64Serializer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/tl/src/serializers/ByteArrayBase64Serializer.kt -------------------------------------------------------------------------------- /tl/src/serializers/ByteStringBase64Serializer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/tl/src/serializers/ByteStringBase64Serializer.kt -------------------------------------------------------------------------------- /tlb/api/ton-kotlin-tlb.api: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/tlb/api/ton-kotlin-tlb.api -------------------------------------------------------------------------------- /tlb/api/ton-kotlin-tlb.klib.api: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/tlb/api/ton-kotlin-tlb.klib.api -------------------------------------------------------------------------------- /tlb/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/tlb/build.gradle.kts -------------------------------------------------------------------------------- /tlb/src/AbstractTlbCombinator.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/tlb/src/AbstractTlbCombinator.kt -------------------------------------------------------------------------------- /tlb/src/CellRef.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/tlb/src/CellRef.kt -------------------------------------------------------------------------------- /tlb/src/TlbCodec.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/tlb/src/TlbCodec.kt -------------------------------------------------------------------------------- /tlb/src/TlbCombinator.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/tlb/src/TlbCombinator.kt -------------------------------------------------------------------------------- /tlb/src/TlbConstructor.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/tlb/src/TlbConstructor.kt -------------------------------------------------------------------------------- /tlb/src/TlbNegatedCombinator.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/tlb/src/TlbNegatedCombinator.kt -------------------------------------------------------------------------------- /tlb/src/TlbObject.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/tlb/src/TlbObject.kt -------------------------------------------------------------------------------- /tlb/src/TlbPrettyPrinter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/tlb/src/TlbPrettyPrinter.kt -------------------------------------------------------------------------------- /tlb/src/constructor/AnyTlbConstructor.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/tlb/src/constructor/AnyTlbConstructor.kt -------------------------------------------------------------------------------- /tlb/src/constructor/CellTlbConstructor.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/tlb/src/constructor/CellTlbConstructor.kt -------------------------------------------------------------------------------- /tlb/src/constructor/IntTlbConstructor.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/tlb/src/constructor/IntTlbConstructor.kt -------------------------------------------------------------------------------- /tlb/src/constructor/UIntTlbConstructor.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/tlb/src/constructor/UIntTlbConstructor.kt -------------------------------------------------------------------------------- /tlb/src/exception/ParseTlbException.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/tlb/src/exception/ParseTlbException.kt -------------------------------------------------------------------------------- /tlb/src/exception/UnknownTlbConstructorException.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/tlb/src/exception/UnknownTlbConstructorException.kt -------------------------------------------------------------------------------- /tlb/src/providers/TlbCombinatorProvider.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/tlb/src/providers/TlbCombinatorProvider.kt -------------------------------------------------------------------------------- /tlb/src/providers/TlbConstructorProvider.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/tlb/src/providers/TlbConstructorProvider.kt -------------------------------------------------------------------------------- /tlb/src/providers/TlbProvider.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/tlb/src/providers/TlbProvider.kt -------------------------------------------------------------------------------- /ton-kotlin-fift/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/ton-kotlin-fift/build.gradle.kts -------------------------------------------------------------------------------- /ton-kotlin-fift/src/commonMain/kotlin/org/ton/fift/Box.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/ton-kotlin-fift/src/commonMain/kotlin/org/ton/fift/Box.kt -------------------------------------------------------------------------------- /ton-kotlin-fift/src/commonMain/kotlin/org/ton/fift/dictionary.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/ton-kotlin-fift/src/commonMain/kotlin/org/ton/fift/dictionary.kt -------------------------------------------------------------------------------- /ton-kotlin-fift/src/commonMain/kotlin/org/ton/fift/exceptions.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/ton-kotlin-fift/src/commonMain/kotlin/org/ton/fift/exceptions.kt -------------------------------------------------------------------------------- /ton-kotlin-fift/src/commonMain/kotlin/org/ton/fift/interpretator.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/ton-kotlin-fift/src/commonMain/kotlin/org/ton/fift/interpretator.kt -------------------------------------------------------------------------------- /ton-kotlin-fift/src/commonMain/kotlin/org/ton/fift/stack.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/ton-kotlin-fift/src/commonMain/kotlin/org/ton/fift/stack.kt -------------------------------------------------------------------------------- /ton-kotlin-fift/src/commonMain/kotlin/org/ton/fift/utils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/ton-kotlin-fift/src/commonMain/kotlin/org/ton/fift/utils.kt -------------------------------------------------------------------------------- /ton-kotlin-fift/src/commonMain/kotlin/org/ton/fift/words.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/ton-kotlin-fift/src/commonMain/kotlin/org/ton/fift/words.kt -------------------------------------------------------------------------------- /ton-kotlin-fift/src/commonMain/resources/Fift.fif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/ton-kotlin-fift/src/commonMain/resources/Fift.fif -------------------------------------------------------------------------------- /ton-kotlin-fift/src/commonTest/kotlin/org/ton/fift/WordsTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/ton-kotlin-fift/src/commonTest/kotlin/org/ton/fift/WordsTest.kt -------------------------------------------------------------------------------- /ton-sdk-toncenter/ton-sdk-toncenter-client/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/ton-sdk-toncenter/ton-sdk-toncenter-client/build.gradle.kts -------------------------------------------------------------------------------- /ton-sdk-toncenter/ton-sdk-toncenter-client/src/TonCenter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/ton-sdk-toncenter/ton-sdk-toncenter-client/src/TonCenter.kt -------------------------------------------------------------------------------- /ton-sdk-toncenter/ton-sdk-toncenter-client/src/client/TonCenterV3Client.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/ton-sdk-toncenter/ton-sdk-toncenter-client/src/client/TonCenterV3Client.kt -------------------------------------------------------------------------------- /ton-sdk-toncenter/ton-sdk-toncenter-client/src/internal/TonCenterV3ClientImpl.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/ton-sdk-toncenter/ton-sdk-toncenter-client/src/internal/TonCenterV3ClientImpl.kt -------------------------------------------------------------------------------- /ton-sdk-toncenter/ton-sdk-toncenter-client/src/internal/serializers/AccountStatusChangeSerializer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/ton-sdk-toncenter/ton-sdk-toncenter-client/src/internal/serializers/AccountStatusChangeSerializer.kt -------------------------------------------------------------------------------- /ton-sdk-toncenter/ton-sdk-toncenter-client/src/internal/serializers/AccountStatusSerializer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/ton-sdk-toncenter/ton-sdk-toncenter-client/src/internal/serializers/AccountStatusSerializer.kt -------------------------------------------------------------------------------- /ton-sdk-toncenter/ton-sdk-toncenter-client/src/internal/serializers/ActionPhaseSerializer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/ton-sdk-toncenter/ton-sdk-toncenter-client/src/internal/serializers/ActionPhaseSerializer.kt -------------------------------------------------------------------------------- /ton-sdk-toncenter/ton-sdk-toncenter-client/src/internal/serializers/AddressStdAsBase64Serializer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/ton-sdk-toncenter/ton-sdk-toncenter-client/src/internal/serializers/AddressStdAsBase64Serializer.kt -------------------------------------------------------------------------------- /ton-sdk-toncenter/ton-sdk-toncenter-client/src/internal/serializers/BigIntAsHexStringSerializer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/ton-sdk-toncenter/ton-sdk-toncenter-client/src/internal/serializers/BigIntAsHexStringSerializer.kt -------------------------------------------------------------------------------- /ton-sdk-toncenter/ton-sdk-toncenter-client/src/internal/serializers/BigIntHexSerializer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/ton-sdk-toncenter/ton-sdk-toncenter-client/src/internal/serializers/BigIntHexSerializer.kt -------------------------------------------------------------------------------- /ton-sdk-toncenter/ton-sdk-toncenter-client/src/internal/serializers/BouncePhaseSerializer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/ton-sdk-toncenter/ton-sdk-toncenter-client/src/internal/serializers/BouncePhaseSerializer.kt -------------------------------------------------------------------------------- /ton-sdk-toncenter/ton-sdk-toncenter-client/src/internal/serializers/CoinsSerializer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/ton-sdk-toncenter/ton-sdk-toncenter-client/src/internal/serializers/CoinsSerializer.kt -------------------------------------------------------------------------------- /ton-sdk-toncenter/ton-sdk-toncenter-client/src/internal/serializers/ComputePhaseSerializer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/ton-sdk-toncenter/ton-sdk-toncenter-client/src/internal/serializers/ComputePhaseSerializer.kt -------------------------------------------------------------------------------- /ton-sdk-toncenter/ton-sdk-toncenter-client/src/internal/serializers/CreditPhaseSerializer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/ton-sdk-toncenter/ton-sdk-toncenter-client/src/internal/serializers/CreditPhaseSerializer.kt -------------------------------------------------------------------------------- /ton-sdk-toncenter/ton-sdk-toncenter-client/src/internal/serializers/ExtraCurrencyCollectionSerializer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/ton-sdk-toncenter/ton-sdk-toncenter-client/src/internal/serializers/ExtraCurrencyCollectionSerializer.kt -------------------------------------------------------------------------------- /ton-sdk-toncenter/ton-sdk-toncenter-client/src/internal/serializers/HashBytesAsBase64Serializer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/ton-sdk-toncenter/ton-sdk-toncenter-client/src/internal/serializers/HashBytesAsBase64Serializer.kt -------------------------------------------------------------------------------- /ton-sdk-toncenter/ton-sdk-toncenter-client/src/internal/serializers/IntHexSerializer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/ton-sdk-toncenter/ton-sdk-toncenter-client/src/internal/serializers/IntHexSerializer.kt -------------------------------------------------------------------------------- /ton-sdk-toncenter/ton-sdk-toncenter-client/src/internal/serializers/StoragePhaseSerializer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/ton-sdk-toncenter/ton-sdk-toncenter-client/src/internal/serializers/StoragePhaseSerializer.kt -------------------------------------------------------------------------------- /ton-sdk-toncenter/ton-sdk-toncenter-client/src/internal/serializers/StorageUsedShortSerializer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/ton-sdk-toncenter/ton-sdk-toncenter-client/src/internal/serializers/StorageUsedShortSerializer.kt -------------------------------------------------------------------------------- /ton-sdk-toncenter/ton-sdk-toncenter-client/src/internal/serializers/TransactionDescriptionSerializer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/ton-sdk-toncenter/ton-sdk-toncenter-client/src/internal/serializers/TransactionDescriptionSerializer.kt -------------------------------------------------------------------------------- /ton-sdk-toncenter/ton-sdk-toncenter-client/src/model/TonCenterAccountState.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/ton-sdk-toncenter/ton-sdk-toncenter-client/src/model/TonCenterAccountState.kt -------------------------------------------------------------------------------- /ton-sdk-toncenter/ton-sdk-toncenter-client/src/model/TonCenterAccountStateFull.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/ton-sdk-toncenter/ton-sdk-toncenter-client/src/model/TonCenterAccountStateFull.kt -------------------------------------------------------------------------------- /ton-sdk-toncenter/ton-sdk-toncenter-client/src/model/TonCenterAccountStates.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/ton-sdk-toncenter/ton-sdk-toncenter-client/src/model/TonCenterAccountStates.kt -------------------------------------------------------------------------------- /ton-sdk-toncenter/ton-sdk-toncenter-client/src/model/TonCenterAddressBook.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/ton-sdk-toncenter/ton-sdk-toncenter-client/src/model/TonCenterAddressBook.kt -------------------------------------------------------------------------------- /ton-sdk-toncenter/ton-sdk-toncenter-client/src/model/TonCenterAddressBookRequest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/ton-sdk-toncenter/ton-sdk-toncenter-client/src/model/TonCenterAddressBookRequest.kt -------------------------------------------------------------------------------- /ton-sdk-toncenter/ton-sdk-toncenter-client/src/model/TonCenterAddressMetadata.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/ton-sdk-toncenter/ton-sdk-toncenter-client/src/model/TonCenterAddressMetadata.kt -------------------------------------------------------------------------------- /ton-sdk-toncenter/ton-sdk-toncenter-client/src/model/TonCenterBlock.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/ton-sdk-toncenter/ton-sdk-toncenter-client/src/model/TonCenterBlock.kt -------------------------------------------------------------------------------- /ton-sdk-toncenter/ton-sdk-toncenter-client/src/model/TonCenterBlocksRequest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/ton-sdk-toncenter/ton-sdk-toncenter-client/src/model/TonCenterBlocksRequest.kt -------------------------------------------------------------------------------- /ton-sdk-toncenter/ton-sdk-toncenter-client/src/model/TonCenterBlocksResponse.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/ton-sdk-toncenter/ton-sdk-toncenter-client/src/model/TonCenterBlocksResponse.kt -------------------------------------------------------------------------------- /ton-sdk-toncenter/ton-sdk-toncenter-client/src/model/TonCenterDecodedContent.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/ton-sdk-toncenter/ton-sdk-toncenter-client/src/model/TonCenterDecodedContent.kt -------------------------------------------------------------------------------- /ton-sdk-toncenter/ton-sdk-toncenter-client/src/model/TonCenterMasterchainBlockShardStateRequest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/ton-sdk-toncenter/ton-sdk-toncenter-client/src/model/TonCenterMasterchainBlockShardStateRequest.kt -------------------------------------------------------------------------------- /ton-sdk-toncenter/ton-sdk-toncenter-client/src/model/TonCenterMasterchainInfo.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/ton-sdk-toncenter/ton-sdk-toncenter-client/src/model/TonCenterMasterchainInfo.kt -------------------------------------------------------------------------------- /ton-sdk-toncenter/ton-sdk-toncenter-client/src/model/TonCenterMessage.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/ton-sdk-toncenter/ton-sdk-toncenter-client/src/model/TonCenterMessage.kt -------------------------------------------------------------------------------- /ton-sdk-toncenter/ton-sdk-toncenter-client/src/model/TonCenterMessageContent.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/ton-sdk-toncenter/ton-sdk-toncenter-client/src/model/TonCenterMessageContent.kt -------------------------------------------------------------------------------- /ton-sdk-toncenter/ton-sdk-toncenter-client/src/model/TonCenterMetadataRequest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/ton-sdk-toncenter/ton-sdk-toncenter-client/src/model/TonCenterMetadataRequest.kt -------------------------------------------------------------------------------- /ton-sdk-toncenter/ton-sdk-toncenter-client/src/model/TonCenterRequestBuilder.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/ton-sdk-toncenter/ton-sdk-toncenter-client/src/model/TonCenterRequestBuilder.kt -------------------------------------------------------------------------------- /ton-sdk-toncenter/ton-sdk-toncenter-client/src/model/TonCenterRunGetMethod.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/ton-sdk-toncenter/ton-sdk-toncenter-client/src/model/TonCenterRunGetMethod.kt -------------------------------------------------------------------------------- /ton-sdk-toncenter/ton-sdk-toncenter-client/src/model/TonCenterSendMessage.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/ton-sdk-toncenter/ton-sdk-toncenter-client/src/model/TonCenterSendMessage.kt -------------------------------------------------------------------------------- /ton-sdk-toncenter/ton-sdk-toncenter-client/src/model/TonCenterStackEntry.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/ton-sdk-toncenter/ton-sdk-toncenter-client/src/model/TonCenterStackEntry.kt -------------------------------------------------------------------------------- /ton-sdk-toncenter/ton-sdk-toncenter-client/src/model/TonCenterTokenInfo.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/ton-sdk-toncenter/ton-sdk-toncenter-client/src/model/TonCenterTokenInfo.kt -------------------------------------------------------------------------------- /ton-sdk-toncenter/ton-sdk-toncenter-client/src/model/TonCenterTransaction.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/ton-sdk-toncenter/ton-sdk-toncenter-client/src/model/TonCenterTransaction.kt -------------------------------------------------------------------------------- /ton-sdk-toncenter/ton-sdk-toncenter-client/src/model/TonCenterTransactionsRequestBuilder.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/ton-sdk-toncenter/ton-sdk-toncenter-client/src/model/TonCenterTransactionsRequestBuilder.kt -------------------------------------------------------------------------------- /ton-sdk-toncenter/ton-sdk-toncenter-client/src/model/TonCenterTransactionsResponse.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/ton-sdk-toncenter/ton-sdk-toncenter-client/src/model/TonCenterTransactionsResponse.kt -------------------------------------------------------------------------------- /ton-sdk-toncenter/ton-sdk-toncenter-client/src/model/TonCenterWalletState.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/ton-sdk-toncenter/ton-sdk-toncenter-client/src/model/TonCenterWalletState.kt -------------------------------------------------------------------------------- /ton-sdk-toncenter/ton-sdk-toncenter-client/src/model/TonCenterWalletStatesResponse.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/ton-sdk-toncenter/ton-sdk-toncenter-client/src/model/TonCenterWalletStatesResponse.kt -------------------------------------------------------------------------------- /ton-sdk-toncenter/ton-sdk-toncenter-client/src/model/TonCenterWalletType.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/ton-sdk-toncenter/ton-sdk-toncenter-client/src/model/TonCenterWalletType.kt -------------------------------------------------------------------------------- /ton-sdk-toncenter/ton-sdk-toncenter-client/src@jvm/TonCenterClient.jvm.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/ton-sdk-toncenter/ton-sdk-toncenter-client/src@jvm/TonCenterClient.jvm.kt -------------------------------------------------------------------------------- /ton-sdk-toncenter/ton-sdk-toncenter-client/src@nonJvm/TonCenterClient.nonJvm.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/ton-sdk-toncenter/ton-sdk-toncenter-client/src@nonJvm/TonCenterClient.nonJvm.kt -------------------------------------------------------------------------------- /ton-sdk-toncenter/ton-sdk-toncenter-client/test@jvm/TonCenterTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/ton-sdk-toncenter/ton-sdk-toncenter-client/test@jvm/TonCenterTest.kt -------------------------------------------------------------------------------- /ton-sdk-toncenter/ton-sdk-toncenter-client/test@jvm/TransactionsTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/ton-sdk-toncenter/ton-sdk-toncenter-client/test@jvm/TransactionsTest.kt -------------------------------------------------------------------------------- /ton-sdk-toncenter/ton-sdk-toncenter-client/testResources@jvm/transactions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/ton-sdk-toncenter/ton-sdk-toncenter-client/testResources@jvm/transactions.json -------------------------------------------------------------------------------- /ton-sdk-toncenter/ton-sdk-toncenter-protocol/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/ton-sdk-toncenter/ton-sdk-toncenter-protocol/build.gradle.kts -------------------------------------------------------------------------------- /ton-sdk-toncenter/ton-sdk-toncenter-protocol/openapi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/ton-sdk-toncenter/ton-sdk-toncenter-protocol/openapi.yaml -------------------------------------------------------------------------------- /ton-sdk-toncenter/ton-sdk-toncenter-provider/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/ton-sdk-toncenter/ton-sdk-toncenter-provider/build.gradle.kts -------------------------------------------------------------------------------- /tonapi-tl/api/ton-kotlin-tonapi-tl.api: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/tonapi-tl/api/ton-kotlin-tonapi-tl.api -------------------------------------------------------------------------------- /tonapi-tl/api/ton-kotlin-tonapi-tl.klib.api: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/tonapi-tl/api/ton-kotlin-tonapi-tl.klib.api -------------------------------------------------------------------------------- /tonapi-tl/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/tonapi-tl/build.gradle.kts -------------------------------------------------------------------------------- /tonapi-tl/src/SignedTlObject.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/tonapi-tl/src/SignedTlObject.kt -------------------------------------------------------------------------------- /tonapi-tl/src/adnl/AdnlAddress.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/tonapi-tl/src/adnl/AdnlAddress.kt -------------------------------------------------------------------------------- /tonapi-tl/src/adnl/AdnlAddressList.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/tonapi-tl/src/adnl/AdnlAddressList.kt -------------------------------------------------------------------------------- /tonapi-tl/src/adnl/AdnlIdShort.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/tonapi-tl/src/adnl/AdnlIdShort.kt -------------------------------------------------------------------------------- /tonapi-tl/src/adnl/AdnlNode.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/tonapi-tl/src/adnl/AdnlNode.kt -------------------------------------------------------------------------------- /tonapi-tl/src/adnl/AdnlNodes.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/tonapi-tl/src/adnl/AdnlNodes.kt -------------------------------------------------------------------------------- /tonapi-tl/src/adnl/AdnlPacketContents.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/tonapi-tl/src/adnl/AdnlPacketContents.kt -------------------------------------------------------------------------------- /tonapi-tl/src/adnl/AdnlPing.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/tonapi-tl/src/adnl/AdnlPing.kt -------------------------------------------------------------------------------- /tonapi-tl/src/adnl/AdnlPong.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/tonapi-tl/src/adnl/AdnlPong.kt -------------------------------------------------------------------------------- /tonapi-tl/src/adnl/AdnlProxy.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/tonapi-tl/src/adnl/AdnlProxy.kt -------------------------------------------------------------------------------- /tonapi-tl/src/adnl/AdnlProxyTo.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/tonapi-tl/src/adnl/AdnlProxyTo.kt -------------------------------------------------------------------------------- /tonapi-tl/src/adnl/AdnlProxyToSign.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/tonapi-tl/src/adnl/AdnlProxyToSign.kt -------------------------------------------------------------------------------- /tonapi-tl/src/adnl/config/AdnlConfigGlobal.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/tonapi-tl/src/adnl/config/AdnlConfigGlobal.kt -------------------------------------------------------------------------------- /tonapi-tl/src/adnl/message/AdnlMessage.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/tonapi-tl/src/adnl/message/AdnlMessage.kt -------------------------------------------------------------------------------- /tonapi-tl/src/adnl/message/AdnlMessageAnswer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/tonapi-tl/src/adnl/message/AdnlMessageAnswer.kt -------------------------------------------------------------------------------- /tonapi-tl/src/adnl/message/AdnlMessageConfirmChannel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/tonapi-tl/src/adnl/message/AdnlMessageConfirmChannel.kt -------------------------------------------------------------------------------- /tonapi-tl/src/adnl/message/AdnlMessageCreateChannel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/tonapi-tl/src/adnl/message/AdnlMessageCreateChannel.kt -------------------------------------------------------------------------------- /tonapi-tl/src/adnl/message/AdnlMessageCustom.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/tonapi-tl/src/adnl/message/AdnlMessageCustom.kt -------------------------------------------------------------------------------- /tonapi-tl/src/adnl/message/AdnlMessageNop.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/tonapi-tl/src/adnl/message/AdnlMessageNop.kt -------------------------------------------------------------------------------- /tonapi-tl/src/adnl/message/AdnlMessagePart.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/tonapi-tl/src/adnl/message/AdnlMessagePart.kt -------------------------------------------------------------------------------- /tonapi-tl/src/adnl/message/AdnlMessageQuery.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/tonapi-tl/src/adnl/message/AdnlMessageQuery.kt -------------------------------------------------------------------------------- /tonapi-tl/src/adnl/message/AdnlMessageReinit.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/tonapi-tl/src/adnl/message/AdnlMessageReinit.kt -------------------------------------------------------------------------------- /tonapi-tl/src/config/ConfigGlobal.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/tonapi-tl/src/config/ConfigGlobal.kt -------------------------------------------------------------------------------- /tonapi-tl/src/dht/DhtKey.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/tonapi-tl/src/dht/DhtKey.kt -------------------------------------------------------------------------------- /tonapi-tl/src/dht/DhtKeyDescription.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/tonapi-tl/src/dht/DhtKeyDescription.kt -------------------------------------------------------------------------------- /tonapi-tl/src/dht/DhtMessage.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/tonapi-tl/src/dht/DhtMessage.kt -------------------------------------------------------------------------------- /tonapi-tl/src/dht/DhtNode.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/tonapi-tl/src/dht/DhtNode.kt -------------------------------------------------------------------------------- /tonapi-tl/src/dht/DhtNodes.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/tonapi-tl/src/dht/DhtNodes.kt -------------------------------------------------------------------------------- /tonapi-tl/src/dht/DhtPong.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/tonapi-tl/src/dht/DhtPong.kt -------------------------------------------------------------------------------- /tonapi-tl/src/dht/DhtStore.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/tonapi-tl/src/dht/DhtStore.kt -------------------------------------------------------------------------------- /tonapi-tl/src/dht/DhtStored.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/tonapi-tl/src/dht/DhtStored.kt -------------------------------------------------------------------------------- /tonapi-tl/src/dht/DhtUpdateRule.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/tonapi-tl/src/dht/DhtUpdateRule.kt -------------------------------------------------------------------------------- /tonapi-tl/src/dht/DhtValue.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/tonapi-tl/src/dht/DhtValue.kt -------------------------------------------------------------------------------- /tonapi-tl/src/dht/DhtValueResult.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/tonapi-tl/src/dht/DhtValueResult.kt -------------------------------------------------------------------------------- /tonapi-tl/src/dht/config/DhtConfigGlobal.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/tonapi-tl/src/dht/config/DhtConfigGlobal.kt -------------------------------------------------------------------------------- /tonapi-tl/src/dht/config/DhtConfigIdLocal.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/tonapi-tl/src/dht/config/DhtConfigIdLocal.kt -------------------------------------------------------------------------------- /tonapi-tl/src/dht/config/DhtConfigLocal.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/tonapi-tl/src/dht/config/DhtConfigLocal.kt -------------------------------------------------------------------------------- /tonapi-tl/src/dht/config/DhtConfigRandomLocal.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/tonapi-tl/src/dht/config/DhtConfigRandomLocal.kt -------------------------------------------------------------------------------- /tonapi-tl/src/dht/db/DhtDbBucket.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/tonapi-tl/src/dht/db/DhtDbBucket.kt -------------------------------------------------------------------------------- /tonapi-tl/src/dht/db/DhtDbKey.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/tonapi-tl/src/dht/db/DhtDbKey.kt -------------------------------------------------------------------------------- /tonapi-tl/src/dht/functions/DhtFindValue.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/tonapi-tl/src/dht/functions/DhtFindValue.kt -------------------------------------------------------------------------------- /tonapi-tl/src/dht/functions/DhtPing.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/tonapi-tl/src/dht/functions/DhtPing.kt -------------------------------------------------------------------------------- /tonapi-tl/src/dht/functions/DhtQuery.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/tonapi-tl/src/dht/functions/DhtQuery.kt -------------------------------------------------------------------------------- /tonapi-tl/src/exception/TvmException.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/tonapi-tl/src/exception/TvmException.kt -------------------------------------------------------------------------------- /tonapi-tl/src/exception/exceptions.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/tonapi-tl/src/exception/exceptions.kt -------------------------------------------------------------------------------- /tonapi-tl/src/fec/FecRaptorQ.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/tonapi-tl/src/fec/FecRaptorQ.kt -------------------------------------------------------------------------------- /tonapi-tl/src/fec/FecType.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/tonapi-tl/src/fec/FecType.kt -------------------------------------------------------------------------------- /tonapi-tl/src/http/HttpHeader.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/tonapi-tl/src/http/HttpHeader.kt -------------------------------------------------------------------------------- /tonapi-tl/src/http/HttpPayloadPart.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/tonapi-tl/src/http/HttpPayloadPart.kt -------------------------------------------------------------------------------- /tonapi-tl/src/http/HttpResponse.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/tonapi-tl/src/http/HttpResponse.kt -------------------------------------------------------------------------------- /tonapi-tl/src/http/functions/HttpGetNextPayloadPart.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/tonapi-tl/src/http/functions/HttpGetNextPayloadPart.kt -------------------------------------------------------------------------------- /tonapi-tl/src/http/functions/HttpRequest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/tonapi-tl/src/http/functions/HttpRequest.kt -------------------------------------------------------------------------------- /tonapi-tl/src/http/server/HttpServerDnsEntry.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/tonapi-tl/src/http/server/HttpServerDnsEntry.kt -------------------------------------------------------------------------------- /tonapi-tl/src/http/server/HttpServerHost.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/tonapi-tl/src/http/server/HttpServerHost.kt -------------------------------------------------------------------------------- /tonapi-tl/src/liteclient/config/LiteClientConfigGlobal.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/tonapi-tl/src/liteclient/config/LiteClientConfigGlobal.kt -------------------------------------------------------------------------------- /tonapi-tl/src/liteserver/LiteServerDesc.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/tonapi-tl/src/liteserver/LiteServerDesc.kt -------------------------------------------------------------------------------- /tonapi-tl/src/liteserver/config/LiteServerConfigLocal.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/tonapi-tl/src/liteserver/config/LiteServerConfigLocal.kt -------------------------------------------------------------------------------- /tonapi-tl/src/liteserver/config/LiteServerConfigRandomLocal.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/tonapi-tl/src/liteserver/config/LiteServerConfigRandomLocal.kt -------------------------------------------------------------------------------- /tonapi-tl/src/overlay/OverlayNode.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/tonapi-tl/src/overlay/OverlayNode.kt -------------------------------------------------------------------------------- /tonapi-tl/src/overlay/OverlayNodeToSign.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/tonapi-tl/src/overlay/OverlayNodeToSign.kt -------------------------------------------------------------------------------- /tonapi-tl/src/overlay/OverlayNodes.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/tonapi-tl/src/overlay/OverlayNodes.kt -------------------------------------------------------------------------------- /tonapi-tl/src/rldp/RldpAnswer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/tonapi-tl/src/rldp/RldpAnswer.kt -------------------------------------------------------------------------------- /tonapi-tl/src/rldp/RldpComplete.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/tonapi-tl/src/rldp/RldpComplete.kt -------------------------------------------------------------------------------- /tonapi-tl/src/rldp/RldpConfirm.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/tonapi-tl/src/rldp/RldpConfirm.kt -------------------------------------------------------------------------------- /tonapi-tl/src/rldp/RldpMessage.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/tonapi-tl/src/rldp/RldpMessage.kt -------------------------------------------------------------------------------- /tonapi-tl/src/rldp/RldpMessageData.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/tonapi-tl/src/rldp/RldpMessageData.kt -------------------------------------------------------------------------------- /tonapi-tl/src/rldp/RldpMessagePart.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/tonapi-tl/src/rldp/RldpMessagePart.kt -------------------------------------------------------------------------------- /tonapi-tl/src/rldp/RldpMessagePartData.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/tonapi-tl/src/rldp/RldpMessagePartData.kt -------------------------------------------------------------------------------- /tonapi-tl/src/rldp/RldpQuery.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/tonapi-tl/src/rldp/RldpQuery.kt -------------------------------------------------------------------------------- /tonapi-tl/src/tcp/TcpAuthentificate.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/tonapi-tl/src/tcp/TcpAuthentificate.kt -------------------------------------------------------------------------------- /tonapi-tl/src/tcp/TcpAuthentificationComplete.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/tonapi-tl/src/tcp/TcpAuthentificationComplete.kt -------------------------------------------------------------------------------- /tonapi-tl/src/tcp/TcpAuthentificationNonce.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/tonapi-tl/src/tcp/TcpAuthentificationNonce.kt -------------------------------------------------------------------------------- /tonapi-tl/src/tcp/TcpMessage.kt: -------------------------------------------------------------------------------- 1 | package org.ton.api.tcp 2 | 3 | public sealed interface TcpMessage { 4 | } 5 | -------------------------------------------------------------------------------- /tonapi-tl/src/tcp/TcpPing.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/tonapi-tl/src/tcp/TcpPing.kt -------------------------------------------------------------------------------- /tonapi-tl/src/tcp/TcpPong.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/tonapi-tl/src/tcp/TcpPong.kt -------------------------------------------------------------------------------- /tonapi-tl/src/tonnode/Shard.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/tonapi-tl/src/tonnode/Shard.kt -------------------------------------------------------------------------------- /tonapi-tl/src/tonnode/TonNodeBlockId.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/tonapi-tl/src/tonnode/TonNodeBlockId.kt -------------------------------------------------------------------------------- /tonapi-tl/src/tonnode/TonNodeBlockIdExt.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/tonapi-tl/src/tonnode/TonNodeBlockIdExt.kt -------------------------------------------------------------------------------- /tonapi-tl/src/tonnode/TonNodeZeroStateIdExt.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/tonapi-tl/src/tonnode/TonNodeZeroStateIdExt.kt -------------------------------------------------------------------------------- /tonapi-tl/src/tonnode/Workchain.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/tonapi-tl/src/tonnode/Workchain.kt -------------------------------------------------------------------------------- /tonapi-tl/src/validator/config/ValidatorConfigGlobal.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/tonapi-tl/src/validator/config/ValidatorConfigGlobal.kt -------------------------------------------------------------------------------- /tonapi-tl/src/validator/config/ValidatorConfigLocal.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/tonapi-tl/src/validator/config/ValidatorConfigLocal.kt -------------------------------------------------------------------------------- /tonapi-tl/src/validator/config/ValidatorConfigRandomLocal.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/tonapi-tl/src/validator/config/ValidatorConfigRandomLocal.kt -------------------------------------------------------------------------------- /tonapi-tl/test/PrivateKeyTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/tonapi-tl/test/PrivateKeyTest.kt -------------------------------------------------------------------------------- /tvm/api/ton-kotlin-tvm.api: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/tvm/api/ton-kotlin-tvm.api -------------------------------------------------------------------------------- /tvm/api/ton-kotlin-tvm.klib.api: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/tvm/api/ton-kotlin-tvm.klib.api -------------------------------------------------------------------------------- /tvm/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/tvm/build.gradle.kts -------------------------------------------------------------------------------- /tvm/src/Tvm.kt: -------------------------------------------------------------------------------- 1 | package org.ton 2 | -------------------------------------------------------------------------------- /tvm/src/boc/BagOfCells.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/tvm/src/boc/BagOfCells.kt -------------------------------------------------------------------------------- /tvm/src/boc/BagOfCellsImpl.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/tvm/src/boc/BagOfCellsImpl.kt -------------------------------------------------------------------------------- /tvm/src/boc/BagOfCellsUtils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/tvm/src/boc/BagOfCellsUtils.kt -------------------------------------------------------------------------------- /tvm/src/boc/CachedBagOfCells.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/tvm/src/boc/CachedBagOfCells.kt -------------------------------------------------------------------------------- /tvm/src/cell/Cell.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/tvm/src/cell/Cell.kt -------------------------------------------------------------------------------- /tvm/src/cell/CellBuilder.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/tvm/src/cell/CellBuilder.kt -------------------------------------------------------------------------------- /tvm/src/cell/CellContext.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/tvm/src/cell/CellContext.kt -------------------------------------------------------------------------------- /tvm/src/cell/CellDescriptor.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/tvm/src/cell/CellDescriptor.kt -------------------------------------------------------------------------------- /tvm/src/cell/CellSize.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/tvm/src/cell/CellSize.kt -------------------------------------------------------------------------------- /tvm/src/cell/CellSlice.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/tvm/src/cell/CellSlice.kt -------------------------------------------------------------------------------- /tvm/src/cell/CellType.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/tvm/src/cell/CellType.kt -------------------------------------------------------------------------------- /tvm/src/cell/DataCell.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/tvm/src/cell/DataCell.kt -------------------------------------------------------------------------------- /tvm/src/cell/EmptyCell.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/tvm/src/cell/EmptyCell.kt -------------------------------------------------------------------------------- /tvm/src/cell/LevelMask.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/tvm/src/cell/LevelMask.kt -------------------------------------------------------------------------------- /tvm/src/cell/PrunedBranchCell.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/tvm/src/cell/PrunedBranchCell.kt -------------------------------------------------------------------------------- /tvm/src/cell/VirtualCell.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/tvm/src/cell/VirtualCell.kt -------------------------------------------------------------------------------- /tvm/src/cell/exception/exceptions.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/tvm/src/cell/exception/exceptions.kt -------------------------------------------------------------------------------- /tvm/test/BagOfCellsTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/tvm/test/BagOfCellsTest.kt -------------------------------------------------------------------------------- /tvm/test/CellBuilderTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/tvm/test/CellBuilderTest.kt -------------------------------------------------------------------------------- /tvm/test/CellSliceTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/tvm/test/CellSliceTest.kt -------------------------------------------------------------------------------- /tvm/test/CellTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/tvm/test/CellTest.kt -------------------------------------------------------------------------------- /tvm/test/PrunedBranchTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/ton-kotlin/HEAD/tvm/test/PrunedBranchTest.kt --------------------------------------------------------------------------------