├── .gitbook.yaml ├── .gitbook └── assets │ ├── scr1.png │ ├── ton-sdk-blue.png │ └── ton-sdk.png ├── .github └── workflows │ └── release-post-actions.yml ├── .gitignore ├── CHANGELOG.md ├── Cargo.lock ├── Cargo.toml ├── LICENSE ├── README.md ├── _config.yml ├── api ├── derive │ ├── Cargo.toml │ └── src │ │ ├── derive_function.rs │ │ ├── derive_module.rs │ │ ├── derive_type.rs │ │ ├── lib.rs │ │ └── utils.rs ├── info │ ├── Cargo.toml │ └── src │ │ └── lib.rs └── test │ ├── Cargo.toml │ └── src │ ├── lib.rs │ └── tests │ ├── enums.rs │ ├── mod.rs │ └── others.rs ├── docs ├── .gitbook │ └── assets │ │ ├── Everscale Logo.png │ │ ├── GoshLogo.png │ │ ├── image (1) (1) (1).png │ │ ├── image (1) (1).png │ │ ├── image (1).png │ │ ├── image (10).png │ │ ├── image (11).png │ │ ├── image (2) (1).png │ │ ├── image (2).png │ │ ├── image (3).png │ │ ├── image (4).png │ │ ├── image (5).png │ │ ├── image (6).png │ │ ├── image (7).png │ │ ├── image (8).png │ │ ├── image (9).png │ │ ├── image.png │ │ └── vf-dev-program.png ├── SUMMARY.md ├── add_to_backend.md ├── for-binding-developers │ ├── app_objects.md │ └── json_interface.md ├── guides │ ├── configuration │ │ ├── README.md │ │ ├── configure_sdk.md │ │ ├── endpoint-configuration.md │ │ ├── message_expiration.md │ │ └── retry_message.md │ ├── crypto │ │ ├── README.md │ │ └── mnemonics_and_keys.md │ ├── installation │ │ ├── README.md │ │ └── add_sdk_to_your_app.md │ ├── queries_and_subscriptions │ │ ├── README.md │ │ ├── aggregate_collection.md │ │ ├── data-pagination.md │ │ ├── how-to-work-with-net-module.md │ │ ├── query_collection.md │ │ ├── raw_query.md │ │ ├── subscribe_to_updates.md │ │ └── use-cases.md │ └── work_with_contracts │ │ ├── README.md │ │ ├── add_contract_to_your_app.md │ │ ├── custom_giver.md │ │ ├── decode_message.md │ │ ├── deploy.md │ │ ├── emulate_transaction.md │ │ ├── estimate_fees.md │ │ ├── external_signing.md │ │ ├── monitor-messages.md │ │ ├── run_abi_get_method.md │ │ ├── run_fift_get_method.md │ │ ├── run_onchain.md │ │ ├── trace-message-processing-with-remp.md │ │ ├── validate_address_convert_address.md │ │ └── work_with_events.md ├── quick_start.md └── reference │ ├── error_api.md │ ├── error_codes.md │ ├── rust-api │ ├── .lock │ ├── COPYRIGHT.txt │ ├── FiraSans-LICENSE.txt │ ├── FiraSans-Medium.woff │ ├── FiraSans-Medium.woff2 │ ├── FiraSans-Regular.woff │ ├── FiraSans-Regular.woff2 │ ├── LICENSE-APACHE.txt │ ├── LICENSE-MIT.txt │ ├── SourceCodePro-LICENSE.txt │ ├── SourceCodePro-Regular.woff │ ├── SourceCodePro-Semibold.woff │ ├── SourceSerifPro-Bold.ttf.woff │ ├── SourceSerifPro-It.ttf.woff │ ├── SourceSerifPro-LICENSE.md │ ├── SourceSerifPro-Regular.ttf.woff │ ├── ayu.css │ ├── brush.svg │ ├── crates.js │ ├── dark.css │ ├── down-arrow.svg │ ├── favicon-16x16.png │ ├── favicon-32x32.png │ ├── favicon.svg │ ├── implementors │ │ ├── api_info │ │ │ └── trait.ApiType.js │ │ ├── core │ │ │ ├── clone │ │ │ │ └── trait.Clone.js │ │ │ ├── cmp │ │ │ │ ├── trait.Eq.js │ │ │ │ └── trait.PartialEq.js │ │ │ ├── convert │ │ │ │ ├── trait.From.js │ │ │ │ └── trait.Into.js │ │ │ ├── default │ │ │ │ └── trait.Default.js │ │ │ ├── fmt │ │ │ │ ├── trait.Debug.js │ │ │ │ └── trait.Display.js │ │ │ └── marker │ │ │ │ ├── trait.Copy.js │ │ │ │ ├── trait.Freeze.js │ │ │ │ ├── trait.Send.js │ │ │ │ ├── trait.StructuralEq.js │ │ │ │ ├── trait.StructuralPartialEq.js │ │ │ │ ├── trait.Sync.js │ │ │ │ └── trait.Unpin.js │ │ ├── failure │ │ │ └── trait.Fail.js │ │ ├── num_traits │ │ │ └── cast │ │ │ │ └── trait.FromPrimitive.js │ │ ├── serde │ │ │ ├── de │ │ │ │ └── trait.Deserialize.js │ │ │ └── ser │ │ │ │ └── trait.Serialize.js │ │ └── std │ │ │ ├── error │ │ │ └── trait.Error.js │ │ │ └── panic │ │ │ ├── trait.RefUnwindSafe.js │ │ │ └── trait.UnwindSafe.js │ ├── light.css │ ├── main.js │ ├── normalize.css │ ├── noscript.css │ ├── rust-logo.png │ ├── rustdoc.css │ ├── search-index.js │ ├── settings.css │ ├── settings.html │ ├── settings.js │ ├── source-files.js │ ├── source-script.js │ ├── src │ │ └── ton_client │ │ │ ├── abi │ │ │ ├── decode_data.rs.html │ │ │ ├── decode_message.rs.html │ │ │ ├── encode_account.rs.html │ │ │ ├── encode_message.rs.html │ │ │ ├── errors.rs.html │ │ │ ├── internal.rs.html │ │ │ ├── mod.rs.html │ │ │ ├── signing.rs.html │ │ │ └── types.rs.html │ │ │ ├── boc │ │ │ ├── blockchain_config.rs.html │ │ │ ├── cache.rs.html │ │ │ ├── encode.rs.html │ │ │ ├── errors.rs.html │ │ │ ├── hash.rs.html │ │ │ ├── internal.rs.html │ │ │ ├── mod.rs.html │ │ │ ├── parse.rs.html │ │ │ └── tvc.rs.html │ │ │ ├── client │ │ │ ├── client.rs.html │ │ │ ├── client_env.rs.html │ │ │ ├── errors.rs.html │ │ │ ├── mod.rs.html │ │ │ └── std_client_env.rs.html │ │ │ ├── crypto │ │ │ ├── boxes.rs.html │ │ │ ├── encryption.rs.html │ │ │ ├── encscrypt.rs.html │ │ │ ├── errors.rs.html │ │ │ ├── hash.rs.html │ │ │ ├── hdkey.rs.html │ │ │ ├── internal.rs.html │ │ │ ├── keys.rs.html │ │ │ ├── math.rs.html │ │ │ ├── mnemonic.rs.html │ │ │ ├── mod.rs.html │ │ │ └── nacl.rs.html │ │ │ ├── debot │ │ │ ├── action.rs.html │ │ │ ├── activity.rs.html │ │ │ ├── base64_interface.rs.html │ │ │ ├── browser.rs.html │ │ │ ├── calltype.rs.html │ │ │ ├── context.rs.html │ │ │ ├── debot_abi.rs.html │ │ │ ├── dengine.rs.html │ │ │ ├── dinterface.rs.html │ │ │ ├── errors.rs.html │ │ │ ├── helpers.rs.html │ │ │ ├── hex_interface.rs.html │ │ │ ├── info.rs.html │ │ │ ├── json_interface.rs.html │ │ │ ├── mod.rs.html │ │ │ ├── msg_interface.rs.html │ │ │ ├── network_interface.rs.html │ │ │ ├── routines.rs.html │ │ │ ├── run_output.rs.html │ │ │ └── sdk_interface.rs.html │ │ │ ├── encoding.rs.html │ │ │ ├── error.rs.html │ │ │ ├── json_interface │ │ │ ├── crypto.rs.html │ │ │ ├── debot.rs.html │ │ │ ├── handlers.rs.html │ │ │ ├── interop.rs.html │ │ │ ├── mod.rs.html │ │ │ ├── modules.rs.html │ │ │ ├── net.rs.html │ │ │ ├── processing.rs.html │ │ │ ├── registrar.rs.html │ │ │ ├── request.rs.html │ │ │ ├── runtime.rs.html │ │ │ └── utils.rs.html │ │ │ ├── lib.rs.html │ │ │ ├── net │ │ │ ├── batch.rs.html │ │ │ ├── endpoint.rs.html │ │ │ ├── errors.rs.html │ │ │ ├── gql.rs.html │ │ │ ├── iterators │ │ │ │ ├── block.rs.html │ │ │ │ ├── block_iterator │ │ │ │ │ ├── branch.rs.html │ │ │ │ │ ├── filter.rs.html │ │ │ │ │ ├── mod.rs.html │ │ │ │ │ └── state.rs.html │ │ │ │ ├── mod.rs.html │ │ │ │ ├── transaction.rs.html │ │ │ │ └── transaction_iterator │ │ │ │ │ └── mod.rs.html │ │ │ ├── mod.rs.html │ │ │ ├── queries.rs.html │ │ │ ├── server_link.rs.html │ │ │ ├── subscriptions.rs.html │ │ │ ├── ton_gql.rs.html │ │ │ ├── transaction_tree.rs.html │ │ │ ├── types.rs.html │ │ │ └── websocket_link.rs.html │ │ │ ├── processing │ │ │ ├── blocks_walking.rs.html │ │ │ ├── errors.rs.html │ │ │ ├── fetching.rs.html │ │ │ ├── internal.rs.html │ │ │ ├── mod.rs.html │ │ │ ├── parsing.rs.html │ │ │ ├── process_message.rs.html │ │ │ ├── send_message.rs.html │ │ │ ├── types.rs.html │ │ │ └── wait_for_transaction.rs.html │ │ │ ├── tvm │ │ │ ├── call_tvm.rs.html │ │ │ ├── check_transaction.rs.html │ │ │ ├── errors.rs.html │ │ │ ├── mod.rs.html │ │ │ ├── run_get.rs.html │ │ │ ├── run_message.rs.html │ │ │ ├── stack.rs.html │ │ │ └── types.rs.html │ │ │ └── utils │ │ │ ├── calc_storage_fee.rs.html │ │ │ ├── compression.rs.html │ │ │ ├── conversion.rs.html │ │ │ ├── errors.rs.html │ │ │ └── mod.rs.html │ ├── storage.js │ ├── theme.js │ ├── ton_client │ │ ├── abi │ │ │ ├── decode_data │ │ │ │ ├── fn.decode_account_data.html │ │ │ │ ├── struct.ParamsOfDecodeAccountData.html │ │ │ │ └── struct.ResultOfDecodeData.html │ │ │ ├── decode_message │ │ │ │ ├── enum.MessageBodyType.html │ │ │ │ ├── fn.decode_message.html │ │ │ │ ├── fn.decode_message_body.html │ │ │ │ ├── struct.DecodedMessageBody.html │ │ │ │ ├── struct.ParamsOfDecodeMessage.html │ │ │ │ └── struct.ParamsOfDecodeMessageBody.html │ │ │ ├── encode_account │ │ │ │ ├── enum.StateInitSource.html │ │ │ │ ├── fn.encode_account.html │ │ │ │ ├── struct.ParamsOfEncodeAccount.html │ │ │ │ ├── struct.ResultOfEncodeAccount.html │ │ │ │ └── struct.StateInitParams.html │ │ │ ├── encode_message │ │ │ │ ├── fn.attach_signature.html │ │ │ │ ├── fn.attach_signature_to_message_body.html │ │ │ │ ├── fn.encode_internal_message.html │ │ │ │ ├── fn.encode_message.html │ │ │ │ ├── fn.encode_message_body.html │ │ │ │ ├── struct.CallSet.html │ │ │ │ ├── struct.DeploySet.html │ │ │ │ ├── struct.ParamsOfAttachSignature.html │ │ │ │ ├── struct.ParamsOfAttachSignatureToMessageBody.html │ │ │ │ ├── struct.ParamsOfEncodeInternalMessage.html │ │ │ │ ├── struct.ParamsOfEncodeMessage.html │ │ │ │ ├── struct.ParamsOfEncodeMessageBody.html │ │ │ │ ├── struct.ResultOfAttachSignature.html │ │ │ │ ├── struct.ResultOfAttachSignatureToMessageBody.html │ │ │ │ ├── struct.ResultOfEncodeInternalMessage.html │ │ │ │ ├── struct.ResultOfEncodeMessage.html │ │ │ │ └── struct.ResultOfEncodeMessageBody.html │ │ │ ├── enum.Abi.html │ │ │ ├── enum.ErrorCode.html │ │ │ ├── enum.MessageBodyType.html │ │ │ ├── enum.MessageSource.html │ │ │ ├── enum.Signer.html │ │ │ ├── enum.StateInitSource.html │ │ │ ├── errors │ │ │ │ ├── enum.ErrorCode.html │ │ │ │ └── struct.Error.html │ │ │ ├── fn.attach_signature.html │ │ │ ├── fn.attach_signature_to_message_body.html │ │ │ ├── fn.decode_account_data.html │ │ │ ├── fn.decode_message.html │ │ │ ├── fn.decode_message_body.html │ │ │ ├── fn.default_message_expiration_timeout.html │ │ │ ├── fn.default_message_expiration_timeout_grow_factor.html │ │ │ ├── fn.default_workchain.html │ │ │ ├── fn.encode_account.html │ │ │ ├── fn.encode_internal_message.html │ │ │ ├── fn.encode_message.html │ │ │ ├── fn.encode_message_body.html │ │ │ ├── index.html │ │ │ ├── sidebar-items.js │ │ │ ├── signing │ │ │ │ └── enum.Signer.html │ │ │ ├── struct.AbiConfig.html │ │ │ ├── struct.AbiContract.html │ │ │ ├── struct.AbiData.html │ │ │ ├── struct.AbiEvent.html │ │ │ ├── struct.AbiFunction.html │ │ │ ├── struct.AbiHandle.html │ │ │ ├── struct.AbiParam.html │ │ │ ├── struct.CallSet.html │ │ │ ├── struct.DecodedMessageBody.html │ │ │ ├── struct.DeploySet.html │ │ │ ├── struct.Error.html │ │ │ ├── struct.FunctionHeader.html │ │ │ ├── struct.ParamsOfAttachSignature.html │ │ │ ├── struct.ParamsOfAttachSignatureToMessageBody.html │ │ │ ├── struct.ParamsOfDecodeAccountData.html │ │ │ ├── struct.ParamsOfDecodeMessage.html │ │ │ ├── struct.ParamsOfDecodeMessageBody.html │ │ │ ├── struct.ParamsOfEncodeAccount.html │ │ │ ├── struct.ParamsOfEncodeInternalMessage.html │ │ │ ├── struct.ParamsOfEncodeMessage.html │ │ │ ├── struct.ParamsOfEncodeMessageBody.html │ │ │ ├── struct.ResultOfAttachSignature.html │ │ │ ├── struct.ResultOfAttachSignatureToMessageBody.html │ │ │ ├── struct.ResultOfDecodeData.html │ │ │ ├── struct.ResultOfEncodeAccount.html │ │ │ ├── struct.ResultOfEncodeInternalMessage.html │ │ │ ├── struct.ResultOfEncodeMessage.html │ │ │ ├── struct.ResultOfEncodeMessageBody.html │ │ │ ├── struct.StateInitParams.html │ │ │ └── types │ │ │ │ ├── enum.Abi.html │ │ │ │ ├── enum.MessageSource.html │ │ │ │ ├── struct.AbiContract.html │ │ │ │ ├── struct.AbiData.html │ │ │ │ ├── struct.AbiEvent.html │ │ │ │ ├── struct.AbiFunction.html │ │ │ │ ├── struct.AbiHandle.html │ │ │ │ ├── struct.AbiParam.html │ │ │ │ └── struct.FunctionHeader.html │ │ ├── all.html │ │ ├── boc │ │ │ ├── blockchain_config │ │ │ │ ├── fn.get_blockchain_config.html │ │ │ │ ├── struct.ParamsOfGetBlockchainConfig.html │ │ │ │ └── struct.ResultOfGetBlockchainConfig.html │ │ │ ├── cache │ │ │ │ ├── enum.BocCacheType.html │ │ │ │ ├── fn.cache_get.html │ │ │ │ ├── fn.cache_set.html │ │ │ │ ├── fn.cache_unpin.html │ │ │ │ ├── struct.ParamsOfBocCacheGet.html │ │ │ │ ├── struct.ParamsOfBocCacheSet.html │ │ │ │ ├── struct.ParamsOfBocCacheUnpin.html │ │ │ │ ├── struct.ResultOfBocCacheGet.html │ │ │ │ └── struct.ResultOfBocCacheSet.html │ │ │ ├── encode │ │ │ │ ├── enum.BuilderOp.html │ │ │ │ ├── fn.encode_boc.html │ │ │ │ ├── struct.ParamsOfEncodeBoc.html │ │ │ │ └── struct.ResultOfEncodeBoc.html │ │ │ ├── enum.BocCacheType.html │ │ │ ├── enum.BuilderOp.html │ │ │ ├── enum.ErrorCode.html │ │ │ ├── errors │ │ │ │ ├── enum.ErrorCode.html │ │ │ │ └── struct.Error.html │ │ │ ├── fn.cache_get.html │ │ │ ├── fn.cache_set.html │ │ │ ├── fn.cache_unpin.html │ │ │ ├── fn.default_cache_max_size.html │ │ │ ├── fn.encode_boc.html │ │ │ ├── fn.get_blockchain_config.html │ │ │ ├── fn.get_boc_hash.html │ │ │ ├── fn.get_code_from_tvc.html │ │ │ ├── fn.parse_account.html │ │ │ ├── fn.parse_block.html │ │ │ ├── fn.parse_message.html │ │ │ ├── fn.parse_shardstate.html │ │ │ ├── fn.parse_transaction.html │ │ │ ├── fn.required_boc.html │ │ │ ├── fn.source_boc.html │ │ │ ├── hash │ │ │ │ ├── fn.get_boc_hash.html │ │ │ │ ├── struct.ParamsOfGetBocHash.html │ │ │ │ └── struct.ResultOfGetBocHash.html │ │ │ ├── index.html │ │ │ ├── parse │ │ │ │ ├── fn.parse_account.html │ │ │ │ ├── fn.parse_block.html │ │ │ │ ├── fn.parse_message.html │ │ │ │ ├── fn.parse_shardstate.html │ │ │ │ ├── fn.parse_transaction.html │ │ │ │ ├── fn.required_boc.html │ │ │ │ ├── fn.source_boc.html │ │ │ │ ├── struct.ParamsOfParse.html │ │ │ │ ├── struct.ParamsOfParseShardstate.html │ │ │ │ └── struct.ResultOfParse.html │ │ │ ├── sidebar-items.js │ │ │ ├── struct.BocConfig.html │ │ │ ├── struct.Error.html │ │ │ ├── struct.ParamsOfBocCacheGet.html │ │ │ ├── struct.ParamsOfBocCacheSet.html │ │ │ ├── struct.ParamsOfBocCacheUnpin.html │ │ │ ├── struct.ParamsOfEncodeBoc.html │ │ │ ├── struct.ParamsOfGetBlockchainConfig.html │ │ │ ├── struct.ParamsOfGetBocHash.html │ │ │ ├── struct.ParamsOfGetCodeFromTvc.html │ │ │ ├── struct.ParamsOfParse.html │ │ │ ├── struct.ParamsOfParseShardstate.html │ │ │ ├── struct.ResultOfBocCacheGet.html │ │ │ ├── struct.ResultOfBocCacheSet.html │ │ │ ├── struct.ResultOfEncodeBoc.html │ │ │ ├── struct.ResultOfGetBlockchainConfig.html │ │ │ ├── struct.ResultOfGetBocHash.html │ │ │ ├── struct.ResultOfGetCodeFromTvc.html │ │ │ ├── struct.ResultOfParse.html │ │ │ └── tvc │ │ │ │ ├── fn.get_code_from_tvc.html │ │ │ │ ├── struct.ParamsOfGetCodeFromTvc.html │ │ │ │ └── struct.ResultOfGetCodeFromTvc.html │ │ ├── client │ │ │ ├── client │ │ │ │ ├── struct.ClientConfig.html │ │ │ │ └── struct.ClientContext.html │ │ │ ├── enum.AppRequestResult.html │ │ │ ├── enum.ErrorCode.html │ │ │ ├── errors │ │ │ │ ├── enum.ErrorCode.html │ │ │ │ └── struct.Error.html │ │ │ ├── fn.build_info.html │ │ │ ├── fn.build_info_api.html │ │ │ ├── fn.core_version.html │ │ │ ├── fn.get_api_reference.html │ │ │ ├── fn.get_api_reference_api.html │ │ │ ├── fn.resolve_app_request.html │ │ │ ├── fn.resolve_app_request_api.html │ │ │ ├── fn.version.html │ │ │ ├── fn.version_api.html │ │ │ ├── index.html │ │ │ ├── sidebar-items.js │ │ │ ├── struct.BuildInfoDependency.html │ │ │ ├── struct.ClientConfig.html │ │ │ ├── struct.ClientContext.html │ │ │ ├── struct.Error.html │ │ │ ├── struct.ParamsOfAppRequest.html │ │ │ ├── struct.ParamsOfResolveAppRequest.html │ │ │ ├── struct.ResultOfBuildInfo.html │ │ │ ├── struct.ResultOfGetApiReference.html │ │ │ └── struct.ResultOfVersion.html │ │ ├── crypto │ │ │ ├── boxes │ │ │ │ ├── fn.encryption_box_decrypt.html │ │ │ │ ├── fn.encryption_box_encrypt.html │ │ │ │ ├── fn.encryption_box_get_info.html │ │ │ │ ├── fn.get_signing_box.html │ │ │ │ ├── fn.register_encryption_box.html │ │ │ │ ├── fn.register_signing_box.html │ │ │ │ ├── fn.remove_encryption_box.html │ │ │ │ ├── fn.remove_signing_box.html │ │ │ │ ├── fn.signing_box_get_public_key.html │ │ │ │ ├── fn.signing_box_sign.html │ │ │ │ ├── struct.EncryptionBoxHandle.html │ │ │ │ ├── struct.EncryptionBoxInfo.html │ │ │ │ ├── struct.ParamsOfEncryptionBoxDecrypt.html │ │ │ │ ├── struct.ParamsOfEncryptionBoxEncrypt.html │ │ │ │ ├── struct.ParamsOfEncryptionBoxGetInfo.html │ │ │ │ ├── struct.ParamsOfSigningBoxSign.html │ │ │ │ ├── struct.RegisteredEncryptionBox.html │ │ │ │ ├── struct.RegisteredSigningBox.html │ │ │ │ ├── struct.ResultOfEncryptionBoxDecrypt.html │ │ │ │ ├── struct.ResultOfEncryptionBoxEncrypt.html │ │ │ │ ├── struct.ResultOfEncryptionBoxGetInfo.html │ │ │ │ ├── struct.ResultOfSigningBoxGetPublicKey.html │ │ │ │ ├── struct.ResultOfSigningBoxSign.html │ │ │ │ ├── struct.SigningBoxHandle.html │ │ │ │ └── trait.SigningBox.html │ │ │ ├── encryption │ │ │ │ ├── fn.chacha20.html │ │ │ │ ├── struct.ParamsOfChaCha20.html │ │ │ │ └── struct.ResultOfChaCha20.html │ │ │ ├── encscrypt │ │ │ │ ├── fn.scrypt.html │ │ │ │ ├── struct.ParamsOfScrypt.html │ │ │ │ └── struct.ResultOfScrypt.html │ │ │ ├── enum.ErrorCode.html │ │ │ ├── errors │ │ │ │ ├── enum.ErrorCode.html │ │ │ │ └── struct.Error.html │ │ │ ├── fn.chacha20.html │ │ │ ├── fn.convert_public_key_to_ton_safe_format.html │ │ │ ├── fn.default_hdkey_compliant.html │ │ │ ├── fn.default_hdkey_derivation_path.html │ │ │ ├── fn.default_mnemonic_dictionary.html │ │ │ ├── fn.default_mnemonic_word_count.html │ │ │ ├── fn.encryption_box_decrypt.html │ │ │ ├── fn.encryption_box_encrypt.html │ │ │ ├── fn.encryption_box_get_info.html │ │ │ ├── fn.factorize.html │ │ │ ├── fn.generate_random_bytes.html │ │ │ ├── fn.generate_random_sign_keys.html │ │ │ ├── fn.get_signing_box.html │ │ │ ├── fn.hdkey_derive_from_xprv.html │ │ │ ├── fn.hdkey_derive_from_xprv_path.html │ │ │ ├── fn.hdkey_public_from_xprv.html │ │ │ ├── fn.hdkey_secret_from_xprv.html │ │ │ ├── fn.hdkey_xprv_from_mnemonic.html │ │ │ ├── fn.mnemonic_derive_sign_keys.html │ │ │ ├── fn.mnemonic_from_entropy.html │ │ │ ├── fn.mnemonic_from_random.html │ │ │ ├── fn.mnemonic_verify.html │ │ │ ├── fn.mnemonic_words.html │ │ │ ├── fn.modular_power.html │ │ │ ├── fn.nacl_box.html │ │ │ ├── fn.nacl_box_keypair.html │ │ │ ├── fn.nacl_box_keypair_from_secret_key.html │ │ │ ├── fn.nacl_box_open.html │ │ │ ├── fn.nacl_secret_box.html │ │ │ ├── fn.nacl_secret_box_open.html │ │ │ ├── fn.nacl_sign.html │ │ │ ├── fn.nacl_sign_detached.html │ │ │ ├── fn.nacl_sign_detached_verify.html │ │ │ ├── fn.nacl_sign_keypair_from_secret_key.html │ │ │ ├── fn.nacl_sign_open.html │ │ │ ├── fn.register_encryption_box.html │ │ │ ├── fn.register_signing_box.html │ │ │ ├── fn.remove_encryption_box.html │ │ │ ├── fn.remove_signing_box.html │ │ │ ├── fn.scrypt.html │ │ │ ├── fn.sha256.html │ │ │ ├── fn.sha512.html │ │ │ ├── fn.sign.html │ │ │ ├── fn.signing_box_get_public_key.html │ │ │ ├── fn.signing_box_sign.html │ │ │ ├── fn.ton_crc16.html │ │ │ ├── fn.verify_signature.html │ │ │ ├── hash │ │ │ │ ├── fn.sha256.html │ │ │ │ ├── fn.sha512.html │ │ │ │ ├── struct.ParamsOfHash.html │ │ │ │ └── struct.ResultOfHash.html │ │ │ ├── hdkey │ │ │ │ ├── fn.hdkey_derive_from_xprv.html │ │ │ │ ├── fn.hdkey_derive_from_xprv_path.html │ │ │ │ ├── fn.hdkey_public_from_xprv.html │ │ │ │ ├── fn.hdkey_secret_from_xprv.html │ │ │ │ ├── fn.hdkey_xprv_from_mnemonic.html │ │ │ │ ├── struct.ParamsOfHDKeyDeriveFromXPrv.html │ │ │ │ ├── struct.ParamsOfHDKeyDeriveFromXPrvPath.html │ │ │ │ ├── struct.ParamsOfHDKeyPublicFromXPrv.html │ │ │ │ ├── struct.ParamsOfHDKeySecretFromXPrv.html │ │ │ │ ├── struct.ParamsOfHDKeyXPrvFromMnemonic.html │ │ │ │ ├── struct.ResultOfHDKeyDeriveFromXPrv.html │ │ │ │ ├── struct.ResultOfHDKeyDeriveFromXPrvPath.html │ │ │ │ ├── struct.ResultOfHDKeyPublicFromXPrv.html │ │ │ │ ├── struct.ResultOfHDKeySecretFromXPrv.html │ │ │ │ └── struct.ResultOfHDKeyXPrvFromMnemonic.html │ │ │ ├── index.html │ │ │ ├── keys │ │ │ │ ├── fn.convert_public_key_to_ton_safe_format.html │ │ │ │ ├── fn.generate_random_sign_keys.html │ │ │ │ ├── fn.sign.html │ │ │ │ ├── fn.verify_signature.html │ │ │ │ ├── struct.KeyPair.html │ │ │ │ ├── struct.ParamsOfConvertPublicKeyToTonSafeFormat.html │ │ │ │ ├── struct.ParamsOfSign.html │ │ │ │ ├── struct.ParamsOfVerifySignature.html │ │ │ │ ├── struct.ResultOfConvertPublicKeyToTonSafeFormat.html │ │ │ │ ├── struct.ResultOfSign.html │ │ │ │ └── struct.ResultOfVerifySignature.html │ │ │ ├── math │ │ │ │ ├── fn.factorize.html │ │ │ │ ├── fn.generate_random_bytes.html │ │ │ │ ├── fn.modular_power.html │ │ │ │ ├── fn.ton_crc16.html │ │ │ │ ├── struct.ParamsOfFactorize.html │ │ │ │ ├── struct.ParamsOfGenerateRandomBytes.html │ │ │ │ ├── struct.ParamsOfModularPower.html │ │ │ │ ├── struct.ParamsOfTonCrc16.html │ │ │ │ ├── struct.ResultOfFactorize.html │ │ │ │ ├── struct.ResultOfGenerateRandomBytes.html │ │ │ │ ├── struct.ResultOfModularPower.html │ │ │ │ └── struct.ResultOfTonCrc16.html │ │ │ ├── mnemonic │ │ │ │ ├── fn.mnemonic_derive_sign_keys.html │ │ │ │ ├── fn.mnemonic_from_entropy.html │ │ │ │ ├── fn.mnemonic_from_random.html │ │ │ │ ├── fn.mnemonic_verify.html │ │ │ │ ├── fn.mnemonic_words.html │ │ │ │ ├── struct.ParamsOfMnemonicDeriveSignKeys.html │ │ │ │ ├── struct.ParamsOfMnemonicFromEntropy.html │ │ │ │ ├── struct.ParamsOfMnemonicFromRandom.html │ │ │ │ ├── struct.ParamsOfMnemonicVerify.html │ │ │ │ ├── struct.ParamsOfMnemonicWords.html │ │ │ │ ├── struct.ResultOfMnemonicFromEntropy.html │ │ │ │ ├── struct.ResultOfMnemonicFromRandom.html │ │ │ │ ├── struct.ResultOfMnemonicVerify.html │ │ │ │ └── struct.ResultOfMnemonicWords.html │ │ │ ├── nacl │ │ │ │ ├── fn.nacl_box.html │ │ │ │ ├── fn.nacl_box_keypair.html │ │ │ │ ├── fn.nacl_box_keypair_from_secret_key.html │ │ │ │ ├── fn.nacl_box_open.html │ │ │ │ ├── fn.nacl_secret_box.html │ │ │ │ ├── fn.nacl_secret_box_open.html │ │ │ │ ├── fn.nacl_sign.html │ │ │ │ ├── fn.nacl_sign_detached.html │ │ │ │ ├── fn.nacl_sign_detached_verify.html │ │ │ │ ├── fn.nacl_sign_keypair_from_secret_key.html │ │ │ │ ├── fn.nacl_sign_open.html │ │ │ │ ├── struct.ParamsOfNaclBox.html │ │ │ │ ├── struct.ParamsOfNaclBoxKeyPairFromSecret.html │ │ │ │ ├── struct.ParamsOfNaclBoxOpen.html │ │ │ │ ├── struct.ParamsOfNaclSecretBox.html │ │ │ │ ├── struct.ParamsOfNaclSecretBoxOpen.html │ │ │ │ ├── struct.ParamsOfNaclSign.html │ │ │ │ ├── struct.ParamsOfNaclSignDetached.html │ │ │ │ ├── struct.ParamsOfNaclSignDetachedVerify.html │ │ │ │ ├── struct.ParamsOfNaclSignKeyPairFromSecret.html │ │ │ │ ├── struct.ParamsOfNaclSignOpen.html │ │ │ │ ├── struct.ResultOfNaclBox.html │ │ │ │ ├── struct.ResultOfNaclBoxOpen.html │ │ │ │ ├── struct.ResultOfNaclSign.html │ │ │ │ ├── struct.ResultOfNaclSignDetached.html │ │ │ │ ├── struct.ResultOfNaclSignDetachedVerify.html │ │ │ │ └── struct.ResultOfNaclSignOpen.html │ │ │ ├── sidebar-items.js │ │ │ ├── struct.CryptoConfig.html │ │ │ ├── struct.EncryptionBoxHandle.html │ │ │ ├── struct.EncryptionBoxInfo.html │ │ │ ├── struct.Error.html │ │ │ ├── struct.KeyPair.html │ │ │ ├── struct.ParamsOfChaCha20.html │ │ │ ├── struct.ParamsOfConvertPublicKeyToTonSafeFormat.html │ │ │ ├── struct.ParamsOfEncryptionBoxDecrypt.html │ │ │ ├── struct.ParamsOfEncryptionBoxEncrypt.html │ │ │ ├── struct.ParamsOfEncryptionBoxGetInfo.html │ │ │ ├── struct.ParamsOfFactorize.html │ │ │ ├── struct.ParamsOfGenerateRandomBytes.html │ │ │ ├── struct.ParamsOfHDKeyDeriveFromXPrv.html │ │ │ ├── struct.ParamsOfHDKeyDeriveFromXPrvPath.html │ │ │ ├── struct.ParamsOfHDKeyPublicFromXPrv.html │ │ │ ├── struct.ParamsOfHDKeySecretFromXPrv.html │ │ │ ├── struct.ParamsOfHDKeyXPrvFromMnemonic.html │ │ │ ├── struct.ParamsOfHash.html │ │ │ ├── struct.ParamsOfMnemonicDeriveSignKeys.html │ │ │ ├── struct.ParamsOfMnemonicFromEntropy.html │ │ │ ├── struct.ParamsOfMnemonicFromRandom.html │ │ │ ├── struct.ParamsOfMnemonicVerify.html │ │ │ ├── struct.ParamsOfMnemonicWords.html │ │ │ ├── struct.ParamsOfModularPower.html │ │ │ ├── struct.ParamsOfNaclBox.html │ │ │ ├── struct.ParamsOfNaclBoxKeyPairFromSecret.html │ │ │ ├── struct.ParamsOfNaclBoxOpen.html │ │ │ ├── struct.ParamsOfNaclSecretBox.html │ │ │ ├── struct.ParamsOfNaclSecretBoxOpen.html │ │ │ ├── struct.ParamsOfNaclSign.html │ │ │ ├── struct.ParamsOfNaclSignDetached.html │ │ │ ├── struct.ParamsOfNaclSignDetachedVerify.html │ │ │ ├── struct.ParamsOfNaclSignKeyPairFromSecret.html │ │ │ ├── struct.ParamsOfNaclSignOpen.html │ │ │ ├── struct.ParamsOfScrypt.html │ │ │ ├── struct.ParamsOfSign.html │ │ │ ├── struct.ParamsOfSigningBoxSign.html │ │ │ ├── struct.ParamsOfTonCrc16.html │ │ │ ├── struct.ParamsOfVerifySignature.html │ │ │ ├── struct.RegisteredEncryptionBox.html │ │ │ ├── struct.RegisteredSigningBox.html │ │ │ ├── struct.ResultOfChaCha20.html │ │ │ ├── struct.ResultOfConvertPublicKeyToTonSafeFormat.html │ │ │ ├── struct.ResultOfEncryptionBoxDecrypt.html │ │ │ ├── struct.ResultOfEncryptionBoxEncrypt.html │ │ │ ├── struct.ResultOfEncryptionBoxGetInfo.html │ │ │ ├── struct.ResultOfFactorize.html │ │ │ ├── struct.ResultOfGenerateRandomBytes.html │ │ │ ├── struct.ResultOfHDKeyDeriveFromXPrv.html │ │ │ ├── struct.ResultOfHDKeyDeriveFromXPrvPath.html │ │ │ ├── struct.ResultOfHDKeyPublicFromXPrv.html │ │ │ ├── struct.ResultOfHDKeySecretFromXPrv.html │ │ │ ├── struct.ResultOfHDKeyXPrvFromMnemonic.html │ │ │ ├── struct.ResultOfHash.html │ │ │ ├── struct.ResultOfMnemonicFromEntropy.html │ │ │ ├── struct.ResultOfMnemonicFromRandom.html │ │ │ ├── struct.ResultOfMnemonicVerify.html │ │ │ ├── struct.ResultOfMnemonicWords.html │ │ │ ├── struct.ResultOfModularPower.html │ │ │ ├── struct.ResultOfNaclBox.html │ │ │ ├── struct.ResultOfNaclBoxOpen.html │ │ │ ├── struct.ResultOfNaclSign.html │ │ │ ├── struct.ResultOfNaclSignDetached.html │ │ │ ├── struct.ResultOfNaclSignDetachedVerify.html │ │ │ ├── struct.ResultOfNaclSignOpen.html │ │ │ ├── struct.ResultOfScrypt.html │ │ │ ├── struct.ResultOfSign.html │ │ │ ├── struct.ResultOfSigningBoxGetPublicKey.html │ │ │ ├── struct.ResultOfSigningBoxSign.html │ │ │ ├── struct.ResultOfTonCrc16.html │ │ │ ├── struct.ResultOfVerifySignature.html │ │ │ ├── struct.SigningBoxHandle.html │ │ │ └── trait.SigningBox.html │ │ ├── debot │ │ │ ├── action │ │ │ │ └── struct.DAction.html │ │ │ ├── activity │ │ │ │ ├── enum.DebotActivity.html │ │ │ │ └── struct.Spending.html │ │ │ ├── browser │ │ │ │ └── trait.BrowserCallbacks.html │ │ │ ├── constant.DEBOT_WC.html │ │ │ ├── constant.STATE_EXIT.html │ │ │ ├── constant.STATE_ZERO.html │ │ │ ├── context │ │ │ │ ├── constant.STATE_EXIT.html │ │ │ │ ├── constant.STATE_ZERO.html │ │ │ │ └── struct.DContext.html │ │ │ ├── dengine │ │ │ │ └── struct.DEngine.html │ │ │ ├── dinterface │ │ │ │ ├── trait.DebotInterface.html │ │ │ │ ├── trait.DebotInterfaceExecutor.html │ │ │ │ └── type.InterfaceResult.html │ │ │ ├── enum.DebotActivity.html │ │ │ ├── enum.ErrorCode.html │ │ │ ├── errors │ │ │ │ ├── enum.ErrorCode.html │ │ │ │ └── struct.Error.html │ │ │ ├── fn.execute.html │ │ │ ├── fn.execute_api.html │ │ │ ├── fn.fetch.html │ │ │ ├── fn.fetch_api.html │ │ │ ├── fn.init.html │ │ │ ├── fn.remove.html │ │ │ ├── fn.remove_api.html │ │ │ ├── fn.send.html │ │ │ ├── fn.send_api.html │ │ │ ├── fn.start.html │ │ │ ├── fn.start_api.html │ │ │ ├── index.html │ │ │ ├── sidebar-items.js │ │ │ ├── struct.DAction.html │ │ │ ├── struct.DContext.html │ │ │ ├── struct.DEngine.html │ │ │ ├── struct.DebotAction.html │ │ │ ├── struct.DebotHandle.html │ │ │ ├── struct.DebotInfo.html │ │ │ ├── struct.Error.html │ │ │ ├── struct.ParamsOfExecute.html │ │ │ ├── struct.ParamsOfFetch.html │ │ │ ├── struct.ParamsOfInit.html │ │ │ ├── struct.ParamsOfRemove.html │ │ │ ├── struct.ParamsOfSend.html │ │ │ ├── struct.ParamsOfStart.html │ │ │ ├── struct.RegisteredDebot.html │ │ │ ├── struct.ResultOfFetch.html │ │ │ ├── struct.Spending.html │ │ │ ├── trait.BrowserCallbacks.html │ │ │ ├── trait.DebotInterface.html │ │ │ ├── trait.DebotInterfaceExecutor.html │ │ │ └── type.InterfaceResult.html │ │ ├── encoding │ │ │ ├── enum.AccountAddressType.html │ │ │ ├── fn.decode_abi_bigint.html │ │ │ ├── fn.decode_abi_number.html │ │ │ ├── index.html │ │ │ ├── sidebar-items.js │ │ │ └── struct.Base64AddressParams.html │ │ ├── enum.ResponseType.html │ │ ├── error │ │ │ ├── index.html │ │ │ ├── sidebar-items.js │ │ │ ├── struct.ClientError.html │ │ │ └── type.ClientResult.html │ │ ├── fn.create_context.html │ │ ├── fn.destroy_context.html │ │ ├── fn.request.html │ │ ├── fn.request_ptr.html │ │ ├── fn.request_sync.html │ │ ├── fn.tc_create_context.html │ │ ├── fn.tc_destroy_context.html │ │ ├── fn.tc_destroy_string.html │ │ ├── fn.tc_read_string.html │ │ ├── fn.tc_request.html │ │ ├── fn.tc_request_ptr.html │ │ ├── fn.tc_request_sync.html │ │ ├── index.html │ │ ├── json_interface │ │ │ ├── index.html │ │ │ ├── interop │ │ │ │ ├── enum.ResponseType.html │ │ │ │ ├── fn.create_context.html │ │ │ │ ├── fn.destroy_context.html │ │ │ │ ├── fn.request.html │ │ │ │ ├── fn.request_ptr.html │ │ │ │ ├── fn.request_sync.html │ │ │ │ ├── fn.tc_create_context.html │ │ │ │ ├── fn.tc_destroy_context.html │ │ │ │ ├── fn.tc_destroy_string.html │ │ │ │ ├── fn.tc_read_string.html │ │ │ │ ├── fn.tc_request.html │ │ │ │ ├── fn.tc_request_ptr.html │ │ │ │ ├── fn.tc_request_sync.html │ │ │ │ ├── struct.StringData.html │ │ │ │ ├── type.CResponseHandler.html │ │ │ │ ├── type.CResponseHandlerPtr.html │ │ │ │ ├── type.ContextHandle.html │ │ │ │ ├── type.ResponseHandler.html │ │ │ │ └── type.ResponseHandlerPtr.html │ │ │ └── sidebar-items.js │ │ ├── net │ │ │ ├── batch │ │ │ │ ├── fn.batch_query.html │ │ │ │ ├── struct.ParamsOfBatchQuery.html │ │ │ │ └── struct.ResultOfBatchQuery.html │ │ │ ├── constant.ACCOUNTS_COLLECTION.html │ │ │ ├── constant.BLOCKS_COLLECTION.html │ │ │ ├── constant.MESSAGES_COLLECTION.html │ │ │ ├── constant.TRANSACTIONS_COLLECTION.html │ │ │ ├── enum.AggregationFn.html │ │ │ ├── enum.ErrorCode.html │ │ │ ├── enum.GraphQLQueryEvent.html │ │ │ ├── enum.ParamsOfQueryOperation.html │ │ │ ├── enum.SortDirection.html │ │ │ ├── enum.SubscriptionResponseType.html │ │ │ ├── errors │ │ │ │ ├── enum.ErrorCode.html │ │ │ │ └── struct.Error.html │ │ │ ├── fn.aggregate_collection.html │ │ │ ├── fn.batch_query.html │ │ │ ├── fn.create_block_iterator.html │ │ │ ├── fn.create_transaction_iterator.html │ │ │ ├── fn.fetch_endpoints.html │ │ │ ├── fn.fetch_endpoints_api.html │ │ │ ├── fn.find_last_shard_block.html │ │ │ ├── fn.find_last_shard_block_api.html │ │ │ ├── fn.get_endpoints.html │ │ │ ├── fn.get_endpoints_api.html │ │ │ ├── fn.iterator_next.html │ │ │ ├── fn.query.html │ │ │ ├── fn.query_collection.html │ │ │ ├── fn.query_counterparties.html │ │ │ ├── fn.query_transaction_tree.html │ │ │ ├── fn.remove_iterator.html │ │ │ ├── fn.resume.html │ │ │ ├── fn.resume_api.html │ │ │ ├── fn.resume_block_iterator.html │ │ │ ├── fn.resume_transaction_iterator.html │ │ │ ├── fn.set_endpoints.html │ │ │ ├── fn.set_endpoints_api.html │ │ │ ├── fn.subscribe_collection.html │ │ │ ├── fn.suspend.html │ │ │ ├── fn.suspend_api.html │ │ │ ├── fn.unsubscribe.html │ │ │ ├── fn.wait_for_collection.html │ │ │ ├── index.html │ │ │ ├── iterators │ │ │ │ ├── block_iterator │ │ │ │ │ ├── fn.create_block_iterator.html │ │ │ │ │ ├── fn.resume_block_iterator.html │ │ │ │ │ ├── struct.ParamsOfCreateBlockIterator.html │ │ │ │ │ └── struct.ParamsOfResumeBlockIterator.html │ │ │ │ ├── fn.iterator_next.html │ │ │ │ ├── fn.remove_iterator.html │ │ │ │ ├── struct.ParamsOfIteratorNext.html │ │ │ │ ├── struct.RegisteredIterator.html │ │ │ │ ├── struct.ResultOfIteratorNext.html │ │ │ │ ├── trait.ChainIterator.html │ │ │ │ └── transaction_iterator │ │ │ │ │ ├── fn.create_transaction_iterator.html │ │ │ │ │ ├── fn.resume_transaction_iterator.html │ │ │ │ │ ├── struct.ParamsOfCreateTransactionIterator.html │ │ │ │ │ └── struct.ParamsOfResumeTransactionIterator.html │ │ │ ├── queries │ │ │ │ ├── fn.aggregate_collection.html │ │ │ │ ├── fn.query.html │ │ │ │ ├── fn.query_collection.html │ │ │ │ ├── fn.query_counterparties.html │ │ │ │ ├── fn.wait_for_collection.html │ │ │ │ ├── struct.ParamsOfQuery.html │ │ │ │ ├── struct.ParamsOfWaitForCollection.html │ │ │ │ ├── struct.ResultOfAggregateCollection.html │ │ │ │ ├── struct.ResultOfQuery.html │ │ │ │ ├── struct.ResultOfQueryCollection.html │ │ │ │ └── struct.ResultOfWaitForCollection.html │ │ │ ├── sidebar-items.js │ │ │ ├── struct.EndpointsSet.html │ │ │ ├── struct.Error.html │ │ │ ├── struct.FieldAggregation.html │ │ │ ├── struct.MessageNode.html │ │ │ ├── struct.NetworkConfig.html │ │ │ ├── struct.OrderBy.html │ │ │ ├── struct.ParamsOfAggregateCollection.html │ │ │ ├── struct.ParamsOfBatchQuery.html │ │ │ ├── struct.ParamsOfCreateBlockIterator.html │ │ │ ├── struct.ParamsOfCreateTransactionIterator.html │ │ │ ├── struct.ParamsOfFindLastShardBlock.html │ │ │ ├── struct.ParamsOfIteratorNext.html │ │ │ ├── struct.ParamsOfQuery.html │ │ │ ├── struct.ParamsOfQueryCollection.html │ │ │ ├── struct.ParamsOfQueryCounterparties.html │ │ │ ├── struct.ParamsOfQueryTransactionTree.html │ │ │ ├── struct.ParamsOfResumeBlockIterator.html │ │ │ ├── struct.ParamsOfResumeTransactionIterator.html │ │ │ ├── struct.ParamsOfSubscribeCollection.html │ │ │ ├── struct.ParamsOfWaitForCollection.html │ │ │ ├── struct.PostRequest.html │ │ │ ├── struct.RegisteredIterator.html │ │ │ ├── struct.ResultOfAggregateCollection.html │ │ │ ├── struct.ResultOfBatchQuery.html │ │ │ ├── struct.ResultOfFindLastShardBlock.html │ │ │ ├── struct.ResultOfGetEndpoints.html │ │ │ ├── struct.ResultOfIteratorNext.html │ │ │ ├── struct.ResultOfQuery.html │ │ │ ├── struct.ResultOfQueryCollection.html │ │ │ ├── struct.ResultOfQueryTransactionTree.html │ │ │ ├── struct.ResultOfSubscribeCollection.html │ │ │ ├── struct.ResultOfSubscription.html │ │ │ ├── struct.ResultOfWaitForCollection.html │ │ │ ├── struct.TransactionNode.html │ │ │ ├── subscriptions │ │ │ │ ├── enum.SubscriptionResponseType.html │ │ │ │ ├── fn.subscribe_collection.html │ │ │ │ ├── fn.unsubscribe.html │ │ │ │ ├── struct.ParamsOfSubscribeCollection.html │ │ │ │ ├── struct.ResultOfSubscribeCollection.html │ │ │ │ └── struct.ResultOfSubscription.html │ │ │ ├── ton_gql │ │ │ │ ├── enum.AggregationFn.html │ │ │ │ ├── enum.GraphQLQueryEvent.html │ │ │ │ ├── enum.ParamsOfQueryOperation.html │ │ │ │ ├── enum.SortDirection.html │ │ │ │ ├── struct.FieldAggregation.html │ │ │ │ ├── struct.OrderBy.html │ │ │ │ ├── struct.ParamsOfAggregateCollection.html │ │ │ │ ├── struct.ParamsOfQueryCollection.html │ │ │ │ ├── struct.ParamsOfQueryCounterparties.html │ │ │ │ └── struct.PostRequest.html │ │ │ ├── trait.ChainIterator.html │ │ │ ├── transaction_tree │ │ │ │ ├── fn.query_transaction_tree.html │ │ │ │ ├── struct.MessageNode.html │ │ │ │ ├── struct.ParamsOfQueryTransactionTree.html │ │ │ │ ├── struct.ResultOfQueryTransactionTree.html │ │ │ │ └── struct.TransactionNode.html │ │ │ └── types │ │ │ │ ├── constant.ACCOUNTS_COLLECTION.html │ │ │ │ ├── constant.BLOCKS_COLLECTION.html │ │ │ │ ├── constant.MESSAGES_COLLECTION.html │ │ │ │ ├── constant.TRANSACTIONS_COLLECTION.html │ │ │ │ └── struct.NetworkConfig.html │ │ ├── processing │ │ │ ├── enum.ErrorCode.html │ │ │ ├── enum.ProcessingEvent.html │ │ │ ├── enum.ProcessingResponseType.html │ │ │ ├── errors │ │ │ │ ├── enum.ErrorCode.html │ │ │ │ └── struct.Error.html │ │ │ ├── fn.process_message.html │ │ │ ├── fn.send_message.html │ │ │ ├── fn.wait_for_transaction.html │ │ │ ├── index.html │ │ │ ├── process_message │ │ │ │ ├── fn.process_message.html │ │ │ │ └── struct.ParamsOfProcessMessage.html │ │ │ ├── send_message │ │ │ │ ├── fn.send_message.html │ │ │ │ ├── struct.ParamsOfSendMessage.html │ │ │ │ └── struct.ResultOfSendMessage.html │ │ │ ├── sidebar-items.js │ │ │ ├── struct.DecodedOutput.html │ │ │ ├── struct.Error.html │ │ │ ├── struct.ParamsOfProcessMessage.html │ │ │ ├── struct.ParamsOfSendMessage.html │ │ │ ├── struct.ParamsOfWaitForTransaction.html │ │ │ ├── struct.ResultOfProcessMessage.html │ │ │ ├── struct.ResultOfSendMessage.html │ │ │ ├── types │ │ │ │ ├── enum.ProcessingEvent.html │ │ │ │ ├── enum.ProcessingResponseType.html │ │ │ │ ├── struct.DecodedOutput.html │ │ │ │ └── struct.ResultOfProcessMessage.html │ │ │ └── wait_for_transaction │ │ │ │ ├── fn.wait_for_transaction.html │ │ │ │ └── struct.ParamsOfWaitForTransaction.html │ │ ├── sidebar-items.js │ │ ├── struct.ClientConfig.html │ │ ├── struct.ClientContext.html │ │ ├── struct.StringData.html │ │ ├── tvm │ │ │ ├── enum.AccountForExecutor.html │ │ │ ├── enum.ErrorCode.html │ │ │ ├── enum.StdContractError.html │ │ │ ├── errors │ │ │ │ ├── enum.ErrorCode.html │ │ │ │ ├── enum.StdContractError.html │ │ │ │ └── struct.Error.html │ │ │ ├── fn.run_executor.html │ │ │ ├── fn.run_get.html │ │ │ ├── fn.run_tvm.html │ │ │ ├── index.html │ │ │ ├── run_get │ │ │ │ ├── fn.run_get.html │ │ │ │ ├── struct.ParamsOfRunGet.html │ │ │ │ └── struct.ResultOfRunGet.html │ │ │ ├── run_message │ │ │ │ ├── enum.AccountForExecutor.html │ │ │ │ ├── fn.run_executor.html │ │ │ │ ├── fn.run_tvm.html │ │ │ │ ├── struct.ParamsOfRunExecutor.html │ │ │ │ ├── struct.ParamsOfRunTvm.html │ │ │ │ ├── struct.ResultOfRunExecutor.html │ │ │ │ └── struct.ResultOfRunTvm.html │ │ │ ├── sidebar-items.js │ │ │ ├── struct.Error.html │ │ │ ├── struct.ExecutionOptions.html │ │ │ ├── struct.ParamsOfRunExecutor.html │ │ │ ├── struct.ParamsOfRunGet.html │ │ │ ├── struct.ParamsOfRunTvm.html │ │ │ ├── struct.ResultOfRunExecutor.html │ │ │ ├── struct.ResultOfRunGet.html │ │ │ ├── struct.ResultOfRunTvm.html │ │ │ ├── struct.TransactionFees.html │ │ │ └── types │ │ │ │ └── struct.ExecutionOptions.html │ │ ├── type.CResponseHandler.html │ │ ├── type.CResponseHandlerPtr.html │ │ ├── type.ContextHandle.html │ │ ├── type.ResponseHandler.html │ │ ├── type.ResponseHandlerPtr.html │ │ └── utils │ │ │ ├── calc_storage_fee │ │ │ ├── fn.calc_storage_fee.html │ │ │ ├── struct.ParamsOfCalcStorageFee.html │ │ │ └── struct.ResultOfCalcStorageFee.html │ │ │ ├── compression │ │ │ ├── fn.compress_zstd.html │ │ │ └── fn.decompress_zstd.html │ │ │ ├── conversion │ │ │ ├── enum.AddressStringFormat.html │ │ │ ├── fn.convert_address.html │ │ │ ├── fn.get_address_type.html │ │ │ ├── struct.ParamsOfConvertAddress.html │ │ │ ├── struct.ParamsOfGetAddressType.html │ │ │ ├── struct.ResultOfConvertAddress.html │ │ │ └── struct.ResultOfGetAddressType.html │ │ │ ├── enum.AddressStringFormat.html │ │ │ ├── enum.ErrorCode.html │ │ │ ├── errors │ │ │ ├── enum.ErrorCode.html │ │ │ └── struct.Error.html │ │ │ ├── fn.calc_storage_fee.html │ │ │ ├── fn.compress_zstd.html │ │ │ ├── fn.convert_address.html │ │ │ ├── fn.decompress_zstd.html │ │ │ ├── fn.get_address_type.html │ │ │ ├── index.html │ │ │ ├── sidebar-items.js │ │ │ ├── struct.Error.html │ │ │ ├── struct.ParamsOfCalcStorageFee.html │ │ │ ├── struct.ParamsOfConvertAddress.html │ │ │ ├── struct.ParamsOfGetAddressType.html │ │ │ ├── struct.ResultOfCalcStorageFee.html │ │ │ ├── struct.ResultOfConvertAddress.html │ │ │ └── struct.ResultOfGetAddressType.html │ └── wheel.svg │ └── types-and-methods │ ├── DEPRECATED.md │ ├── README.md │ ├── UNSTABLE.md │ ├── mod_abi.md │ ├── mod_boc.md │ ├── mod_client.md │ ├── mod_crypto.md │ ├── mod_debot.md │ ├── mod_net.md │ ├── mod_processing.md │ ├── mod_proofs.md │ ├── mod_tvm.md │ ├── mod_utils.md │ └── modules.md ├── ever_client ├── Cargo.toml ├── README.md ├── build-lib.js ├── build.js ├── build.rs ├── src │ ├── abi │ │ ├── decode_boc.rs │ │ ├── decode_data.rs │ │ ├── decode_message.rs │ │ ├── encode_account.rs │ │ ├── encode_boc.rs │ │ ├── encode_message.rs │ │ ├── errors.rs │ │ ├── function_id.rs │ │ ├── init_data.rs │ │ ├── internal.rs │ │ ├── mod.rs │ │ ├── signing.rs │ │ ├── tests.rs │ │ └── types.rs │ ├── boc │ │ ├── blockchain_config.rs │ │ ├── cache.rs │ │ ├── common.rs │ │ ├── encode.rs │ │ ├── encode_external_in_message.rs │ │ ├── errors.rs │ │ ├── internal.rs │ │ ├── mod.rs │ │ ├── parse.rs │ │ ├── reader │ │ │ ├── parser.rs │ │ │ └── query.rs │ │ ├── state_init.rs │ │ ├── test_data │ │ │ ├── account.boc │ │ │ ├── block.boc │ │ │ ├── block_config.boc │ │ │ ├── salt │ │ │ │ ├── mycode_sel_dict_nosalt.boc │ │ │ │ ├── mycode_sel_dict_salt.boc │ │ │ │ ├── mycode_sel_nodict_nosalt.boc │ │ │ │ ├── mycode_sel_nodict_salt.boc │ │ │ │ ├── new_sel_dict_nosalt.boc │ │ │ │ ├── new_sel_dict_salt.boc │ │ │ │ ├── new_sel_nodict_nosalt.boc │ │ │ │ ├── new_sel_nodict_salt.boc │ │ │ │ ├── old_cpp_sel_nosalt.boc │ │ │ │ ├── old_cpp_sel_salt.boc │ │ │ │ └── old_sol_sel.boc │ │ │ ├── state_init_lib.boc │ │ │ ├── zerostate.boc │ │ │ └── zerostate_config.boc │ │ ├── tests.rs │ │ └── tvc.rs │ ├── client │ │ ├── client.rs │ │ ├── client_env.rs │ │ ├── client_env_tests.rs │ │ ├── errors.rs │ │ ├── mod.rs │ │ ├── network_mock.rs │ │ ├── std_client_env.rs │ │ ├── storage.rs │ │ ├── tests.rs │ │ └── wasm_client_env.rs │ ├── crypto │ │ ├── boxes │ │ │ ├── crypto_box │ │ │ │ ├── derived_keys.rs │ │ │ │ ├── encryption.rs │ │ │ │ └── mod.rs │ │ │ ├── encryption_box │ │ │ │ ├── aes.rs │ │ │ │ ├── chacha20.rs │ │ │ │ ├── mod.rs │ │ │ │ ├── nacl_box.rs │ │ │ │ └── nacl_secret_box.rs │ │ │ ├── mod.rs │ │ │ └── signing_box.rs │ │ ├── encryption.rs │ │ ├── encscrypt.rs │ │ ├── errors.rs │ │ ├── hash.rs │ │ ├── hdkey.rs │ │ ├── internal.rs │ │ ├── keys.rs │ │ ├── math.rs │ │ ├── mnemonic.rs │ │ ├── mod.rs │ │ ├── nacl.rs │ │ ├── test_data │ │ │ ├── aes.iv.bin │ │ │ ├── aes.plaintext.bin │ │ │ ├── aes.plaintext.for.padding.bin │ │ │ ├── aes128.key.bin │ │ │ ├── aes256.key.bin │ │ │ ├── cbc-aes128.ciphertext.bin │ │ │ └── cbc-aes256.ciphertext.padded.bin │ │ └── tests.rs │ ├── debot │ │ ├── action.rs │ │ ├── activity.rs │ │ ├── base64_interface.rs │ │ ├── browser.rs │ │ ├── calltype.rs │ │ ├── context.rs │ │ ├── debot_abi.rs │ │ ├── dengine.rs │ │ ├── dinterface.rs │ │ ├── errors.rs │ │ ├── helpers.rs │ │ ├── hex_interface.rs │ │ ├── info.rs │ │ ├── json_interface.rs │ │ ├── json_lib_utils.rs │ │ ├── mod.rs │ │ ├── msg_interface.rs │ │ ├── network_interface.rs │ │ ├── query_interface.rs │ │ ├── routines.rs │ │ ├── run_output.rs │ │ ├── sdk_interface.rs │ │ ├── tests.rs │ │ └── tests_interfaces.rs │ ├── default_config.boc │ ├── encoding.rs │ ├── error.rs │ ├── json_interface │ │ ├── crypto.rs │ │ ├── debot.rs │ │ ├── handlers.rs │ │ ├── interop.rs │ │ ├── mod.rs │ │ ├── modules.rs │ │ ├── net.rs │ │ ├── processing.rs │ │ ├── registrar.rs │ │ ├── request.rs │ │ ├── runtime.rs │ │ ├── tests.rs │ │ └── utils.rs │ ├── lib.rs │ ├── net │ │ ├── batch.rs │ │ ├── endpoint.rs │ │ ├── errors.rs │ │ ├── gql.rs │ │ ├── iterators │ │ │ ├── block.rs │ │ │ ├── block_iterator │ │ │ │ ├── branch.rs │ │ │ │ ├── filter.rs │ │ │ │ ├── mod.rs │ │ │ │ └── state.rs │ │ │ ├── mod.rs │ │ │ ├── tests.rs │ │ │ ├── transaction.rs │ │ │ └── transaction_iterator │ │ │ │ └── mod.rs │ │ ├── mod.rs │ │ ├── network.rs │ │ ├── network_params.rs │ │ ├── queries.rs │ │ ├── server_link.rs │ │ ├── subscriptions.rs │ │ ├── tests.rs │ │ ├── ton_gql.rs │ │ ├── transaction_tree.rs │ │ ├── types.rs │ │ └── websocket_link.rs │ ├── processing │ │ ├── blocks_walking.rs │ │ ├── errors.rs │ │ ├── fetching.rs │ │ ├── internal.rs │ │ ├── message_monitor.rs │ │ ├── message_monitor_sdk_services.rs │ │ ├── mod.rs │ │ ├── parsing.rs │ │ ├── process_message.rs │ │ ├── remp.rs │ │ ├── send_message.rs │ │ ├── send_messages.rs │ │ ├── tests.rs │ │ ├── types.rs │ │ └── wait_for_transaction.rs │ ├── proofs │ │ ├── engine.rs │ │ ├── errors.rs │ │ ├── json.rs │ │ ├── mod.rs │ │ ├── tests │ │ │ ├── data │ │ │ │ ├── key_block.boc │ │ │ │ ├── schema.graphql │ │ │ │ ├── test_master_block_proof │ │ │ │ │ ├── key_proof__3082181 │ │ │ │ │ ├── proof__3082182 │ │ │ │ │ ├── proof__3082183 │ │ │ │ │ ├── proof__3082184 │ │ │ │ │ ├── proof__3082185 │ │ │ │ │ ├── proof__3082186 │ │ │ │ │ ├── proof__3082187 │ │ │ │ │ ├── proof__3082188 │ │ │ │ │ ├── proof__3082189 │ │ │ │ │ ├── proof__3082190 │ │ │ │ │ ├── proof__3082191 │ │ │ │ │ ├── proof__3082192 │ │ │ │ │ ├── proof__3082193 │ │ │ │ │ ├── proof__3082194 │ │ │ │ │ ├── proof__3082195 │ │ │ │ │ ├── proof__3082196 │ │ │ │ │ ├── proof__3082197 │ │ │ │ │ ├── proof__3082198 │ │ │ │ │ ├── proof__3082199 │ │ │ │ │ ├── proof__3082200 │ │ │ │ │ └── proof__3082201 │ │ │ │ └── test_master_block_proof_shuffle │ │ │ │ │ ├── key_proof__3236530 │ │ │ │ │ ├── proof__3236531 │ │ │ │ │ ├── proof__3236532 │ │ │ │ │ ├── proof__3236533 │ │ │ │ │ ├── proof__3236534 │ │ │ │ │ ├── proof__3236535 │ │ │ │ │ ├── proof__3236536 │ │ │ │ │ ├── proof__3236537 │ │ │ │ │ ├── proof__3236538 │ │ │ │ │ ├── proof__3236539 │ │ │ │ │ ├── proof__3236540 │ │ │ │ │ ├── proof__3236541 │ │ │ │ │ ├── proof__3236542 │ │ │ │ │ ├── proof__3236543 │ │ │ │ │ ├── proof__3236544 │ │ │ │ │ ├── proof__3236545 │ │ │ │ │ ├── proof__3236546 │ │ │ │ │ ├── proof__3236547 │ │ │ │ │ ├── proof__3236548 │ │ │ │ │ ├── proof__3236549 │ │ │ │ │ └── proof__3236550 │ │ │ └── mod.rs │ │ ├── trusted_key_blocks.bin │ │ └── validators.rs │ ├── tests │ │ ├── common.rs │ │ ├── contracts │ │ │ ├── abi_v1 │ │ │ │ ├── EventsOld.abi.json │ │ │ │ ├── EventsOld.tvc │ │ │ │ ├── Giver.abi.json │ │ │ │ ├── Giver.tvc │ │ │ │ ├── Hello.abi.json │ │ │ │ ├── Hello.tvc │ │ │ │ ├── LimitWallet.abi.json │ │ │ │ ├── LimitWallet.tvc │ │ │ │ ├── Piggy.abi.json │ │ │ │ ├── Piggy.tvc │ │ │ │ ├── Subscription.abi.json │ │ │ │ ├── Subscription.tvc │ │ │ │ ├── Wallet.abi.json │ │ │ │ └── Wallet.tvc │ │ │ ├── abi_v2 │ │ │ │ ├── CustomReplayProtection.abi.json │ │ │ │ ├── CustomReplayProtection.sol │ │ │ │ ├── CustomReplayProtection.tvc │ │ │ │ ├── Events.abi.json │ │ │ │ ├── Events.sol │ │ │ │ ├── Events.tvc │ │ │ │ ├── EventsOld.abi.json │ │ │ │ ├── EventsOld.tvc │ │ │ │ ├── Exception.abi.json │ │ │ │ ├── Exception.sol │ │ │ │ ├── Exception.tvc │ │ │ │ ├── GiverV2.abi.json │ │ │ │ ├── GiverV2.tvc │ │ │ │ ├── GiverV3.abi.json │ │ │ │ ├── GiverV3.tvc │ │ │ │ ├── Hello.abi.json │ │ │ │ ├── Hello.tvc │ │ │ │ ├── LimitWallet.abi.json │ │ │ │ ├── LimitWallet.tvc │ │ │ │ ├── MyCodeFail.abi.json │ │ │ │ ├── MyCodeFail.tvc │ │ │ │ ├── Piggy.abi.json │ │ │ │ ├── Piggy.tvc │ │ │ │ ├── PriceXchg.abi.json │ │ │ │ ├── Subscription.abi.json │ │ │ │ ├── Subscription.tvc │ │ │ │ ├── Wallet.abi.json │ │ │ │ ├── Wallet.tvc │ │ │ │ ├── helloDebot.abi.json │ │ │ │ ├── helloDebot.png │ │ │ │ ├── helloDebot.sol │ │ │ │ ├── helloDebot.tvc │ │ │ │ ├── t24_initdata.abi.json │ │ │ │ ├── t24_initdata.tvc │ │ │ │ ├── tda.abi.json │ │ │ │ ├── tda.tvc │ │ │ │ ├── tdb.abi.json │ │ │ │ ├── tdb.tvc │ │ │ │ ├── testDebot.abi.json │ │ │ │ ├── testDebot.tvc │ │ │ │ ├── testDebot10.abi.json │ │ │ │ ├── testDebot10.sol │ │ │ │ ├── testDebot10.tvc │ │ │ │ ├── testDebot11.abi.json │ │ │ │ ├── testDebot11.sol │ │ │ │ ├── testDebot11.tvc │ │ │ │ ├── testDebot12.abi.json │ │ │ │ ├── testDebot12.sol │ │ │ │ ├── testDebot12.tvc │ │ │ │ ├── testDebot14.abi.json │ │ │ │ ├── testDebot14.sol │ │ │ │ ├── testDebot14.tvc │ │ │ │ ├── testDebot15.abi.json │ │ │ │ ├── testDebot15.sol │ │ │ │ ├── testDebot15.tvc │ │ │ │ ├── testDebot16.abi.json │ │ │ │ ├── testDebot16.sol │ │ │ │ ├── testDebot16.tvc │ │ │ │ ├── testDebot17.abi.json │ │ │ │ ├── testDebot17.sol │ │ │ │ ├── testDebot17.tvc │ │ │ │ ├── testDebot18.abi.json │ │ │ │ ├── testDebot18.sol │ │ │ │ ├── testDebot18.tvc │ │ │ │ ├── testDebot19.abi.json │ │ │ │ ├── testDebot19.sol │ │ │ │ ├── testDebot19.tvc │ │ │ │ ├── testDebot2.abi.json │ │ │ │ ├── testDebot2.tvc │ │ │ │ ├── testDebot20.abi.json │ │ │ │ ├── testDebot20.sol │ │ │ │ ├── testDebot20.tvc │ │ │ │ ├── testDebot21.abi.json │ │ │ │ ├── testDebot21.sol │ │ │ │ ├── testDebot21.tvc │ │ │ │ ├── testDebot3.abi.json │ │ │ │ ├── testDebot3.sol │ │ │ │ ├── testDebot3.tvc │ │ │ │ ├── testDebot4.abi.json │ │ │ │ ├── testDebot4.tvc │ │ │ │ ├── testDebot5.abi.json │ │ │ │ ├── testDebot5.tvc │ │ │ │ ├── testDebot6.abi.json │ │ │ │ ├── testDebot6.sol │ │ │ │ ├── testDebot6.tvc │ │ │ │ ├── testDebot7.abi.json │ │ │ │ ├── testDebot7.sol │ │ │ │ ├── testDebot7.tvc │ │ │ │ ├── testDebot8.abi.json │ │ │ │ ├── testDebot8.sol │ │ │ │ ├── testDebot8.tvc │ │ │ │ ├── testDebot9.abi.json │ │ │ │ ├── testDebot9.sol │ │ │ │ ├── testDebot9.tvc │ │ │ │ ├── testDebotTarget.abi.json │ │ │ │ ├── testDebotTarget.tvc │ │ │ │ ├── test_gosh.abi.json │ │ │ │ ├── test_gosh.sol │ │ │ │ └── test_gosh.tvc │ │ │ ├── boc │ │ │ ├── boc_abi.json │ │ │ └── elector.json │ │ ├── mod.rs │ │ └── test_misc.rs │ ├── tvm │ │ ├── call_tvm.rs │ │ ├── check_transaction.rs │ │ ├── errors.rs │ │ ├── mod.rs │ │ ├── run_get.rs │ │ ├── run_message.rs │ │ ├── stack.rs │ │ ├── tests.rs │ │ └── types.rs │ └── utils │ │ ├── calc_storage_fee.rs │ │ ├── compression.rs │ │ ├── conversion.rs │ │ ├── errors.rs │ │ ├── json.rs │ │ ├── mod.rs │ │ └── tests.rs └── tonclient.h ├── ever_client_processing ├── Cargo.toml └── src │ ├── error.rs │ ├── lib.rs │ ├── message_monitor │ ├── message.rs │ ├── mod.rs │ ├── monitor.rs │ ├── monitor_queues.rs │ └── queue.rs │ ├── sdk_services │ ├── mock_sdk_services.rs │ └── mod.rs │ └── tests.rs ├── ever_sdk ├── Cargo.toml └── src │ ├── block.rs │ ├── contract.rs │ ├── error.rs │ ├── json_helper.rs │ ├── lib.rs │ ├── message.rs │ ├── transaction.rs │ └── types.rs ├── evercli ├── Cargo.toml ├── LICENSE ├── README.md ├── src │ ├── api.rs │ ├── command_line.rs │ ├── errors.rs │ ├── main.rs │ └── request.rs └── tests │ └── cli.rs ├── examples ├── README.md └── c │ ├── CMakeLists.txt │ ├── README.md │ ├── main.cpp │ └── tonclient.h └── tools ├── api.json ├── api.ts ├── docs.ts ├── index.ts ├── package.json ├── ts-code.ts ├── tsconfig.json └── update_trusted_blocks ├── Cargo.toml ├── README.md └── src └── main.rs /.gitbook.yaml: -------------------------------------------------------------------------------- 1 | root: ./docs/ 2 | 3 | structure: 4 | readme: ../README.md 5 | summary: ./SUMMARY.md -------------------------------------------------------------------------------- /.gitbook/assets/scr1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ever-sdk/f43392aebbabf299c09c167b2c38b7d429fdc965/.gitbook/assets/scr1.png -------------------------------------------------------------------------------- /.gitbook/assets/ton-sdk-blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ever-sdk/f43392aebbabf299c09c167b2c38b7d429fdc965/.gitbook/assets/ton-sdk-blue.png -------------------------------------------------------------------------------- /.gitbook/assets/ton-sdk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ever-sdk/f43392aebbabf299c09c167b2c38b7d429fdc965/.gitbook/assets/ton-sdk.png -------------------------------------------------------------------------------- /.github/workflows/release-post-actions.yml: -------------------------------------------------------------------------------- 1 | name: Release post-actions 2 | 3 | on: 4 | release: 5 | types: [published] 6 | 7 | jobs: 8 | send-discord-msg: 9 | runs-on: ubuntu-latest 10 | steps: 11 | - name: Discord notification 12 | env: 13 | DISCORD_WEBHOOK: ${{ secrets.DISCORD_WEBHOOK }} 14 | uses: Ilshidur/action-discord@master 15 | -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- 1 | [workspace] 2 | exclude = [ 'examples/rust' ] 3 | members = [ 'ever_sdk', 'ever_client', 'ever_client_processing', 'evercli', 'api/test', 'tools/update_trusted_blocks' ] 4 | 5 | -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- 1 | theme: jekyll-theme-leap-day -------------------------------------------------------------------------------- /api/derive/Cargo.toml: -------------------------------------------------------------------------------- 1 | [package] 2 | authors = [ 'EverX Labs Ltd ' ] 3 | edition = '2018' 4 | name = 'api_derive' 5 | version = '1.49.2' 6 | 7 | [dependencies] 8 | proc-macro2 = '1.0.52' 9 | quote = '1.0.26' 10 | serde_json = '1.0.57' 11 | syn = { features = [ 'full' ], version = '1.0.109' } 12 | api_info = { path = '../info' } 13 | 14 | [lib] 15 | proc-macro = true 16 | 17 | -------------------------------------------------------------------------------- /api/info/Cargo.toml: -------------------------------------------------------------------------------- 1 | [package] 2 | authors = [ 'EverX Labs Ltd ' ] 3 | edition = '2018' 4 | name = 'api_info' 5 | version = '1.49.2' 6 | 7 | [dependencies] 8 | serde = '1.0.115' 9 | serde_derive = '1.0.104' 10 | serde_json = '1.0.57' 11 | 12 | [lib] 13 | name = 'api_info' 14 | 15 | -------------------------------------------------------------------------------- /api/test/Cargo.toml: -------------------------------------------------------------------------------- 1 | [package] 2 | authors = [ 'EverX Labs Ltd ' ] 3 | edition = '2018' 4 | name = 'api_test' 5 | version = '1.49.2' 6 | 7 | [dependencies] 8 | serde = '1.0.115' 9 | serde_derive = '1.0.115' 10 | serde_json = '1.0.57' 11 | api_derive = { path = '../derive' } 12 | api_info = { path = '../info' } 13 | 14 | [lib] 15 | name = 'api_test' 16 | 17 | -------------------------------------------------------------------------------- /api/test/src/lib.rs: -------------------------------------------------------------------------------- 1 | #[cfg(test)] 2 | #[macro_use] 3 | extern crate api_derive; 4 | 5 | #[cfg(test)] 6 | mod tests; 7 | -------------------------------------------------------------------------------- /docs/.gitbook/assets/Everscale Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ever-sdk/f43392aebbabf299c09c167b2c38b7d429fdc965/docs/.gitbook/assets/Everscale Logo.png -------------------------------------------------------------------------------- /docs/.gitbook/assets/GoshLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ever-sdk/f43392aebbabf299c09c167b2c38b7d429fdc965/docs/.gitbook/assets/GoshLogo.png -------------------------------------------------------------------------------- /docs/.gitbook/assets/image (1) (1) (1).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ever-sdk/f43392aebbabf299c09c167b2c38b7d429fdc965/docs/.gitbook/assets/image (1) (1) (1).png -------------------------------------------------------------------------------- /docs/.gitbook/assets/image (1) (1).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ever-sdk/f43392aebbabf299c09c167b2c38b7d429fdc965/docs/.gitbook/assets/image (1) (1).png -------------------------------------------------------------------------------- /docs/.gitbook/assets/image (1).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ever-sdk/f43392aebbabf299c09c167b2c38b7d429fdc965/docs/.gitbook/assets/image (1).png -------------------------------------------------------------------------------- /docs/.gitbook/assets/image (10).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ever-sdk/f43392aebbabf299c09c167b2c38b7d429fdc965/docs/.gitbook/assets/image (10).png -------------------------------------------------------------------------------- /docs/.gitbook/assets/image (11).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ever-sdk/f43392aebbabf299c09c167b2c38b7d429fdc965/docs/.gitbook/assets/image (11).png -------------------------------------------------------------------------------- /docs/.gitbook/assets/image (2) (1).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ever-sdk/f43392aebbabf299c09c167b2c38b7d429fdc965/docs/.gitbook/assets/image (2) (1).png -------------------------------------------------------------------------------- /docs/.gitbook/assets/image (2).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ever-sdk/f43392aebbabf299c09c167b2c38b7d429fdc965/docs/.gitbook/assets/image (2).png -------------------------------------------------------------------------------- /docs/.gitbook/assets/image (3).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ever-sdk/f43392aebbabf299c09c167b2c38b7d429fdc965/docs/.gitbook/assets/image (3).png -------------------------------------------------------------------------------- /docs/.gitbook/assets/image (4).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ever-sdk/f43392aebbabf299c09c167b2c38b7d429fdc965/docs/.gitbook/assets/image (4).png -------------------------------------------------------------------------------- /docs/.gitbook/assets/image (5).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ever-sdk/f43392aebbabf299c09c167b2c38b7d429fdc965/docs/.gitbook/assets/image (5).png -------------------------------------------------------------------------------- /docs/.gitbook/assets/image (6).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ever-sdk/f43392aebbabf299c09c167b2c38b7d429fdc965/docs/.gitbook/assets/image (6).png -------------------------------------------------------------------------------- /docs/.gitbook/assets/image (7).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ever-sdk/f43392aebbabf299c09c167b2c38b7d429fdc965/docs/.gitbook/assets/image (7).png -------------------------------------------------------------------------------- /docs/.gitbook/assets/image (8).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ever-sdk/f43392aebbabf299c09c167b2c38b7d429fdc965/docs/.gitbook/assets/image (8).png -------------------------------------------------------------------------------- /docs/.gitbook/assets/image (9).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ever-sdk/f43392aebbabf299c09c167b2c38b7d429fdc965/docs/.gitbook/assets/image (9).png -------------------------------------------------------------------------------- /docs/.gitbook/assets/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ever-sdk/f43392aebbabf299c09c167b2c38b7d429fdc965/docs/.gitbook/assets/image.png -------------------------------------------------------------------------------- /docs/.gitbook/assets/vf-dev-program.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ever-sdk/f43392aebbabf299c09c167b2c38b7d429fdc965/docs/.gitbook/assets/vf-dev-program.png -------------------------------------------------------------------------------- /docs/guides/configuration/README.md: -------------------------------------------------------------------------------- 1 | # Configuration 2 | 3 | -------------------------------------------------------------------------------- /docs/guides/configuration/configure_sdk.md: -------------------------------------------------------------------------------- 1 | # Config Reference 2 | 3 | ## [TONClient.config reference](../../reference/types-and-methods/mod\_client.md#clientconfig) 4 | 5 | -------------------------------------------------------------------------------- /docs/guides/crypto/README.md: -------------------------------------------------------------------------------- 1 | # Crypto 2 | 3 | This section contains the following cryptographic guides: 4 | 5 | * [Mnemonics and keys](mnemonics\_and\_keys.md) 6 | 7 | -------------------------------------------------------------------------------- /docs/guides/installation/README.md: -------------------------------------------------------------------------------- 1 | # Installation 2 | 3 | This section contains the following installation guides: 4 | 5 | * [Add SDK to your App](add\_sdk\_to\_your\_app.md) 6 | -------------------------------------------------------------------------------- /docs/guides/queries_and_subscriptions/README.md: -------------------------------------------------------------------------------- 1 | # Queries and subscriptions 2 | 3 | This section contains the following guides on working with queries and subscriptions 4 | -------------------------------------------------------------------------------- /docs/guides/queries_and_subscriptions/how-to-work-with-net-module.md: -------------------------------------------------------------------------------- 1 | # How to work with net module 2 | 3 | To get API data with the help of SDK, just wrap the GraphQL query inside net.query function. 4 | 5 | [GraphQL samples. ](https://docs.everplatform.dev/samples/graphql-samples/accounts) 6 | 7 | See the next page how to do it. 8 | -------------------------------------------------------------------------------- /docs/guides/queries_and_subscriptions/use-cases.md: -------------------------------------------------------------------------------- 1 | --- 2 | description: What data can you get from GraphQL API? 3 | --- 4 | 5 | # Use-cases 6 | 7 | * Get API data 8 | * Subscribe to data updates 9 | * Easily paginate such data as blocks, transactions 10 | 11 | [See the full API use-cases here.](https://docs.everplatform.dev/reference/graphql-api#use-cases) 12 | -------------------------------------------------------------------------------- /docs/reference/rust-api/.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ever-sdk/f43392aebbabf299c09c167b2c38b7d429fdc965/docs/reference/rust-api/.lock -------------------------------------------------------------------------------- /docs/reference/rust-api/FiraSans-Medium.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ever-sdk/f43392aebbabf299c09c167b2c38b7d429fdc965/docs/reference/rust-api/FiraSans-Medium.woff -------------------------------------------------------------------------------- /docs/reference/rust-api/FiraSans-Medium.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ever-sdk/f43392aebbabf299c09c167b2c38b7d429fdc965/docs/reference/rust-api/FiraSans-Medium.woff2 -------------------------------------------------------------------------------- /docs/reference/rust-api/FiraSans-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ever-sdk/f43392aebbabf299c09c167b2c38b7d429fdc965/docs/reference/rust-api/FiraSans-Regular.woff -------------------------------------------------------------------------------- /docs/reference/rust-api/FiraSans-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ever-sdk/f43392aebbabf299c09c167b2c38b7d429fdc965/docs/reference/rust-api/FiraSans-Regular.woff2 -------------------------------------------------------------------------------- /docs/reference/rust-api/SourceCodePro-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ever-sdk/f43392aebbabf299c09c167b2c38b7d429fdc965/docs/reference/rust-api/SourceCodePro-Regular.woff -------------------------------------------------------------------------------- /docs/reference/rust-api/SourceCodePro-Semibold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ever-sdk/f43392aebbabf299c09c167b2c38b7d429fdc965/docs/reference/rust-api/SourceCodePro-Semibold.woff -------------------------------------------------------------------------------- /docs/reference/rust-api/SourceSerifPro-Bold.ttf.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ever-sdk/f43392aebbabf299c09c167b2c38b7d429fdc965/docs/reference/rust-api/SourceSerifPro-Bold.ttf.woff -------------------------------------------------------------------------------- /docs/reference/rust-api/SourceSerifPro-It.ttf.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ever-sdk/f43392aebbabf299c09c167b2c38b7d429fdc965/docs/reference/rust-api/SourceSerifPro-It.ttf.woff -------------------------------------------------------------------------------- /docs/reference/rust-api/SourceSerifPro-Regular.ttf.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ever-sdk/f43392aebbabf299c09c167b2c38b7d429fdc965/docs/reference/rust-api/SourceSerifPro-Regular.ttf.woff -------------------------------------------------------------------------------- /docs/reference/rust-api/brush.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/reference/rust-api/crates.js: -------------------------------------------------------------------------------- 1 | window.ALL_CRATES = ["ever_client"]; -------------------------------------------------------------------------------- /docs/reference/rust-api/down-arrow.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/reference/rust-api/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ever-sdk/f43392aebbabf299c09c167b2c38b7d429fdc965/docs/reference/rust-api/favicon-16x16.png -------------------------------------------------------------------------------- /docs/reference/rust-api/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ever-sdk/f43392aebbabf299c09c167b2c38b7d429fdc965/docs/reference/rust-api/favicon-32x32.png -------------------------------------------------------------------------------- /docs/reference/rust-api/implementors/failure/trait.Fail.js: -------------------------------------------------------------------------------- 1 | (function() {var implementors = {}; 2 | implementors["ever_client"] = [{"text":"impl Fail for StdContractError","synthetic":false,"types":["ever_client::tvm::errors::StdContractError"]}]; 3 | if (window.register_implementors) {window.register_implementors(implementors);} else {window.pending_implementors = implementors;}})() -------------------------------------------------------------------------------- /docs/reference/rust-api/noscript.css: -------------------------------------------------------------------------------- 1 | #main>h2+div,#main>h2+h3,#main>h3+div{display:block;}.loading-content{display:none;}#main>h2+div,#main>h3+div{display:block;}#main>h2+h3{display:flex;}#main .impl-items .hidden{display:block !important;}#main .impl-items h4.hidden{display:flex !important;}#main .attributes{margin-left:0 !important;} -------------------------------------------------------------------------------- /docs/reference/rust-api/rust-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ever-sdk/f43392aebbabf299c09c167b2c38b7d429fdc965/docs/reference/rust-api/rust-logo.png -------------------------------------------------------------------------------- /docs/reference/rust-api/ton_client/abi/decode_data/fn.decode_account_data.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 |

Redirecting to ../../../ever_client/abi/fn.decode_account_data.html...

8 | 9 | 10 | -------------------------------------------------------------------------------- /docs/reference/rust-api/ton_client/abi/decode_data/struct.ResultOfDecodeData.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 |

Redirecting to ../../../ever_client/abi/struct.ResultOfDecodeData.html...

8 | 9 | 10 | -------------------------------------------------------------------------------- /docs/reference/rust-api/ton_client/abi/decode_message/enum.MessageBodyType.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 |

Redirecting to ../../../ever_client/abi/enum.MessageBodyType.html...

8 | 9 | 10 | -------------------------------------------------------------------------------- /docs/reference/rust-api/ton_client/abi/decode_message/fn.decode_message.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 |

Redirecting to ../../../ever_client/abi/fn.decode_message.html...

8 | 9 | 10 | -------------------------------------------------------------------------------- /docs/reference/rust-api/ton_client/abi/decode_message/fn.decode_message_body.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 |

Redirecting to ../../../ever_client/abi/fn.decode_message_body.html...

8 | 9 | 10 | -------------------------------------------------------------------------------- /docs/reference/rust-api/ton_client/abi/decode_message/struct.DecodedMessageBody.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 |

Redirecting to ../../../ever_client/abi/struct.DecodedMessageBody.html...

8 | 9 | 10 | -------------------------------------------------------------------------------- /docs/reference/rust-api/ton_client/abi/decode_message/struct.ParamsOfDecodeMessage.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 |

Redirecting to ../../../ever_client/abi/struct.ParamsOfDecodeMessage.html...

8 | 9 | 10 | -------------------------------------------------------------------------------- /docs/reference/rust-api/ton_client/abi/encode_account/enum.StateInitSource.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 |

Redirecting to ../../../ever_client/abi/enum.StateInitSource.html...

8 | 9 | 10 | -------------------------------------------------------------------------------- /docs/reference/rust-api/ton_client/abi/encode_account/fn.encode_account.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 |

Redirecting to ../../../ever_client/abi/fn.encode_account.html...

8 | 9 | 10 | -------------------------------------------------------------------------------- /docs/reference/rust-api/ton_client/abi/encode_account/struct.ParamsOfEncodeAccount.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 |

Redirecting to ../../../ever_client/abi/struct.ParamsOfEncodeAccount.html...

8 | 9 | 10 | -------------------------------------------------------------------------------- /docs/reference/rust-api/ton_client/abi/encode_account/struct.ResultOfEncodeAccount.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 |

Redirecting to ../../../ever_client/abi/struct.ResultOfEncodeAccount.html...

8 | 9 | 10 | -------------------------------------------------------------------------------- /docs/reference/rust-api/ton_client/abi/encode_account/struct.StateInitParams.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 |

Redirecting to ../../../ever_client/abi/struct.StateInitParams.html...

8 | 9 | 10 | -------------------------------------------------------------------------------- /docs/reference/rust-api/ton_client/abi/encode_message/fn.attach_signature.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 |

Redirecting to ../../../ever_client/abi/fn.attach_signature.html...

8 | 9 | 10 | -------------------------------------------------------------------------------- /docs/reference/rust-api/ton_client/abi/encode_message/fn.encode_internal_message.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 |

Redirecting to ../../../ever_client/abi/fn.encode_internal_message.html...

8 | 9 | 10 | -------------------------------------------------------------------------------- /docs/reference/rust-api/ton_client/abi/encode_message/fn.encode_message.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 |

Redirecting to ../../../ever_client/abi/fn.encode_message.html...

8 | 9 | 10 | -------------------------------------------------------------------------------- /docs/reference/rust-api/ton_client/abi/encode_message/fn.encode_message_body.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 |

Redirecting to ../../../ever_client/abi/fn.encode_message_body.html...

8 | 9 | 10 | -------------------------------------------------------------------------------- /docs/reference/rust-api/ton_client/abi/encode_message/struct.CallSet.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 |

Redirecting to ../../../ever_client/abi/struct.CallSet.html...

8 | 9 | 10 | -------------------------------------------------------------------------------- /docs/reference/rust-api/ton_client/abi/encode_message/struct.DeploySet.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 |

Redirecting to ../../../ever_client/abi/struct.DeploySet.html...

8 | 9 | 10 | -------------------------------------------------------------------------------- /docs/reference/rust-api/ton_client/abi/encode_message/struct.ParamsOfEncodeMessage.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 |

Redirecting to ../../../ever_client/abi/struct.ParamsOfEncodeMessage.html...

8 | 9 | 10 | -------------------------------------------------------------------------------- /docs/reference/rust-api/ton_client/abi/encode_message/struct.ResultOfEncodeMessage.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 |

Redirecting to ../../../ever_client/abi/struct.ResultOfEncodeMessage.html...

8 | 9 | 10 | -------------------------------------------------------------------------------- /docs/reference/rust-api/ton_client/abi/errors/enum.ErrorCode.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 |

Redirecting to ../../../ever_client/abi/enum.ErrorCode.html...

8 | 9 | 10 | -------------------------------------------------------------------------------- /docs/reference/rust-api/ton_client/abi/errors/struct.Error.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 |

Redirecting to ../../../ever_client/abi/struct.Error.html...

8 | 9 | 10 | -------------------------------------------------------------------------------- /docs/reference/rust-api/ton_client/abi/signing/enum.Signer.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 |

Redirecting to ../../../ever_client/abi/enum.Signer.html...

8 | 9 | 10 | -------------------------------------------------------------------------------- /docs/reference/rust-api/ton_client/abi/types/enum.Abi.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 |

Redirecting to ../../../ever_client/abi/enum.Abi.html...

8 | 9 | 10 | -------------------------------------------------------------------------------- /docs/reference/rust-api/ton_client/abi/types/enum.MessageSource.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 |

Redirecting to ../../../ever_client/abi/enum.MessageSource.html...

8 | 9 | 10 | -------------------------------------------------------------------------------- /docs/reference/rust-api/ton_client/abi/types/struct.AbiContract.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 |

Redirecting to ../../../ever_client/abi/struct.AbiContract.html...

8 | 9 | 10 | -------------------------------------------------------------------------------- /docs/reference/rust-api/ton_client/abi/types/struct.AbiData.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 |

Redirecting to ../../../ever_client/abi/struct.AbiData.html...

8 | 9 | 10 | -------------------------------------------------------------------------------- /docs/reference/rust-api/ton_client/abi/types/struct.AbiEvent.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 |

Redirecting to ../../../ever_client/abi/struct.AbiEvent.html...

8 | 9 | 10 | -------------------------------------------------------------------------------- /docs/reference/rust-api/ton_client/abi/types/struct.AbiFunction.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 |

Redirecting to ../../../ever_client/abi/struct.AbiFunction.html...

8 | 9 | 10 | -------------------------------------------------------------------------------- /docs/reference/rust-api/ton_client/abi/types/struct.AbiHandle.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 |

Redirecting to ../../../ever_client/abi/struct.AbiHandle.html...

8 | 9 | 10 | -------------------------------------------------------------------------------- /docs/reference/rust-api/ton_client/abi/types/struct.AbiParam.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 |

Redirecting to ../../../ever_client/abi/struct.AbiParam.html...

8 | 9 | 10 | -------------------------------------------------------------------------------- /docs/reference/rust-api/ton_client/abi/types/struct.FunctionHeader.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 |

Redirecting to ../../../ever_client/abi/struct.FunctionHeader.html...

8 | 9 | 10 | -------------------------------------------------------------------------------- /docs/reference/rust-api/ton_client/boc/blockchain_config/fn.get_blockchain_config.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 |

Redirecting to ../../../ever_client/boc/fn.get_blockchain_config.html...

8 | 9 | 10 | -------------------------------------------------------------------------------- /docs/reference/rust-api/ton_client/boc/cache/enum.BocCacheType.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 |

Redirecting to ../../../ever_client/boc/enum.BocCacheType.html...

8 | 9 | 10 | -------------------------------------------------------------------------------- /docs/reference/rust-api/ton_client/boc/cache/fn.cache_get.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 |

Redirecting to ../../../ever_client/boc/fn.cache_get.html...

8 | 9 | 10 | -------------------------------------------------------------------------------- /docs/reference/rust-api/ton_client/boc/cache/fn.cache_set.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 |

Redirecting to ../../../ever_client/boc/fn.cache_set.html...

8 | 9 | 10 | -------------------------------------------------------------------------------- /docs/reference/rust-api/ton_client/boc/cache/fn.cache_unpin.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 |

Redirecting to ../../../ever_client/boc/fn.cache_unpin.html...

8 | 9 | 10 | -------------------------------------------------------------------------------- /docs/reference/rust-api/ton_client/boc/cache/struct.ParamsOfBocCacheGet.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 |

Redirecting to ../../../ever_client/boc/struct.ParamsOfBocCacheGet.html...

8 | 9 | 10 | -------------------------------------------------------------------------------- /docs/reference/rust-api/ton_client/boc/cache/struct.ParamsOfBocCacheSet.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 |

Redirecting to ../../../ever_client/boc/struct.ParamsOfBocCacheSet.html...

8 | 9 | 10 | -------------------------------------------------------------------------------- /docs/reference/rust-api/ton_client/boc/cache/struct.ParamsOfBocCacheUnpin.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 |

Redirecting to ../../../ever_client/boc/struct.ParamsOfBocCacheUnpin.html...

8 | 9 | 10 | -------------------------------------------------------------------------------- /docs/reference/rust-api/ton_client/boc/cache/struct.ResultOfBocCacheGet.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 |

Redirecting to ../../../ever_client/boc/struct.ResultOfBocCacheGet.html...

8 | 9 | 10 | -------------------------------------------------------------------------------- /docs/reference/rust-api/ton_client/boc/cache/struct.ResultOfBocCacheSet.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 |

Redirecting to ../../../ever_client/boc/struct.ResultOfBocCacheSet.html...

8 | 9 | 10 | -------------------------------------------------------------------------------- /docs/reference/rust-api/ton_client/boc/encode/enum.BuilderOp.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 |

Redirecting to ../../../ever_client/boc/enum.BuilderOp.html...

8 | 9 | 10 | -------------------------------------------------------------------------------- /docs/reference/rust-api/ton_client/boc/encode/fn.encode_boc.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 |

Redirecting to ../../../ever_client/boc/fn.encode_boc.html...

8 | 9 | 10 | -------------------------------------------------------------------------------- /docs/reference/rust-api/ton_client/boc/encode/struct.ParamsOfEncodeBoc.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 |

Redirecting to ../../../ever_client/boc/struct.ParamsOfEncodeBoc.html...

8 | 9 | 10 | -------------------------------------------------------------------------------- /docs/reference/rust-api/ton_client/boc/encode/struct.ResultOfEncodeBoc.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 |

Redirecting to ../../../ever_client/boc/struct.ResultOfEncodeBoc.html...

8 | 9 | 10 | -------------------------------------------------------------------------------- /docs/reference/rust-api/ton_client/boc/errors/enum.ErrorCode.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 |

Redirecting to ../../../ever_client/boc/enum.ErrorCode.html...

8 | 9 | 10 | -------------------------------------------------------------------------------- /docs/reference/rust-api/ton_client/boc/errors/struct.Error.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 |

Redirecting to ../../../ever_client/boc/struct.Error.html...

8 | 9 | 10 | -------------------------------------------------------------------------------- /docs/reference/rust-api/ton_client/boc/hash/fn.get_boc_hash.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 |

Redirecting to ../../../ever_client/boc/fn.get_boc_hash.html...

8 | 9 | 10 | -------------------------------------------------------------------------------- /docs/reference/rust-api/ton_client/boc/hash/struct.ParamsOfGetBocHash.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 |

Redirecting to ../../../ever_client/boc/struct.ParamsOfGetBocHash.html...

8 | 9 | 10 | -------------------------------------------------------------------------------- /docs/reference/rust-api/ton_client/boc/hash/struct.ResultOfGetBocHash.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 |

Redirecting to ../../../ever_client/boc/struct.ResultOfGetBocHash.html...

8 | 9 | 10 | -------------------------------------------------------------------------------- /docs/reference/rust-api/ton_client/boc/parse/fn.parse_account.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 |

Redirecting to ../../../ever_client/boc/fn.parse_account.html...

8 | 9 | 10 | -------------------------------------------------------------------------------- /docs/reference/rust-api/ton_client/boc/parse/fn.parse_block.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 |

Redirecting to ../../../ever_client/boc/fn.parse_block.html...

8 | 9 | 10 | -------------------------------------------------------------------------------- /docs/reference/rust-api/ton_client/boc/parse/fn.parse_message.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 |

Redirecting to ../../../ever_client/boc/fn.parse_message.html...

8 | 9 | 10 | -------------------------------------------------------------------------------- /docs/reference/rust-api/ton_client/boc/parse/fn.parse_shardstate.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 |

Redirecting to ../../../ever_client/boc/fn.parse_shardstate.html...

8 | 9 | 10 | -------------------------------------------------------------------------------- /docs/reference/rust-api/ton_client/boc/parse/fn.parse_transaction.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 |

Redirecting to ../../../ever_client/boc/fn.parse_transaction.html...

8 | 9 | 10 | -------------------------------------------------------------------------------- /docs/reference/rust-api/ton_client/boc/parse/fn.required_boc.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 |

Redirecting to ../../../ever_client/boc/fn.required_boc.html...

8 | 9 | 10 | -------------------------------------------------------------------------------- /docs/reference/rust-api/ton_client/boc/parse/fn.source_boc.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 |

Redirecting to ../../../ever_client/boc/fn.source_boc.html...

8 | 9 | 10 | -------------------------------------------------------------------------------- /docs/reference/rust-api/ton_client/boc/parse/struct.ParamsOfParse.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 |

Redirecting to ../../../ever_client/boc/struct.ParamsOfParse.html...

8 | 9 | 10 | -------------------------------------------------------------------------------- /docs/reference/rust-api/ton_client/boc/parse/struct.ParamsOfParseShardstate.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 |

Redirecting to ../../../ever_client/boc/struct.ParamsOfParseShardstate.html...

8 | 9 | 10 | -------------------------------------------------------------------------------- /docs/reference/rust-api/ton_client/boc/parse/struct.ResultOfParse.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 |

Redirecting to ../../../ever_client/boc/struct.ResultOfParse.html...

8 | 9 | 10 | -------------------------------------------------------------------------------- /docs/reference/rust-api/ton_client/boc/tvc/fn.get_code_from_tvc.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 |

Redirecting to ../../../ever_client/boc/fn.get_code_from_tvc.html...

8 | 9 | 10 | -------------------------------------------------------------------------------- /docs/reference/rust-api/ton_client/boc/tvc/struct.ParamsOfGetCodeFromTvc.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 |

Redirecting to ../../../ever_client/boc/struct.ParamsOfGetCodeFromTvc.html...

8 | 9 | 10 | -------------------------------------------------------------------------------- /docs/reference/rust-api/ton_client/boc/tvc/struct.ResultOfGetCodeFromTvc.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 |

Redirecting to ../../../ever_client/boc/struct.ResultOfGetCodeFromTvc.html...

8 | 9 | 10 | -------------------------------------------------------------------------------- /docs/reference/rust-api/ton_client/client/client/struct.ClientConfig.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 |

Redirecting to ../../../ever_client/client/struct.ClientConfig.html...

8 | 9 | 10 | -------------------------------------------------------------------------------- /docs/reference/rust-api/ton_client/client/client/struct.ClientContext.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 |

Redirecting to ../../../ever_client/client/struct.ClientContext.html...

8 | 9 | 10 | -------------------------------------------------------------------------------- /docs/reference/rust-api/ton_client/client/errors/enum.ErrorCode.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 |

Redirecting to ../../../ever_client/client/enum.ErrorCode.html...

8 | 9 | 10 | -------------------------------------------------------------------------------- /docs/reference/rust-api/ton_client/client/errors/struct.Error.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 |

Redirecting to ../../../ever_client/client/struct.Error.html...

8 | 9 | 10 | -------------------------------------------------------------------------------- /docs/reference/rust-api/ton_client/crypto/boxes/fn.encryption_box_decrypt.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 |

Redirecting to ../../../ever_client/crypto/fn.encryption_box_decrypt.html...

8 | 9 | 10 | -------------------------------------------------------------------------------- /docs/reference/rust-api/ton_client/crypto/boxes/fn.encryption_box_encrypt.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 |

Redirecting to ../../../ever_client/crypto/fn.encryption_box_encrypt.html...

8 | 9 | 10 | -------------------------------------------------------------------------------- /docs/reference/rust-api/ton_client/crypto/boxes/fn.encryption_box_get_info.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 |

Redirecting to ../../../ever_client/crypto/fn.encryption_box_get_info.html...

8 | 9 | 10 | -------------------------------------------------------------------------------- /docs/reference/rust-api/ton_client/crypto/boxes/fn.get_signing_box.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 |

Redirecting to ../../../ever_client/crypto/fn.get_signing_box.html...

8 | 9 | 10 | -------------------------------------------------------------------------------- /docs/reference/rust-api/ton_client/crypto/boxes/fn.register_encryption_box.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 |

Redirecting to ../../../ever_client/crypto/fn.register_encryption_box.html...

8 | 9 | 10 | -------------------------------------------------------------------------------- /docs/reference/rust-api/ton_client/crypto/boxes/fn.register_signing_box.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 |

Redirecting to ../../../ever_client/crypto/fn.register_signing_box.html...

8 | 9 | 10 | -------------------------------------------------------------------------------- /docs/reference/rust-api/ton_client/crypto/boxes/fn.remove_encryption_box.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 |

Redirecting to ../../../ever_client/crypto/fn.remove_encryption_box.html...

8 | 9 | 10 | -------------------------------------------------------------------------------- /docs/reference/rust-api/ton_client/crypto/boxes/fn.remove_signing_box.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 |

Redirecting to ../../../ever_client/crypto/fn.remove_signing_box.html...

8 | 9 | 10 | -------------------------------------------------------------------------------- /docs/reference/rust-api/ton_client/crypto/boxes/fn.signing_box_sign.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 |

Redirecting to ../../../ever_client/crypto/fn.signing_box_sign.html...

8 | 9 | 10 | -------------------------------------------------------------------------------- /docs/reference/rust-api/ton_client/crypto/boxes/struct.EncryptionBoxHandle.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 |

Redirecting to ../../../ever_client/crypto/struct.EncryptionBoxHandle.html...

8 | 9 | 10 | -------------------------------------------------------------------------------- /docs/reference/rust-api/ton_client/crypto/boxes/struct.EncryptionBoxInfo.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 |

Redirecting to ../../../ever_client/crypto/struct.EncryptionBoxInfo.html...

8 | 9 | 10 | -------------------------------------------------------------------------------- /docs/reference/rust-api/ton_client/crypto/boxes/struct.RegisteredSigningBox.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 |

Redirecting to ../../../ever_client/crypto/struct.RegisteredSigningBox.html...

8 | 9 | 10 | -------------------------------------------------------------------------------- /docs/reference/rust-api/ton_client/crypto/boxes/struct.SigningBoxHandle.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 |

Redirecting to ../../../ever_client/crypto/struct.SigningBoxHandle.html...

8 | 9 | 10 | -------------------------------------------------------------------------------- /docs/reference/rust-api/ton_client/crypto/boxes/trait.SigningBox.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 |

Redirecting to ../../../ever_client/crypto/trait.SigningBox.html...

8 | 9 | 10 | -------------------------------------------------------------------------------- /docs/reference/rust-api/ton_client/crypto/encryption/fn.chacha20.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 |

Redirecting to ../../../ever_client/crypto/fn.chacha20.html...

8 | 9 | 10 | -------------------------------------------------------------------------------- /docs/reference/rust-api/ton_client/crypto/encryption/struct.ParamsOfChaCha20.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 |

Redirecting to ../../../ever_client/crypto/struct.ParamsOfChaCha20.html...

8 | 9 | 10 | -------------------------------------------------------------------------------- /docs/reference/rust-api/ton_client/crypto/encryption/struct.ResultOfChaCha20.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 |

Redirecting to ../../../ever_client/crypto/struct.ResultOfChaCha20.html...

8 | 9 | 10 | -------------------------------------------------------------------------------- /docs/reference/rust-api/ton_client/crypto/encscrypt/fn.scrypt.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 |

Redirecting to ../../../ever_client/crypto/fn.scrypt.html...

8 | 9 | 10 | -------------------------------------------------------------------------------- /docs/reference/rust-api/ton_client/crypto/encscrypt/struct.ParamsOfScrypt.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 |

Redirecting to ../../../ever_client/crypto/struct.ParamsOfScrypt.html...

8 | 9 | 10 | -------------------------------------------------------------------------------- /docs/reference/rust-api/ton_client/crypto/encscrypt/struct.ResultOfScrypt.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 |

Redirecting to ../../../ever_client/crypto/struct.ResultOfScrypt.html...

8 | 9 | 10 | -------------------------------------------------------------------------------- /docs/reference/rust-api/ton_client/crypto/errors/enum.ErrorCode.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 |

Redirecting to ../../../ever_client/crypto/enum.ErrorCode.html...

8 | 9 | 10 | -------------------------------------------------------------------------------- /docs/reference/rust-api/ton_client/crypto/errors/struct.Error.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 |

Redirecting to ../../../ever_client/crypto/struct.Error.html...

8 | 9 | 10 | -------------------------------------------------------------------------------- /docs/reference/rust-api/ton_client/crypto/hash/fn.sha256.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 |

Redirecting to ../../../ever_client/crypto/fn.sha256.html...

8 | 9 | 10 | -------------------------------------------------------------------------------- /docs/reference/rust-api/ton_client/crypto/hash/fn.sha512.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 |

Redirecting to ../../../ever_client/crypto/fn.sha512.html...

8 | 9 | 10 | -------------------------------------------------------------------------------- /docs/reference/rust-api/ton_client/crypto/hash/struct.ParamsOfHash.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 |

Redirecting to ../../../ever_client/crypto/struct.ParamsOfHash.html...

8 | 9 | 10 | -------------------------------------------------------------------------------- /docs/reference/rust-api/ton_client/crypto/hash/struct.ResultOfHash.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 |

Redirecting to ../../../ever_client/crypto/struct.ResultOfHash.html...

8 | 9 | 10 | -------------------------------------------------------------------------------- /docs/reference/rust-api/ton_client/crypto/hdkey/fn.hdkey_derive_from_xprv.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 |

Redirecting to ../../../ever_client/crypto/fn.hdkey_derive_from_xprv.html...

8 | 9 | 10 | -------------------------------------------------------------------------------- /docs/reference/rust-api/ton_client/crypto/hdkey/fn.hdkey_public_from_xprv.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 |

Redirecting to ../../../ever_client/crypto/fn.hdkey_public_from_xprv.html...

8 | 9 | 10 | -------------------------------------------------------------------------------- /docs/reference/rust-api/ton_client/crypto/hdkey/fn.hdkey_secret_from_xprv.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 |

Redirecting to ../../../ever_client/crypto/fn.hdkey_secret_from_xprv.html...

8 | 9 | 10 | -------------------------------------------------------------------------------- /docs/reference/rust-api/ton_client/crypto/hdkey/fn.hdkey_xprv_from_mnemonic.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 |

Redirecting to ../../../ever_client/crypto/fn.hdkey_xprv_from_mnemonic.html...

8 | 9 | 10 | -------------------------------------------------------------------------------- /docs/reference/rust-api/ton_client/crypto/keys/fn.generate_random_sign_keys.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 |

Redirecting to ../../../ever_client/crypto/fn.generate_random_sign_keys.html...

8 | 9 | 10 | -------------------------------------------------------------------------------- /docs/reference/rust-api/ton_client/crypto/keys/fn.sign.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 |

Redirecting to ../../../ever_client/crypto/fn.sign.html...

8 | 9 | 10 | -------------------------------------------------------------------------------- /docs/reference/rust-api/ton_client/crypto/keys/fn.verify_signature.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 |

Redirecting to ../../../ever_client/crypto/fn.verify_signature.html...

8 | 9 | 10 | -------------------------------------------------------------------------------- /docs/reference/rust-api/ton_client/crypto/keys/struct.KeyPair.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 |

Redirecting to ../../../ever_client/crypto/struct.KeyPair.html...

8 | 9 | 10 | -------------------------------------------------------------------------------- /docs/reference/rust-api/ton_client/crypto/keys/struct.ParamsOfSign.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 |

Redirecting to ../../../ever_client/crypto/struct.ParamsOfSign.html...

8 | 9 | 10 | -------------------------------------------------------------------------------- /docs/reference/rust-api/ton_client/crypto/keys/struct.ResultOfSign.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 |

Redirecting to ../../../ever_client/crypto/struct.ResultOfSign.html...

8 | 9 | 10 | -------------------------------------------------------------------------------- /docs/reference/rust-api/ton_client/crypto/math/fn.factorize.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 |

Redirecting to ../../../ever_client/crypto/fn.factorize.html...

8 | 9 | 10 | -------------------------------------------------------------------------------- /docs/reference/rust-api/ton_client/crypto/math/fn.generate_random_bytes.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 |

Redirecting to ../../../ever_client/crypto/fn.generate_random_bytes.html...

8 | 9 | 10 | -------------------------------------------------------------------------------- /docs/reference/rust-api/ton_client/crypto/math/fn.modular_power.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 |

Redirecting to ../../../ever_client/crypto/fn.modular_power.html...

8 | 9 | 10 | -------------------------------------------------------------------------------- /docs/reference/rust-api/ton_client/crypto/math/fn.ton_crc16.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 |

Redirecting to ../../../ever_client/crypto/fn.ton_crc16.html...

8 | 9 | 10 | -------------------------------------------------------------------------------- /docs/reference/rust-api/ton_client/crypto/math/struct.ParamsOfFactorize.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 |

Redirecting to ../../../ever_client/crypto/struct.ParamsOfFactorize.html...

8 | 9 | 10 | -------------------------------------------------------------------------------- /docs/reference/rust-api/ton_client/crypto/math/struct.ParamsOfModularPower.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 |

Redirecting to ../../../ever_client/crypto/struct.ParamsOfModularPower.html...

8 | 9 | 10 | -------------------------------------------------------------------------------- /docs/reference/rust-api/ton_client/crypto/math/struct.ParamsOfTonCrc16.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 |

Redirecting to ../../../ever_client/crypto/struct.ParamsOfTonCrc16.html...

8 | 9 | 10 | -------------------------------------------------------------------------------- /docs/reference/rust-api/ton_client/crypto/math/struct.ResultOfFactorize.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 |

Redirecting to ../../../ever_client/crypto/struct.ResultOfFactorize.html...

8 | 9 | 10 | -------------------------------------------------------------------------------- /docs/reference/rust-api/ton_client/crypto/math/struct.ResultOfModularPower.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 |

Redirecting to ../../../ever_client/crypto/struct.ResultOfModularPower.html...

8 | 9 | 10 | -------------------------------------------------------------------------------- /docs/reference/rust-api/ton_client/crypto/math/struct.ResultOfTonCrc16.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 |

Redirecting to ../../../ever_client/crypto/struct.ResultOfTonCrc16.html...

8 | 9 | 10 | -------------------------------------------------------------------------------- /docs/reference/rust-api/ton_client/crypto/mnemonic/fn.mnemonic_from_entropy.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 |

Redirecting to ../../../ever_client/crypto/fn.mnemonic_from_entropy.html...

8 | 9 | 10 | -------------------------------------------------------------------------------- /docs/reference/rust-api/ton_client/crypto/mnemonic/fn.mnemonic_from_random.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 |

Redirecting to ../../../ever_client/crypto/fn.mnemonic_from_random.html...

8 | 9 | 10 | -------------------------------------------------------------------------------- /docs/reference/rust-api/ton_client/crypto/mnemonic/fn.mnemonic_verify.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 |

Redirecting to ../../../ever_client/crypto/fn.mnemonic_verify.html...

8 | 9 | 10 | -------------------------------------------------------------------------------- /docs/reference/rust-api/ton_client/crypto/mnemonic/fn.mnemonic_words.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 |

Redirecting to ../../../ever_client/crypto/fn.mnemonic_words.html...

8 | 9 | 10 | -------------------------------------------------------------------------------- /docs/reference/rust-api/ton_client/crypto/nacl/fn.nacl_box.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 |

Redirecting to ../../../ever_client/crypto/fn.nacl_box.html...

8 | 9 | 10 | -------------------------------------------------------------------------------- /docs/reference/rust-api/ton_client/crypto/nacl/fn.nacl_box_keypair.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 |

Redirecting to ../../../ever_client/crypto/fn.nacl_box_keypair.html...

8 | 9 | 10 | -------------------------------------------------------------------------------- /docs/reference/rust-api/ton_client/crypto/nacl/fn.nacl_box_open.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 |

Redirecting to ../../../ever_client/crypto/fn.nacl_box_open.html...

8 | 9 | 10 | -------------------------------------------------------------------------------- /docs/reference/rust-api/ton_client/crypto/nacl/fn.nacl_secret_box.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 |

Redirecting to ../../../ever_client/crypto/fn.nacl_secret_box.html...

8 | 9 | 10 | -------------------------------------------------------------------------------- /docs/reference/rust-api/ton_client/crypto/nacl/fn.nacl_secret_box_open.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 |

Redirecting to ../../../ever_client/crypto/fn.nacl_secret_box_open.html...

8 | 9 | 10 | -------------------------------------------------------------------------------- /docs/reference/rust-api/ton_client/crypto/nacl/fn.nacl_sign.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 |

Redirecting to ../../../ever_client/crypto/fn.nacl_sign.html...

8 | 9 | 10 | -------------------------------------------------------------------------------- /docs/reference/rust-api/ton_client/crypto/nacl/fn.nacl_sign_detached.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 |

Redirecting to ../../../ever_client/crypto/fn.nacl_sign_detached.html...

8 | 9 | 10 | -------------------------------------------------------------------------------- /docs/reference/rust-api/ton_client/crypto/nacl/fn.nacl_sign_detached_verify.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 |

Redirecting to ../../../ever_client/crypto/fn.nacl_sign_detached_verify.html...

8 | 9 | 10 | -------------------------------------------------------------------------------- /docs/reference/rust-api/ton_client/crypto/nacl/fn.nacl_sign_open.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 |

Redirecting to ../../../ever_client/crypto/fn.nacl_sign_open.html...

8 | 9 | 10 | -------------------------------------------------------------------------------- /docs/reference/rust-api/ton_client/crypto/nacl/struct.ParamsOfNaclBox.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 |

Redirecting to ../../../ever_client/crypto/struct.ParamsOfNaclBox.html...

8 | 9 | 10 | -------------------------------------------------------------------------------- /docs/reference/rust-api/ton_client/crypto/nacl/struct.ParamsOfNaclBoxOpen.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 |

Redirecting to ../../../ever_client/crypto/struct.ParamsOfNaclBoxOpen.html...

8 | 9 | 10 | -------------------------------------------------------------------------------- /docs/reference/rust-api/ton_client/crypto/nacl/struct.ParamsOfNaclSecretBox.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 |

Redirecting to ../../../ever_client/crypto/struct.ParamsOfNaclSecretBox.html...

8 | 9 | 10 | -------------------------------------------------------------------------------- /docs/reference/rust-api/ton_client/crypto/nacl/struct.ParamsOfNaclSign.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 |

Redirecting to ../../../ever_client/crypto/struct.ParamsOfNaclSign.html...

8 | 9 | 10 | -------------------------------------------------------------------------------- /docs/reference/rust-api/ton_client/crypto/nacl/struct.ParamsOfNaclSignOpen.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 |

Redirecting to ../../../ever_client/crypto/struct.ParamsOfNaclSignOpen.html...

8 | 9 | 10 | -------------------------------------------------------------------------------- /docs/reference/rust-api/ton_client/crypto/nacl/struct.ResultOfNaclBox.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 |

Redirecting to ../../../ever_client/crypto/struct.ResultOfNaclBox.html...

8 | 9 | 10 | -------------------------------------------------------------------------------- /docs/reference/rust-api/ton_client/crypto/nacl/struct.ResultOfNaclBoxOpen.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 |

Redirecting to ../../../ever_client/crypto/struct.ResultOfNaclBoxOpen.html...

8 | 9 | 10 | -------------------------------------------------------------------------------- /docs/reference/rust-api/ton_client/crypto/nacl/struct.ResultOfNaclSign.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 |

Redirecting to ../../../ever_client/crypto/struct.ResultOfNaclSign.html...

8 | 9 | 10 | -------------------------------------------------------------------------------- /docs/reference/rust-api/ton_client/crypto/nacl/struct.ResultOfNaclSignOpen.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 |

Redirecting to ../../../ever_client/crypto/struct.ResultOfNaclSignOpen.html...

8 | 9 | 10 | -------------------------------------------------------------------------------- /docs/reference/rust-api/ton_client/debot/action/struct.DAction.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 |

Redirecting to ../../../ever_client/debot/struct.DAction.html...

8 | 9 | 10 | -------------------------------------------------------------------------------- /docs/reference/rust-api/ton_client/debot/activity/enum.DebotActivity.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 |

Redirecting to ../../../ever_client/debot/enum.DebotActivity.html...

8 | 9 | 10 | -------------------------------------------------------------------------------- /docs/reference/rust-api/ton_client/debot/activity/struct.Spending.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 |

Redirecting to ../../../ever_client/debot/struct.Spending.html...

8 | 9 | 10 | -------------------------------------------------------------------------------- /docs/reference/rust-api/ton_client/debot/browser/trait.BrowserCallbacks.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 |

Redirecting to ../../../ever_client/debot/trait.BrowserCallbacks.html...

8 | 9 | 10 | -------------------------------------------------------------------------------- /docs/reference/rust-api/ton_client/debot/context/constant.STATE_EXIT.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 |

Redirecting to ../../../ever_client/debot/constant.STATE_EXIT.html...

8 | 9 | 10 | -------------------------------------------------------------------------------- /docs/reference/rust-api/ton_client/debot/context/constant.STATE_ZERO.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 |

Redirecting to ../../../ever_client/debot/constant.STATE_ZERO.html...

8 | 9 | 10 | -------------------------------------------------------------------------------- /docs/reference/rust-api/ton_client/debot/context/struct.DContext.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 |

Redirecting to ../../../ever_client/debot/struct.DContext.html...

8 | 9 | 10 | -------------------------------------------------------------------------------- /docs/reference/rust-api/ton_client/debot/dengine/struct.DEngine.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 |

Redirecting to ../../../ever_client/debot/struct.DEngine.html...

8 | 9 | 10 | -------------------------------------------------------------------------------- /docs/reference/rust-api/ton_client/debot/dinterface/trait.DebotInterface.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 |

Redirecting to ../../../ever_client/debot/trait.DebotInterface.html...

8 | 9 | 10 | -------------------------------------------------------------------------------- /docs/reference/rust-api/ton_client/debot/dinterface/trait.DebotInterfaceExecutor.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 |

Redirecting to ../../../ever_client/debot/trait.DebotInterfaceExecutor.html...

8 | 9 | 10 | -------------------------------------------------------------------------------- /docs/reference/rust-api/ton_client/debot/dinterface/type.InterfaceResult.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 |

Redirecting to ../../../ever_client/debot/type.InterfaceResult.html...

8 | 9 | 10 | -------------------------------------------------------------------------------- /docs/reference/rust-api/ton_client/debot/errors/enum.ErrorCode.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 |

Redirecting to ../../../ever_client/debot/enum.ErrorCode.html...

8 | 9 | 10 | -------------------------------------------------------------------------------- /docs/reference/rust-api/ton_client/debot/errors/struct.Error.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 |

Redirecting to ../../../ever_client/debot/struct.Error.html...

8 | 9 | 10 | -------------------------------------------------------------------------------- /docs/reference/rust-api/ton_client/encoding/sidebar-items.js: -------------------------------------------------------------------------------- 1 | initSidebarItems({"enum":[["AccountAddressType",""]],"fn":[["decode_abi_bigint",""],["decode_abi_number",""]],"struct":[["Base64AddressParams",""]]}); -------------------------------------------------------------------------------- /docs/reference/rust-api/ton_client/error/sidebar-items.js: -------------------------------------------------------------------------------- 1 | initSidebarItems({"struct":[["ClientError",""]],"type":[["ClientResult",""]]}); -------------------------------------------------------------------------------- /docs/reference/rust-api/ton_client/json_interface/interop/enum.ResponseType.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 |

Redirecting to ../../../ever_client/enum.ResponseType.html...

8 | 9 | 10 | -------------------------------------------------------------------------------- /docs/reference/rust-api/ton_client/json_interface/interop/fn.create_context.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 |

Redirecting to ../../../ever_client/fn.create_context.html...

8 | 9 | 10 | -------------------------------------------------------------------------------- /docs/reference/rust-api/ton_client/json_interface/interop/fn.destroy_context.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 |

Redirecting to ../../../ever_client/fn.destroy_context.html...

8 | 9 | 10 | -------------------------------------------------------------------------------- /docs/reference/rust-api/ton_client/json_interface/interop/fn.request.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 |

Redirecting to ../../../ever_client/fn.request.html...

8 | 9 | 10 | -------------------------------------------------------------------------------- /docs/reference/rust-api/ton_client/json_interface/interop/fn.request_ptr.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 |

Redirecting to ../../../ever_client/fn.request_ptr.html...

8 | 9 | 10 | -------------------------------------------------------------------------------- /docs/reference/rust-api/ton_client/json_interface/interop/fn.request_sync.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 |

Redirecting to ../../../ever_client/fn.request_sync.html...

8 | 9 | 10 | -------------------------------------------------------------------------------- /docs/reference/rust-api/ton_client/json_interface/interop/fn.tc_create_context.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 |

Redirecting to ../../../ever_client/fn.tc_create_context.html...

8 | 9 | 10 | -------------------------------------------------------------------------------- /docs/reference/rust-api/ton_client/json_interface/interop/fn.tc_destroy_context.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 |

Redirecting to ../../../ever_client/fn.tc_destroy_context.html...

8 | 9 | 10 | -------------------------------------------------------------------------------- /docs/reference/rust-api/ton_client/json_interface/interop/fn.tc_destroy_string.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 |

Redirecting to ../../../ever_client/fn.tc_destroy_string.html...

8 | 9 | 10 | -------------------------------------------------------------------------------- /docs/reference/rust-api/ton_client/json_interface/interop/fn.tc_read_string.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 |

Redirecting to ../../../ever_client/fn.tc_read_string.html...

8 | 9 | 10 | -------------------------------------------------------------------------------- /docs/reference/rust-api/ton_client/json_interface/interop/fn.tc_request.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 |

Redirecting to ../../../ever_client/fn.tc_request.html...

8 | 9 | 10 | -------------------------------------------------------------------------------- /docs/reference/rust-api/ton_client/json_interface/interop/fn.tc_request_ptr.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 |

Redirecting to ../../../ever_client/fn.tc_request_ptr.html...

8 | 9 | 10 | -------------------------------------------------------------------------------- /docs/reference/rust-api/ton_client/json_interface/interop/fn.tc_request_sync.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 |

Redirecting to ../../../ever_client/fn.tc_request_sync.html...

8 | 9 | 10 | -------------------------------------------------------------------------------- /docs/reference/rust-api/ton_client/json_interface/interop/struct.StringData.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 |

Redirecting to ../../../ever_client/struct.StringData.html...

8 | 9 | 10 | -------------------------------------------------------------------------------- /docs/reference/rust-api/ton_client/json_interface/interop/type.CResponseHandler.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 |

Redirecting to ../../../ever_client/type.CResponseHandler.html...

8 | 9 | 10 | -------------------------------------------------------------------------------- /docs/reference/rust-api/ton_client/json_interface/interop/type.CResponseHandlerPtr.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 |

Redirecting to ../../../ever_client/type.CResponseHandlerPtr.html...

8 | 9 | 10 | -------------------------------------------------------------------------------- /docs/reference/rust-api/ton_client/json_interface/interop/type.ContextHandle.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 |

Redirecting to ../../../ever_client/type.ContextHandle.html...

8 | 9 | 10 | -------------------------------------------------------------------------------- /docs/reference/rust-api/ton_client/json_interface/interop/type.ResponseHandler.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 |

Redirecting to ../../../ever_client/type.ResponseHandler.html...

8 | 9 | 10 | -------------------------------------------------------------------------------- /docs/reference/rust-api/ton_client/json_interface/interop/type.ResponseHandlerPtr.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 |

Redirecting to ../../../ever_client/type.ResponseHandlerPtr.html...

8 | 9 | 10 | -------------------------------------------------------------------------------- /docs/reference/rust-api/ton_client/json_interface/sidebar-items.js: -------------------------------------------------------------------------------- 1 | initSidebarItems({}); -------------------------------------------------------------------------------- /docs/reference/rust-api/ton_client/net/batch/fn.batch_query.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 |

Redirecting to ../../../ever_client/net/fn.batch_query.html...

8 | 9 | 10 | -------------------------------------------------------------------------------- /docs/reference/rust-api/ton_client/net/batch/struct.ParamsOfBatchQuery.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 |

Redirecting to ../../../ever_client/net/struct.ParamsOfBatchQuery.html...

8 | 9 | 10 | -------------------------------------------------------------------------------- /docs/reference/rust-api/ton_client/net/batch/struct.ResultOfBatchQuery.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 |

Redirecting to ../../../ever_client/net/struct.ResultOfBatchQuery.html...

8 | 9 | 10 | -------------------------------------------------------------------------------- /docs/reference/rust-api/ton_client/net/errors/enum.ErrorCode.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 |

Redirecting to ../../../ever_client/net/enum.ErrorCode.html...

8 | 9 | 10 | -------------------------------------------------------------------------------- /docs/reference/rust-api/ton_client/net/errors/struct.Error.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 |

Redirecting to ../../../ever_client/net/struct.Error.html...

8 | 9 | 10 | -------------------------------------------------------------------------------- /docs/reference/rust-api/ton_client/net/iterators/block_iterator/fn.create_block_iterator.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 |

Redirecting to ../../../../ever_client/net/fn.create_block_iterator.html...

8 | 9 | 10 | -------------------------------------------------------------------------------- /docs/reference/rust-api/ton_client/net/iterators/block_iterator/fn.resume_block_iterator.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 |

Redirecting to ../../../../ever_client/net/fn.resume_block_iterator.html...

8 | 9 | 10 | -------------------------------------------------------------------------------- /docs/reference/rust-api/ton_client/net/iterators/fn.iterator_next.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 |

Redirecting to ../../../ever_client/net/fn.iterator_next.html...

8 | 9 | 10 | -------------------------------------------------------------------------------- /docs/reference/rust-api/ton_client/net/iterators/fn.remove_iterator.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 |

Redirecting to ../../../ever_client/net/fn.remove_iterator.html...

8 | 9 | 10 | -------------------------------------------------------------------------------- /docs/reference/rust-api/ton_client/net/iterators/struct.ParamsOfIteratorNext.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 |

Redirecting to ../../../ever_client/net/struct.ParamsOfIteratorNext.html...

8 | 9 | 10 | -------------------------------------------------------------------------------- /docs/reference/rust-api/ton_client/net/iterators/struct.RegisteredIterator.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 |

Redirecting to ../../../ever_client/net/struct.RegisteredIterator.html...

8 | 9 | 10 | -------------------------------------------------------------------------------- /docs/reference/rust-api/ton_client/net/iterators/struct.ResultOfIteratorNext.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 |

Redirecting to ../../../ever_client/net/struct.ResultOfIteratorNext.html...

8 | 9 | 10 | -------------------------------------------------------------------------------- /docs/reference/rust-api/ton_client/net/iterators/trait.ChainIterator.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 |

Redirecting to ../../../ever_client/net/trait.ChainIterator.html...

8 | 9 | 10 | -------------------------------------------------------------------------------- /docs/reference/rust-api/ton_client/net/queries/fn.aggregate_collection.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 |

Redirecting to ../../../ever_client/net/fn.aggregate_collection.html...

8 | 9 | 10 | -------------------------------------------------------------------------------- /docs/reference/rust-api/ton_client/net/queries/fn.query.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 |

Redirecting to ../../../ever_client/net/fn.query.html...

8 | 9 | 10 | -------------------------------------------------------------------------------- /docs/reference/rust-api/ton_client/net/queries/fn.query_collection.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 |

Redirecting to ../../../ever_client/net/fn.query_collection.html...

8 | 9 | 10 | -------------------------------------------------------------------------------- /docs/reference/rust-api/ton_client/net/queries/fn.query_counterparties.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 |

Redirecting to ../../../ever_client/net/fn.query_counterparties.html...

8 | 9 | 10 | -------------------------------------------------------------------------------- /docs/reference/rust-api/ton_client/net/queries/fn.wait_for_collection.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 |

Redirecting to ../../../ever_client/net/fn.wait_for_collection.html...

8 | 9 | 10 | -------------------------------------------------------------------------------- /docs/reference/rust-api/ton_client/net/queries/struct.ParamsOfQuery.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 |

Redirecting to ../../../ever_client/net/struct.ParamsOfQuery.html...

8 | 9 | 10 | -------------------------------------------------------------------------------- /docs/reference/rust-api/ton_client/net/queries/struct.ResultOfQuery.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 |

Redirecting to ../../../ever_client/net/struct.ResultOfQuery.html...

8 | 9 | 10 | -------------------------------------------------------------------------------- /docs/reference/rust-api/ton_client/net/queries/struct.ResultOfQueryCollection.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 |

Redirecting to ../../../ever_client/net/struct.ResultOfQueryCollection.html...

8 | 9 | 10 | -------------------------------------------------------------------------------- /docs/reference/rust-api/ton_client/net/subscriptions/enum.SubscriptionResponseType.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 |

Redirecting to ../../../ever_client/net/enum.SubscriptionResponseType.html...

8 | 9 | 10 | -------------------------------------------------------------------------------- /docs/reference/rust-api/ton_client/net/subscriptions/fn.subscribe_collection.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 |

Redirecting to ../../../ever_client/net/fn.subscribe_collection.html...

8 | 9 | 10 | -------------------------------------------------------------------------------- /docs/reference/rust-api/ton_client/net/subscriptions/fn.unsubscribe.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 |

Redirecting to ../../../ever_client/net/fn.unsubscribe.html...

8 | 9 | 10 | -------------------------------------------------------------------------------- /docs/reference/rust-api/ton_client/net/subscriptions/struct.ResultOfSubscription.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 |

Redirecting to ../../../ever_client/net/struct.ResultOfSubscription.html...

8 | 9 | 10 | -------------------------------------------------------------------------------- /docs/reference/rust-api/ton_client/net/ton_gql/enum.AggregationFn.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 |

Redirecting to ../../../ever_client/net/enum.AggregationFn.html...

8 | 9 | 10 | -------------------------------------------------------------------------------- /docs/reference/rust-api/ton_client/net/ton_gql/enum.GraphQLQueryEvent.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 |

Redirecting to ../../../ever_client/net/enum.GraphQLQueryEvent.html...

8 | 9 | 10 | -------------------------------------------------------------------------------- /docs/reference/rust-api/ton_client/net/ton_gql/enum.ParamsOfQueryOperation.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 |

Redirecting to ../../../ever_client/net/enum.ParamsOfQueryOperation.html...

8 | 9 | 10 | -------------------------------------------------------------------------------- /docs/reference/rust-api/ton_client/net/ton_gql/enum.SortDirection.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 |

Redirecting to ../../../ever_client/net/enum.SortDirection.html...

8 | 9 | 10 | -------------------------------------------------------------------------------- /docs/reference/rust-api/ton_client/net/ton_gql/struct.FieldAggregation.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 |

Redirecting to ../../../ever_client/net/struct.FieldAggregation.html...

8 | 9 | 10 | -------------------------------------------------------------------------------- /docs/reference/rust-api/ton_client/net/ton_gql/struct.OrderBy.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 |

Redirecting to ../../../ever_client/net/struct.OrderBy.html...

8 | 9 | 10 | -------------------------------------------------------------------------------- /docs/reference/rust-api/ton_client/net/ton_gql/struct.ParamsOfQueryCollection.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 |

Redirecting to ../../../ever_client/net/struct.ParamsOfQueryCollection.html...

8 | 9 | 10 | -------------------------------------------------------------------------------- /docs/reference/rust-api/ton_client/net/ton_gql/struct.PostRequest.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 |

Redirecting to ../../../ever_client/net/struct.PostRequest.html...

8 | 9 | 10 | -------------------------------------------------------------------------------- /docs/reference/rust-api/ton_client/net/transaction_tree/fn.query_transaction_tree.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 |

Redirecting to ../../../ever_client/net/fn.query_transaction_tree.html...

8 | 9 | 10 | -------------------------------------------------------------------------------- /docs/reference/rust-api/ton_client/net/transaction_tree/struct.MessageNode.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 |

Redirecting to ../../../ever_client/net/struct.MessageNode.html...

8 | 9 | 10 | -------------------------------------------------------------------------------- /docs/reference/rust-api/ton_client/net/transaction_tree/struct.TransactionNode.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 |

Redirecting to ../../../ever_client/net/struct.TransactionNode.html...

8 | 9 | 10 | -------------------------------------------------------------------------------- /docs/reference/rust-api/ton_client/net/types/constant.ACCOUNTS_COLLECTION.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 |

Redirecting to ../../../ever_client/net/constant.ACCOUNTS_COLLECTION.html...

8 | 9 | 10 | -------------------------------------------------------------------------------- /docs/reference/rust-api/ton_client/net/types/constant.BLOCKS_COLLECTION.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 |

Redirecting to ../../../ever_client/net/constant.BLOCKS_COLLECTION.html...

8 | 9 | 10 | -------------------------------------------------------------------------------- /docs/reference/rust-api/ton_client/net/types/constant.MESSAGES_COLLECTION.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 |

Redirecting to ../../../ever_client/net/constant.MESSAGES_COLLECTION.html...

8 | 9 | 10 | -------------------------------------------------------------------------------- /docs/reference/rust-api/ton_client/net/types/struct.NetworkConfig.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 |

Redirecting to ../../../ever_client/net/struct.NetworkConfig.html...

8 | 9 | 10 | -------------------------------------------------------------------------------- /docs/reference/rust-api/ton_client/processing/errors/enum.ErrorCode.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 |

Redirecting to ../../../ever_client/processing/enum.ErrorCode.html...

8 | 9 | 10 | -------------------------------------------------------------------------------- /docs/reference/rust-api/ton_client/processing/errors/struct.Error.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 |

Redirecting to ../../../ever_client/processing/struct.Error.html...

8 | 9 | 10 | -------------------------------------------------------------------------------- /docs/reference/rust-api/ton_client/processing/process_message/fn.process_message.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 |

Redirecting to ../../../ever_client/processing/fn.process_message.html...

8 | 9 | 10 | -------------------------------------------------------------------------------- /docs/reference/rust-api/ton_client/processing/send_message/fn.send_message.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 |

Redirecting to ../../../ever_client/processing/fn.send_message.html...

8 | 9 | 10 | -------------------------------------------------------------------------------- /docs/reference/rust-api/ton_client/processing/sidebar-items.js: -------------------------------------------------------------------------------- 1 | initSidebarItems({"enum":[["ErrorCode",""],["ProcessingEvent",""],["ProcessingResponseType",""]],"fn":[["process_message",""],["send_message",""],["wait_for_transaction",""]],"struct":[["DecodedOutput",""],["Error",""],["ParamsOfProcessMessage",""],["ParamsOfSendMessage",""],["ParamsOfWaitForTransaction",""],["ResultOfProcessMessage",""],["ResultOfSendMessage",""]]}); -------------------------------------------------------------------------------- /docs/reference/rust-api/ton_client/processing/types/enum.ProcessingEvent.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 |

Redirecting to ../../../ever_client/processing/enum.ProcessingEvent.html...

8 | 9 | 10 | -------------------------------------------------------------------------------- /docs/reference/rust-api/ton_client/processing/types/struct.DecodedOutput.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 |

Redirecting to ../../../ever_client/processing/struct.DecodedOutput.html...

8 | 9 | 10 | -------------------------------------------------------------------------------- /docs/reference/rust-api/ton_client/tvm/errors/enum.ErrorCode.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 |

Redirecting to ../../../ever_client/tvm/enum.ErrorCode.html...

8 | 9 | 10 | -------------------------------------------------------------------------------- /docs/reference/rust-api/ton_client/tvm/errors/enum.StdContractError.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 |

Redirecting to ../../../ever_client/tvm/enum.StdContractError.html...

8 | 9 | 10 | -------------------------------------------------------------------------------- /docs/reference/rust-api/ton_client/tvm/errors/struct.Error.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 |

Redirecting to ../../../ever_client/tvm/struct.Error.html...

8 | 9 | 10 | -------------------------------------------------------------------------------- /docs/reference/rust-api/ton_client/tvm/run_get/fn.run_get.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 |

Redirecting to ../../../ever_client/tvm/fn.run_get.html...

8 | 9 | 10 | -------------------------------------------------------------------------------- /docs/reference/rust-api/ton_client/tvm/run_get/struct.ParamsOfRunGet.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 |

Redirecting to ../../../ever_client/tvm/struct.ParamsOfRunGet.html...

8 | 9 | 10 | -------------------------------------------------------------------------------- /docs/reference/rust-api/ton_client/tvm/run_get/struct.ResultOfRunGet.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 |

Redirecting to ../../../ever_client/tvm/struct.ResultOfRunGet.html...

8 | 9 | 10 | -------------------------------------------------------------------------------- /docs/reference/rust-api/ton_client/tvm/run_message/enum.AccountForExecutor.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 |

Redirecting to ../../../ever_client/tvm/enum.AccountForExecutor.html...

8 | 9 | 10 | -------------------------------------------------------------------------------- /docs/reference/rust-api/ton_client/tvm/run_message/fn.run_executor.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 |

Redirecting to ../../../ever_client/tvm/fn.run_executor.html...

8 | 9 | 10 | -------------------------------------------------------------------------------- /docs/reference/rust-api/ton_client/tvm/run_message/fn.run_tvm.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 |

Redirecting to ../../../ever_client/tvm/fn.run_tvm.html...

8 | 9 | 10 | -------------------------------------------------------------------------------- /docs/reference/rust-api/ton_client/tvm/run_message/struct.ParamsOfRunExecutor.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 |

Redirecting to ../../../ever_client/tvm/struct.ParamsOfRunExecutor.html...

8 | 9 | 10 | -------------------------------------------------------------------------------- /docs/reference/rust-api/ton_client/tvm/run_message/struct.ParamsOfRunTvm.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 |

Redirecting to ../../../ever_client/tvm/struct.ParamsOfRunTvm.html...

8 | 9 | 10 | -------------------------------------------------------------------------------- /docs/reference/rust-api/ton_client/tvm/run_message/struct.ResultOfRunExecutor.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 |

Redirecting to ../../../ever_client/tvm/struct.ResultOfRunExecutor.html...

8 | 9 | 10 | -------------------------------------------------------------------------------- /docs/reference/rust-api/ton_client/tvm/run_message/struct.ResultOfRunTvm.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 |

Redirecting to ../../../ever_client/tvm/struct.ResultOfRunTvm.html...

8 | 9 | 10 | -------------------------------------------------------------------------------- /docs/reference/rust-api/ton_client/tvm/sidebar-items.js: -------------------------------------------------------------------------------- 1 | initSidebarItems({"enum":[["AccountForExecutor",""],["ErrorCode",""],["StdContractError",""]],"fn":[["run_executor","Emulates all the phases of contract execution locally"],["run_get","Executes a get-method of FIFT contract "],["run_tvm","Executes get-methods of ABI-compatible contracts"]],"struct":[["Error",""],["ExecutionOptions",""],["ParamsOfRunExecutor",""],["ParamsOfRunGet",""],["ParamsOfRunTvm",""],["ResultOfRunExecutor",""],["ResultOfRunGet",""],["ResultOfRunTvm",""],["TransactionFees",""]]}); -------------------------------------------------------------------------------- /docs/reference/rust-api/ton_client/tvm/types/struct.ExecutionOptions.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 |

Redirecting to ../../../ever_client/tvm/struct.ExecutionOptions.html...

8 | 9 | 10 | -------------------------------------------------------------------------------- /docs/reference/rust-api/ton_client/utils/calc_storage_fee/fn.calc_storage_fee.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 |

Redirecting to ../../../ever_client/utils/fn.calc_storage_fee.html...

8 | 9 | 10 | -------------------------------------------------------------------------------- /docs/reference/rust-api/ton_client/utils/compression/fn.compress_zstd.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 |

Redirecting to ../../../ever_client/utils/fn.compress_zstd.html...

8 | 9 | 10 | -------------------------------------------------------------------------------- /docs/reference/rust-api/ton_client/utils/compression/fn.decompress_zstd.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 |

Redirecting to ../../../ever_client/utils/fn.decompress_zstd.html...

8 | 9 | 10 | -------------------------------------------------------------------------------- /docs/reference/rust-api/ton_client/utils/conversion/enum.AddressStringFormat.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 |

Redirecting to ../../../ever_client/utils/enum.AddressStringFormat.html...

8 | 9 | 10 | -------------------------------------------------------------------------------- /docs/reference/rust-api/ton_client/utils/conversion/fn.convert_address.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 |

Redirecting to ../../../ever_client/utils/fn.convert_address.html...

8 | 9 | 10 | -------------------------------------------------------------------------------- /docs/reference/rust-api/ton_client/utils/conversion/fn.get_address_type.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 |

Redirecting to ../../../ever_client/utils/fn.get_address_type.html...

8 | 9 | 10 | -------------------------------------------------------------------------------- /docs/reference/rust-api/ton_client/utils/errors/enum.ErrorCode.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 |

Redirecting to ../../../ever_client/utils/enum.ErrorCode.html...

8 | 9 | 10 | -------------------------------------------------------------------------------- /docs/reference/rust-api/ton_client/utils/errors/struct.Error.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 |

Redirecting to ../../../ever_client/utils/struct.Error.html...

8 | 9 | 10 | -------------------------------------------------------------------------------- /docs/reference/types-and-methods/DEPRECATED.md: -------------------------------------------------------------------------------- 1 | # DEPRECATED API 2 | 3 | API elements marked as **DEPRECATED** will be REMOVED in the next 4 | MINOR releases. 5 | 6 | -------------------------------------------------------------------------------- /docs/reference/types-and-methods/README.md: -------------------------------------------------------------------------------- 1 | # Types and Methods 2 | 3 | This section contains documents describing TON SDK Types and Methods supported by various [modules](modules.md). 4 | 5 | * [Module abi](mod\_abi.md) 6 | * [Module boc](mod\_boc.md) 7 | * [Module client](mod\_client.md) 8 | * [Module crypto](mod\_crypto.md) 9 | * [Module debot](mod\_debot.md) 10 | * [Module net](mod\_net.md) 11 | * [Module processing](mod\_processing.md) 12 | * [Module proofs](mod\_proofs.md) 13 | * [Module tvm](mod\_tvm.md) 14 | * [Module utils](mod\_utils.md) 15 | -------------------------------------------------------------------------------- /docs/reference/types-and-methods/UNSTABLE.md: -------------------------------------------------------------------------------- 1 | # UNSTABLE API 2 | 3 | API elements marked as **UNSTABLE** are experimental. 4 | 5 | They can be changed in the next releases. 6 | -------------------------------------------------------------------------------- /ever_client/src/boc/test_data/account.boc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ever-sdk/f43392aebbabf299c09c167b2c38b7d429fdc965/ever_client/src/boc/test_data/account.boc -------------------------------------------------------------------------------- /ever_client/src/boc/test_data/block.boc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ever-sdk/f43392aebbabf299c09c167b2c38b7d429fdc965/ever_client/src/boc/test_data/block.boc -------------------------------------------------------------------------------- /ever_client/src/boc/test_data/block_config.boc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ever-sdk/f43392aebbabf299c09c167b2c38b7d429fdc965/ever_client/src/boc/test_data/block_config.boc -------------------------------------------------------------------------------- /ever_client/src/boc/test_data/salt/mycode_sel_dict_nosalt.boc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ever-sdk/f43392aebbabf299c09c167b2c38b7d429fdc965/ever_client/src/boc/test_data/salt/mycode_sel_dict_nosalt.boc -------------------------------------------------------------------------------- /ever_client/src/boc/test_data/salt/mycode_sel_dict_salt.boc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ever-sdk/f43392aebbabf299c09c167b2c38b7d429fdc965/ever_client/src/boc/test_data/salt/mycode_sel_dict_salt.boc -------------------------------------------------------------------------------- /ever_client/src/boc/test_data/salt/mycode_sel_nodict_nosalt.boc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ever-sdk/f43392aebbabf299c09c167b2c38b7d429fdc965/ever_client/src/boc/test_data/salt/mycode_sel_nodict_nosalt.boc -------------------------------------------------------------------------------- /ever_client/src/boc/test_data/salt/mycode_sel_nodict_salt.boc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ever-sdk/f43392aebbabf299c09c167b2c38b7d429fdc965/ever_client/src/boc/test_data/salt/mycode_sel_nodict_salt.boc -------------------------------------------------------------------------------- /ever_client/src/boc/test_data/salt/new_sel_dict_nosalt.boc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ever-sdk/f43392aebbabf299c09c167b2c38b7d429fdc965/ever_client/src/boc/test_data/salt/new_sel_dict_nosalt.boc -------------------------------------------------------------------------------- /ever_client/src/boc/test_data/salt/new_sel_dict_salt.boc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ever-sdk/f43392aebbabf299c09c167b2c38b7d429fdc965/ever_client/src/boc/test_data/salt/new_sel_dict_salt.boc -------------------------------------------------------------------------------- /ever_client/src/boc/test_data/salt/new_sel_nodict_nosalt.boc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ever-sdk/f43392aebbabf299c09c167b2c38b7d429fdc965/ever_client/src/boc/test_data/salt/new_sel_nodict_nosalt.boc -------------------------------------------------------------------------------- /ever_client/src/boc/test_data/salt/new_sel_nodict_salt.boc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ever-sdk/f43392aebbabf299c09c167b2c38b7d429fdc965/ever_client/src/boc/test_data/salt/new_sel_nodict_salt.boc -------------------------------------------------------------------------------- /ever_client/src/boc/test_data/salt/old_cpp_sel_nosalt.boc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ever-sdk/f43392aebbabf299c09c167b2c38b7d429fdc965/ever_client/src/boc/test_data/salt/old_cpp_sel_nosalt.boc -------------------------------------------------------------------------------- /ever_client/src/boc/test_data/salt/old_cpp_sel_salt.boc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ever-sdk/f43392aebbabf299c09c167b2c38b7d429fdc965/ever_client/src/boc/test_data/salt/old_cpp_sel_salt.boc -------------------------------------------------------------------------------- /ever_client/src/boc/test_data/salt/old_sol_sel.boc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ever-sdk/f43392aebbabf299c09c167b2c38b7d429fdc965/ever_client/src/boc/test_data/salt/old_sol_sel.boc -------------------------------------------------------------------------------- /ever_client/src/boc/test_data/state_init_lib.boc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ever-sdk/f43392aebbabf299c09c167b2c38b7d429fdc965/ever_client/src/boc/test_data/state_init_lib.boc -------------------------------------------------------------------------------- /ever_client/src/boc/test_data/zerostate.boc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ever-sdk/f43392aebbabf299c09c167b2c38b7d429fdc965/ever_client/src/boc/test_data/zerostate.boc -------------------------------------------------------------------------------- /ever_client/src/boc/test_data/zerostate_config.boc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ever-sdk/f43392aebbabf299c09c167b2c38b7d429fdc965/ever_client/src/boc/test_data/zerostate_config.boc -------------------------------------------------------------------------------- /ever_client/src/crypto/test_data/aes.iv.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ever-sdk/f43392aebbabf299c09c167b2c38b7d429fdc965/ever_client/src/crypto/test_data/aes.iv.bin -------------------------------------------------------------------------------- /ever_client/src/crypto/test_data/aes.plaintext.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ever-sdk/f43392aebbabf299c09c167b2c38b7d429fdc965/ever_client/src/crypto/test_data/aes.plaintext.bin -------------------------------------------------------------------------------- /ever_client/src/crypto/test_data/aes.plaintext.for.padding.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ever-sdk/f43392aebbabf299c09c167b2c38b7d429fdc965/ever_client/src/crypto/test_data/aes.plaintext.for.padding.bin -------------------------------------------------------------------------------- /ever_client/src/crypto/test_data/aes128.key.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ever-sdk/f43392aebbabf299c09c167b2c38b7d429fdc965/ever_client/src/crypto/test_data/aes128.key.bin -------------------------------------------------------------------------------- /ever_client/src/crypto/test_data/aes256.key.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ever-sdk/f43392aebbabf299c09c167b2c38b7d429fdc965/ever_client/src/crypto/test_data/aes256.key.bin -------------------------------------------------------------------------------- /ever_client/src/crypto/test_data/cbc-aes128.ciphertext.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ever-sdk/f43392aebbabf299c09c167b2c38b7d429fdc965/ever_client/src/crypto/test_data/cbc-aes128.ciphertext.bin -------------------------------------------------------------------------------- /ever_client/src/crypto/test_data/cbc-aes256.ciphertext.padded.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ever-sdk/f43392aebbabf299c09c167b2c38b7d429fdc965/ever_client/src/crypto/test_data/cbc-aes256.ciphertext.padded.bin -------------------------------------------------------------------------------- /ever_client/src/default_config.boc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ever-sdk/f43392aebbabf299c09c167b2c38b7d429fdc965/ever_client/src/default_config.boc -------------------------------------------------------------------------------- /ever_client/src/proofs/tests/data/key_block.boc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ever-sdk/f43392aebbabf299c09c167b2c38b7d429fdc965/ever_client/src/proofs/tests/data/key_block.boc -------------------------------------------------------------------------------- /ever_client/src/proofs/tests/data/test_master_block_proof/key_proof__3082181: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ever-sdk/f43392aebbabf299c09c167b2c38b7d429fdc965/ever_client/src/proofs/tests/data/test_master_block_proof/key_proof__3082181 -------------------------------------------------------------------------------- /ever_client/src/proofs/tests/data/test_master_block_proof/proof__3082182: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ever-sdk/f43392aebbabf299c09c167b2c38b7d429fdc965/ever_client/src/proofs/tests/data/test_master_block_proof/proof__3082182 -------------------------------------------------------------------------------- /ever_client/src/proofs/tests/data/test_master_block_proof/proof__3082183: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ever-sdk/f43392aebbabf299c09c167b2c38b7d429fdc965/ever_client/src/proofs/tests/data/test_master_block_proof/proof__3082183 -------------------------------------------------------------------------------- /ever_client/src/proofs/tests/data/test_master_block_proof/proof__3082184: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ever-sdk/f43392aebbabf299c09c167b2c38b7d429fdc965/ever_client/src/proofs/tests/data/test_master_block_proof/proof__3082184 -------------------------------------------------------------------------------- /ever_client/src/proofs/tests/data/test_master_block_proof/proof__3082185: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ever-sdk/f43392aebbabf299c09c167b2c38b7d429fdc965/ever_client/src/proofs/tests/data/test_master_block_proof/proof__3082185 -------------------------------------------------------------------------------- /ever_client/src/proofs/tests/data/test_master_block_proof/proof__3082186: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ever-sdk/f43392aebbabf299c09c167b2c38b7d429fdc965/ever_client/src/proofs/tests/data/test_master_block_proof/proof__3082186 -------------------------------------------------------------------------------- /ever_client/src/proofs/tests/data/test_master_block_proof/proof__3082187: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ever-sdk/f43392aebbabf299c09c167b2c38b7d429fdc965/ever_client/src/proofs/tests/data/test_master_block_proof/proof__3082187 -------------------------------------------------------------------------------- /ever_client/src/proofs/tests/data/test_master_block_proof/proof__3082188: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ever-sdk/f43392aebbabf299c09c167b2c38b7d429fdc965/ever_client/src/proofs/tests/data/test_master_block_proof/proof__3082188 -------------------------------------------------------------------------------- /ever_client/src/proofs/tests/data/test_master_block_proof/proof__3082189: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ever-sdk/f43392aebbabf299c09c167b2c38b7d429fdc965/ever_client/src/proofs/tests/data/test_master_block_proof/proof__3082189 -------------------------------------------------------------------------------- /ever_client/src/proofs/tests/data/test_master_block_proof/proof__3082190: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ever-sdk/f43392aebbabf299c09c167b2c38b7d429fdc965/ever_client/src/proofs/tests/data/test_master_block_proof/proof__3082190 -------------------------------------------------------------------------------- /ever_client/src/proofs/tests/data/test_master_block_proof/proof__3082191: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ever-sdk/f43392aebbabf299c09c167b2c38b7d429fdc965/ever_client/src/proofs/tests/data/test_master_block_proof/proof__3082191 -------------------------------------------------------------------------------- /ever_client/src/proofs/tests/data/test_master_block_proof/proof__3082192: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ever-sdk/f43392aebbabf299c09c167b2c38b7d429fdc965/ever_client/src/proofs/tests/data/test_master_block_proof/proof__3082192 -------------------------------------------------------------------------------- /ever_client/src/proofs/tests/data/test_master_block_proof/proof__3082193: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ever-sdk/f43392aebbabf299c09c167b2c38b7d429fdc965/ever_client/src/proofs/tests/data/test_master_block_proof/proof__3082193 -------------------------------------------------------------------------------- /ever_client/src/proofs/tests/data/test_master_block_proof/proof__3082194: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ever-sdk/f43392aebbabf299c09c167b2c38b7d429fdc965/ever_client/src/proofs/tests/data/test_master_block_proof/proof__3082194 -------------------------------------------------------------------------------- /ever_client/src/proofs/tests/data/test_master_block_proof/proof__3082195: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ever-sdk/f43392aebbabf299c09c167b2c38b7d429fdc965/ever_client/src/proofs/tests/data/test_master_block_proof/proof__3082195 -------------------------------------------------------------------------------- /ever_client/src/proofs/tests/data/test_master_block_proof/proof__3082196: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ever-sdk/f43392aebbabf299c09c167b2c38b7d429fdc965/ever_client/src/proofs/tests/data/test_master_block_proof/proof__3082196 -------------------------------------------------------------------------------- /ever_client/src/proofs/tests/data/test_master_block_proof/proof__3082197: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ever-sdk/f43392aebbabf299c09c167b2c38b7d429fdc965/ever_client/src/proofs/tests/data/test_master_block_proof/proof__3082197 -------------------------------------------------------------------------------- /ever_client/src/proofs/tests/data/test_master_block_proof/proof__3082198: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ever-sdk/f43392aebbabf299c09c167b2c38b7d429fdc965/ever_client/src/proofs/tests/data/test_master_block_proof/proof__3082198 -------------------------------------------------------------------------------- /ever_client/src/proofs/tests/data/test_master_block_proof/proof__3082199: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ever-sdk/f43392aebbabf299c09c167b2c38b7d429fdc965/ever_client/src/proofs/tests/data/test_master_block_proof/proof__3082199 -------------------------------------------------------------------------------- /ever_client/src/proofs/tests/data/test_master_block_proof/proof__3082200: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ever-sdk/f43392aebbabf299c09c167b2c38b7d429fdc965/ever_client/src/proofs/tests/data/test_master_block_proof/proof__3082200 -------------------------------------------------------------------------------- /ever_client/src/proofs/tests/data/test_master_block_proof/proof__3082201: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ever-sdk/f43392aebbabf299c09c167b2c38b7d429fdc965/ever_client/src/proofs/tests/data/test_master_block_proof/proof__3082201 -------------------------------------------------------------------------------- /ever_client/src/proofs/tests/data/test_master_block_proof_shuffle/key_proof__3236530: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ever-sdk/f43392aebbabf299c09c167b2c38b7d429fdc965/ever_client/src/proofs/tests/data/test_master_block_proof_shuffle/key_proof__3236530 -------------------------------------------------------------------------------- /ever_client/src/proofs/tests/data/test_master_block_proof_shuffle/proof__3236531: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ever-sdk/f43392aebbabf299c09c167b2c38b7d429fdc965/ever_client/src/proofs/tests/data/test_master_block_proof_shuffle/proof__3236531 -------------------------------------------------------------------------------- /ever_client/src/proofs/tests/data/test_master_block_proof_shuffle/proof__3236532: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ever-sdk/f43392aebbabf299c09c167b2c38b7d429fdc965/ever_client/src/proofs/tests/data/test_master_block_proof_shuffle/proof__3236532 -------------------------------------------------------------------------------- /ever_client/src/proofs/tests/data/test_master_block_proof_shuffle/proof__3236533: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ever-sdk/f43392aebbabf299c09c167b2c38b7d429fdc965/ever_client/src/proofs/tests/data/test_master_block_proof_shuffle/proof__3236533 -------------------------------------------------------------------------------- /ever_client/src/proofs/tests/data/test_master_block_proof_shuffle/proof__3236534: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ever-sdk/f43392aebbabf299c09c167b2c38b7d429fdc965/ever_client/src/proofs/tests/data/test_master_block_proof_shuffle/proof__3236534 -------------------------------------------------------------------------------- /ever_client/src/proofs/tests/data/test_master_block_proof_shuffle/proof__3236535: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ever-sdk/f43392aebbabf299c09c167b2c38b7d429fdc965/ever_client/src/proofs/tests/data/test_master_block_proof_shuffle/proof__3236535 -------------------------------------------------------------------------------- /ever_client/src/proofs/tests/data/test_master_block_proof_shuffle/proof__3236536: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ever-sdk/f43392aebbabf299c09c167b2c38b7d429fdc965/ever_client/src/proofs/tests/data/test_master_block_proof_shuffle/proof__3236536 -------------------------------------------------------------------------------- /ever_client/src/proofs/tests/data/test_master_block_proof_shuffle/proof__3236537: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ever-sdk/f43392aebbabf299c09c167b2c38b7d429fdc965/ever_client/src/proofs/tests/data/test_master_block_proof_shuffle/proof__3236537 -------------------------------------------------------------------------------- /ever_client/src/proofs/tests/data/test_master_block_proof_shuffle/proof__3236538: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ever-sdk/f43392aebbabf299c09c167b2c38b7d429fdc965/ever_client/src/proofs/tests/data/test_master_block_proof_shuffle/proof__3236538 -------------------------------------------------------------------------------- /ever_client/src/proofs/tests/data/test_master_block_proof_shuffle/proof__3236539: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ever-sdk/f43392aebbabf299c09c167b2c38b7d429fdc965/ever_client/src/proofs/tests/data/test_master_block_proof_shuffle/proof__3236539 -------------------------------------------------------------------------------- /ever_client/src/proofs/tests/data/test_master_block_proof_shuffle/proof__3236540: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ever-sdk/f43392aebbabf299c09c167b2c38b7d429fdc965/ever_client/src/proofs/tests/data/test_master_block_proof_shuffle/proof__3236540 -------------------------------------------------------------------------------- /ever_client/src/proofs/tests/data/test_master_block_proof_shuffle/proof__3236541: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ever-sdk/f43392aebbabf299c09c167b2c38b7d429fdc965/ever_client/src/proofs/tests/data/test_master_block_proof_shuffle/proof__3236541 -------------------------------------------------------------------------------- /ever_client/src/proofs/tests/data/test_master_block_proof_shuffle/proof__3236542: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ever-sdk/f43392aebbabf299c09c167b2c38b7d429fdc965/ever_client/src/proofs/tests/data/test_master_block_proof_shuffle/proof__3236542 -------------------------------------------------------------------------------- /ever_client/src/proofs/tests/data/test_master_block_proof_shuffle/proof__3236543: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ever-sdk/f43392aebbabf299c09c167b2c38b7d429fdc965/ever_client/src/proofs/tests/data/test_master_block_proof_shuffle/proof__3236543 -------------------------------------------------------------------------------- /ever_client/src/proofs/tests/data/test_master_block_proof_shuffle/proof__3236544: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ever-sdk/f43392aebbabf299c09c167b2c38b7d429fdc965/ever_client/src/proofs/tests/data/test_master_block_proof_shuffle/proof__3236544 -------------------------------------------------------------------------------- /ever_client/src/proofs/tests/data/test_master_block_proof_shuffle/proof__3236545: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ever-sdk/f43392aebbabf299c09c167b2c38b7d429fdc965/ever_client/src/proofs/tests/data/test_master_block_proof_shuffle/proof__3236545 -------------------------------------------------------------------------------- /ever_client/src/proofs/tests/data/test_master_block_proof_shuffle/proof__3236546: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ever-sdk/f43392aebbabf299c09c167b2c38b7d429fdc965/ever_client/src/proofs/tests/data/test_master_block_proof_shuffle/proof__3236546 -------------------------------------------------------------------------------- /ever_client/src/proofs/tests/data/test_master_block_proof_shuffle/proof__3236547: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ever-sdk/f43392aebbabf299c09c167b2c38b7d429fdc965/ever_client/src/proofs/tests/data/test_master_block_proof_shuffle/proof__3236547 -------------------------------------------------------------------------------- /ever_client/src/proofs/tests/data/test_master_block_proof_shuffle/proof__3236548: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ever-sdk/f43392aebbabf299c09c167b2c38b7d429fdc965/ever_client/src/proofs/tests/data/test_master_block_proof_shuffle/proof__3236548 -------------------------------------------------------------------------------- /ever_client/src/proofs/tests/data/test_master_block_proof_shuffle/proof__3236549: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ever-sdk/f43392aebbabf299c09c167b2c38b7d429fdc965/ever_client/src/proofs/tests/data/test_master_block_proof_shuffle/proof__3236549 -------------------------------------------------------------------------------- /ever_client/src/proofs/tests/data/test_master_block_proof_shuffle/proof__3236550: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ever-sdk/f43392aebbabf299c09c167b2c38b7d429fdc965/ever_client/src/proofs/tests/data/test_master_block_proof_shuffle/proof__3236550 -------------------------------------------------------------------------------- /ever_client/src/proofs/trusted_key_blocks.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ever-sdk/f43392aebbabf299c09c167b2c38b7d429fdc965/ever_client/src/proofs/trusted_key_blocks.bin -------------------------------------------------------------------------------- /ever_client/src/tests/contracts/abi_v1/EventsOld.tvc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ever-sdk/f43392aebbabf299c09c167b2c38b7d429fdc965/ever_client/src/tests/contracts/abi_v1/EventsOld.tvc -------------------------------------------------------------------------------- /ever_client/src/tests/contracts/abi_v1/Giver.tvc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ever-sdk/f43392aebbabf299c09c167b2c38b7d429fdc965/ever_client/src/tests/contracts/abi_v1/Giver.tvc -------------------------------------------------------------------------------- /ever_client/src/tests/contracts/abi_v1/Hello.tvc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ever-sdk/f43392aebbabf299c09c167b2c38b7d429fdc965/ever_client/src/tests/contracts/abi_v1/Hello.tvc -------------------------------------------------------------------------------- /ever_client/src/tests/contracts/abi_v1/LimitWallet.tvc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ever-sdk/f43392aebbabf299c09c167b2c38b7d429fdc965/ever_client/src/tests/contracts/abi_v1/LimitWallet.tvc -------------------------------------------------------------------------------- /ever_client/src/tests/contracts/abi_v1/Piggy.tvc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ever-sdk/f43392aebbabf299c09c167b2c38b7d429fdc965/ever_client/src/tests/contracts/abi_v1/Piggy.tvc -------------------------------------------------------------------------------- /ever_client/src/tests/contracts/abi_v1/Subscription.tvc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ever-sdk/f43392aebbabf299c09c167b2c38b7d429fdc965/ever_client/src/tests/contracts/abi_v1/Subscription.tvc -------------------------------------------------------------------------------- /ever_client/src/tests/contracts/abi_v1/Wallet.abi.json: -------------------------------------------------------------------------------- 1 | { 2 | "ABI version": 1, 3 | "functions": [ 4 | { 5 | "name": "constructor", 6 | "inputs": [ 7 | ], 8 | "outputs": [ 9 | ] 10 | }, 11 | { 12 | "name": "sendTransaction", 13 | "inputs": [ 14 | {"name":"dest","type":"address"}, 15 | {"name":"value","type":"uint128"}, 16 | {"name":"bounce","type":"bool"} 17 | ], 18 | "outputs": [ 19 | ] 20 | } 21 | ], 22 | "events": [ 23 | ] 24 | } 25 | -------------------------------------------------------------------------------- /ever_client/src/tests/contracts/abi_v1/Wallet.tvc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ever-sdk/f43392aebbabf299c09c167b2c38b7d429fdc965/ever_client/src/tests/contracts/abi_v1/Wallet.tvc -------------------------------------------------------------------------------- /ever_client/src/tests/contracts/abi_v2/CustomReplayProtection.tvc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ever-sdk/f43392aebbabf299c09c167b2c38b7d429fdc965/ever_client/src/tests/contracts/abi_v2/CustomReplayProtection.tvc -------------------------------------------------------------------------------- /ever_client/src/tests/contracts/abi_v2/Events.tvc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ever-sdk/f43392aebbabf299c09c167b2c38b7d429fdc965/ever_client/src/tests/contracts/abi_v2/Events.tvc -------------------------------------------------------------------------------- /ever_client/src/tests/contracts/abi_v2/EventsOld.tvc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ever-sdk/f43392aebbabf299c09c167b2c38b7d429fdc965/ever_client/src/tests/contracts/abi_v2/EventsOld.tvc -------------------------------------------------------------------------------- /ever_client/src/tests/contracts/abi_v2/Exception.abi.json: -------------------------------------------------------------------------------- 1 | { 2 | "ABI version": 2, 3 | "header": ["time"], 4 | "functions": [ 5 | { 6 | "name": "fail", 7 | "inputs": [ 8 | ], 9 | "outputs": [ 10 | ] 11 | }, 12 | { 13 | "name": "failAfterAccept", 14 | "inputs": [ 15 | ], 16 | "outputs": [ 17 | ] 18 | }, 19 | { 20 | "name": "constructor", 21 | "inputs": [ 22 | ], 23 | "outputs": [ 24 | ] 25 | } 26 | ], 27 | "data": [ 28 | ], 29 | "events": [ 30 | ] 31 | } 32 | -------------------------------------------------------------------------------- /ever_client/src/tests/contracts/abi_v2/Exception.sol: -------------------------------------------------------------------------------- 1 | pragma ton-solidity >=0.35.0; 2 | 3 | contract Exception { 4 | function fail() public { 5 | require(false, 1111, "This is long error message (just for testing purposes). If you see this error, you can be sure that this contract works as expected."); 6 | } 7 | 8 | function failAfterAccept() public { 9 | tvm.accept(); 10 | require(false, 1111, "This is long error message (just for testing purposes). If you see this error, you can be sure that this contract works as expected."); 11 | } 12 | } -------------------------------------------------------------------------------- /ever_client/src/tests/contracts/abi_v2/Exception.tvc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ever-sdk/f43392aebbabf299c09c167b2c38b7d429fdc965/ever_client/src/tests/contracts/abi_v2/Exception.tvc -------------------------------------------------------------------------------- /ever_client/src/tests/contracts/abi_v2/GiverV2.tvc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ever-sdk/f43392aebbabf299c09c167b2c38b7d429fdc965/ever_client/src/tests/contracts/abi_v2/GiverV2.tvc -------------------------------------------------------------------------------- /ever_client/src/tests/contracts/abi_v2/GiverV3.tvc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ever-sdk/f43392aebbabf299c09c167b2c38b7d429fdc965/ever_client/src/tests/contracts/abi_v2/GiverV3.tvc -------------------------------------------------------------------------------- /ever_client/src/tests/contracts/abi_v2/Hello.tvc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ever-sdk/f43392aebbabf299c09c167b2c38b7d429fdc965/ever_client/src/tests/contracts/abi_v2/Hello.tvc -------------------------------------------------------------------------------- /ever_client/src/tests/contracts/abi_v2/LimitWallet.tvc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ever-sdk/f43392aebbabf299c09c167b2c38b7d429fdc965/ever_client/src/tests/contracts/abi_v2/LimitWallet.tvc -------------------------------------------------------------------------------- /ever_client/src/tests/contracts/abi_v2/MyCodeFail.tvc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ever-sdk/f43392aebbabf299c09c167b2c38b7d429fdc965/ever_client/src/tests/contracts/abi_v2/MyCodeFail.tvc -------------------------------------------------------------------------------- /ever_client/src/tests/contracts/abi_v2/Piggy.tvc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ever-sdk/f43392aebbabf299c09c167b2c38b7d429fdc965/ever_client/src/tests/contracts/abi_v2/Piggy.tvc -------------------------------------------------------------------------------- /ever_client/src/tests/contracts/abi_v2/Subscription.tvc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ever-sdk/f43392aebbabf299c09c167b2c38b7d429fdc965/ever_client/src/tests/contracts/abi_v2/Subscription.tvc -------------------------------------------------------------------------------- /ever_client/src/tests/contracts/abi_v2/Wallet.tvc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ever-sdk/f43392aebbabf299c09c167b2c38b7d429fdc965/ever_client/src/tests/contracts/abi_v2/Wallet.tvc -------------------------------------------------------------------------------- /ever_client/src/tests/contracts/abi_v2/helloDebot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ever-sdk/f43392aebbabf299c09c167b2c38b7d429fdc965/ever_client/src/tests/contracts/abi_v2/helloDebot.png -------------------------------------------------------------------------------- /ever_client/src/tests/contracts/abi_v2/helloDebot.tvc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ever-sdk/f43392aebbabf299c09c167b2c38b7d429fdc965/ever_client/src/tests/contracts/abi_v2/helloDebot.tvc -------------------------------------------------------------------------------- /ever_client/src/tests/contracts/abi_v2/t24_initdata.tvc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ever-sdk/f43392aebbabf299c09c167b2c38b7d429fdc965/ever_client/src/tests/contracts/abi_v2/t24_initdata.tvc -------------------------------------------------------------------------------- /ever_client/src/tests/contracts/abi_v2/tda.tvc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ever-sdk/f43392aebbabf299c09c167b2c38b7d429fdc965/ever_client/src/tests/contracts/abi_v2/tda.tvc -------------------------------------------------------------------------------- /ever_client/src/tests/contracts/abi_v2/tdb.tvc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ever-sdk/f43392aebbabf299c09c167b2c38b7d429fdc965/ever_client/src/tests/contracts/abi_v2/tdb.tvc -------------------------------------------------------------------------------- /ever_client/src/tests/contracts/abi_v2/testDebot.tvc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ever-sdk/f43392aebbabf299c09c167b2c38b7d429fdc965/ever_client/src/tests/contracts/abi_v2/testDebot.tvc -------------------------------------------------------------------------------- /ever_client/src/tests/contracts/abi_v2/testDebot10.tvc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ever-sdk/f43392aebbabf299c09c167b2c38b7d429fdc965/ever_client/src/tests/contracts/abi_v2/testDebot10.tvc -------------------------------------------------------------------------------- /ever_client/src/tests/contracts/abi_v2/testDebot11.tvc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ever-sdk/f43392aebbabf299c09c167b2c38b7d429fdc965/ever_client/src/tests/contracts/abi_v2/testDebot11.tvc -------------------------------------------------------------------------------- /ever_client/src/tests/contracts/abi_v2/testDebot12.tvc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ever-sdk/f43392aebbabf299c09c167b2c38b7d429fdc965/ever_client/src/tests/contracts/abi_v2/testDebot12.tvc -------------------------------------------------------------------------------- /ever_client/src/tests/contracts/abi_v2/testDebot14.tvc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ever-sdk/f43392aebbabf299c09c167b2c38b7d429fdc965/ever_client/src/tests/contracts/abi_v2/testDebot14.tvc -------------------------------------------------------------------------------- /ever_client/src/tests/contracts/abi_v2/testDebot15.tvc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ever-sdk/f43392aebbabf299c09c167b2c38b7d429fdc965/ever_client/src/tests/contracts/abi_v2/testDebot15.tvc -------------------------------------------------------------------------------- /ever_client/src/tests/contracts/abi_v2/testDebot16.tvc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ever-sdk/f43392aebbabf299c09c167b2c38b7d429fdc965/ever_client/src/tests/contracts/abi_v2/testDebot16.tvc -------------------------------------------------------------------------------- /ever_client/src/tests/contracts/abi_v2/testDebot17.tvc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ever-sdk/f43392aebbabf299c09c167b2c38b7d429fdc965/ever_client/src/tests/contracts/abi_v2/testDebot17.tvc -------------------------------------------------------------------------------- /ever_client/src/tests/contracts/abi_v2/testDebot18.tvc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ever-sdk/f43392aebbabf299c09c167b2c38b7d429fdc965/ever_client/src/tests/contracts/abi_v2/testDebot18.tvc -------------------------------------------------------------------------------- /ever_client/src/tests/contracts/abi_v2/testDebot19.tvc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ever-sdk/f43392aebbabf299c09c167b2c38b7d429fdc965/ever_client/src/tests/contracts/abi_v2/testDebot19.tvc -------------------------------------------------------------------------------- /ever_client/src/tests/contracts/abi_v2/testDebot2.tvc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ever-sdk/f43392aebbabf299c09c167b2c38b7d429fdc965/ever_client/src/tests/contracts/abi_v2/testDebot2.tvc -------------------------------------------------------------------------------- /ever_client/src/tests/contracts/abi_v2/testDebot20.tvc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ever-sdk/f43392aebbabf299c09c167b2c38b7d429fdc965/ever_client/src/tests/contracts/abi_v2/testDebot20.tvc -------------------------------------------------------------------------------- /ever_client/src/tests/contracts/abi_v2/testDebot21.tvc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ever-sdk/f43392aebbabf299c09c167b2c38b7d429fdc965/ever_client/src/tests/contracts/abi_v2/testDebot21.tvc -------------------------------------------------------------------------------- /ever_client/src/tests/contracts/abi_v2/testDebot3.tvc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ever-sdk/f43392aebbabf299c09c167b2c38b7d429fdc965/ever_client/src/tests/contracts/abi_v2/testDebot3.tvc -------------------------------------------------------------------------------- /ever_client/src/tests/contracts/abi_v2/testDebot4.tvc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ever-sdk/f43392aebbabf299c09c167b2c38b7d429fdc965/ever_client/src/tests/contracts/abi_v2/testDebot4.tvc -------------------------------------------------------------------------------- /ever_client/src/tests/contracts/abi_v2/testDebot5.tvc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ever-sdk/f43392aebbabf299c09c167b2c38b7d429fdc965/ever_client/src/tests/contracts/abi_v2/testDebot5.tvc -------------------------------------------------------------------------------- /ever_client/src/tests/contracts/abi_v2/testDebot6.tvc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ever-sdk/f43392aebbabf299c09c167b2c38b7d429fdc965/ever_client/src/tests/contracts/abi_v2/testDebot6.tvc -------------------------------------------------------------------------------- /ever_client/src/tests/contracts/abi_v2/testDebot7.tvc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ever-sdk/f43392aebbabf299c09c167b2c38b7d429fdc965/ever_client/src/tests/contracts/abi_v2/testDebot7.tvc -------------------------------------------------------------------------------- /ever_client/src/tests/contracts/abi_v2/testDebot8.tvc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ever-sdk/f43392aebbabf299c09c167b2c38b7d429fdc965/ever_client/src/tests/contracts/abi_v2/testDebot8.tvc -------------------------------------------------------------------------------- /ever_client/src/tests/contracts/abi_v2/testDebot9.tvc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ever-sdk/f43392aebbabf299c09c167b2c38b7d429fdc965/ever_client/src/tests/contracts/abi_v2/testDebot9.tvc -------------------------------------------------------------------------------- /ever_client/src/tests/contracts/abi_v2/testDebotTarget.tvc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ever-sdk/f43392aebbabf299c09c167b2c38b7d429fdc965/ever_client/src/tests/contracts/abi_v2/testDebotTarget.tvc -------------------------------------------------------------------------------- /ever_client/src/tests/contracts/abi_v2/test_gosh.tvc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ever-sdk/f43392aebbabf299c09c167b2c38b7d429fdc965/ever_client/src/tests/contracts/abi_v2/test_gosh.tvc -------------------------------------------------------------------------------- /ever_client_processing/src/message_monitor/mod.rs: -------------------------------------------------------------------------------- 1 | mod message; 2 | mod monitor; 3 | mod queue; 4 | mod monitor_queues; 5 | 6 | #[cfg(test)] 7 | pub(crate) use message::CellFromBoc; 8 | pub use message::{ 9 | MessageMonitoringParams, MessageMonitoringResult, MessageMonitoringStatus, 10 | MessageMonitoringTransaction, MessageMonitoringTransactionCompute, MonitoredMessage, 11 | }; 12 | pub use monitor::{MessageMonitor, MonitorFetchWaitMode, MonitoringQueueInfo}; 13 | -------------------------------------------------------------------------------- /evercli/README.md: -------------------------------------------------------------------------------- 1 | # TON SDK command line tool 2 | 3 | `tonsdk` is a command line interface utility designed to work with TON SDK. 4 | 5 | ## How to build 6 | 7 | ```bash 8 | cargo build [--release] 9 | ``` 10 | 11 | ## How to test 12 | ```bash 13 | cargo test 14 | ``` 15 | 16 | ## How to run 17 | 18 | ```bash 19 | > tonsdk [-n network] command parameters 20 | ``` 21 | Where `network` is a network address. By default, `tonsdk` connects to `net.ton.dev` network. 22 | 23 | -------------------------------------------------------------------------------- /evercli/tests/cli.rs: -------------------------------------------------------------------------------- 1 | #[test] 2 | fn test_config() {} 3 | -------------------------------------------------------------------------------- /examples/README.md: -------------------------------------------------------------------------------- 1 | Examples on Rust can be found [here](https://github.com/everx-labs/sdk-samples/tree/master/core-examples/rust). 2 | -------------------------------------------------------------------------------- /examples/c/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 3.17) 2 | project(c) 3 | 4 | set(CMAKE_CXX_STANDARD 14) 5 | 6 | link_directories(../../target/release/) 7 | add_executable(c main.cpp tonclient.h) 8 | 9 | target_link_libraries(c libton_client.dylib) 10 | 11 | -------------------------------------------------------------------------------- /examples/c/main.cpp: -------------------------------------------------------------------------------- 1 | #include 2 | #include "tonclient.h" 3 | 4 | 5 | int main() { 6 | auto context = CoreContext(R"({ "servers": "http://localhost:8080" })"); 7 | auto version = context.request("client.version", ""); 8 | cout << version << endl; 9 | return 0; 10 | } 11 | 12 | -------------------------------------------------------------------------------- /tools/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "tools", 3 | "version": "1.44.1", 4 | "description": "", 5 | "main": "index.js", 6 | "scripts": { 7 | "test": "echo \"Error: no test specified\" && exit 1", 8 | "docs": "node index docs -o ../docs/reference/types-and-methods" 9 | }, 10 | "keywords": [], 11 | "author": "", 12 | "license": "ISC", 13 | "devDependencies": { 14 | "@types/node": "^14.11.8", 15 | "typescript": "^4.0.3" 16 | }, 17 | "dependencies": { 18 | "commander": "^6.1.0" 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /tools/update_trusted_blocks/Cargo.toml: -------------------------------------------------------------------------------- 1 | [package] 2 | edition = '2018' 3 | name = 'update_trusted_blocks' 4 | version = '0.1.0' 5 | 6 | [dependencies] 7 | anyhow = '1.0' 8 | bincode = '1.3.3' 9 | serde = '1.0.130' 10 | serde_derive = '1.0.130' 11 | serde_json = '1.0.68' 12 | tokio = { default-features = false, features = [ 'sync', 'fs' ], version = '1' } 13 | ever_block = { git = 'https://github.com/everx-labs/ever-block.git', tag = '1.11.20' } 14 | ever_client = { path = '../../ever_client' } 15 | 16 | --------------------------------------------------------------------------------