├── .gitattributes ├── BURNER ├── BurnerDeployer.sol └── README.md ├── LICENSE ├── README.md ├── cpp ├── tokens-auth │ ├── AuthRoot.abi │ ├── AuthRoot.cpp │ ├── AuthRoot.hpp │ ├── AuthRoot.tvc │ ├── AuthWallet.abi │ ├── AuthWallet.cpp │ ├── AuthWallet.hpp │ ├── AuthWallet.tvc │ └── README.md ├── tokens-fungible │ ├── FlexWallet.abi │ ├── FlexWallet.hpp │ ├── FlexWallet.tvc │ ├── Makefile │ ├── README.md │ ├── RootTokenContract.abi │ ├── RootTokenContract.cpp │ ├── RootTokenContract.hpp │ ├── RootTokenContract.tvc │ ├── TONTokenWallet.abi │ ├── TONTokenWallet.cpp │ ├── TONTokenWallet.hpp │ ├── TONTokenWallet.tvc │ ├── Wrapper.abi │ ├── Wrapper.cpp │ ├── Wrapper.hpp │ └── Wrapper.tvc ├── tokens-nonfungible │ ├── README.md │ ├── RootTokenContractNF.abi │ ├── RootTokenContractNF.cpp │ ├── RootTokenContractNF.hpp │ ├── RootTokenContractNF.tvc │ ├── TONTokenWalletNF.abi │ ├── TONTokenWalletNF.cpp │ ├── TONTokenWalletNF.hpp │ └── TONTokenWalletNF.tvc └── tokens-utxo │ ├── README.md │ ├── RootTokenContractUTXO.abi │ ├── RootTokenContractUTXO.cpp │ ├── RootTokenContractUTXO.hpp │ ├── RootTokenContractUTXO.tvc │ ├── TONTokenWalletUTXO.abi │ ├── TONTokenWalletUTXO.cpp │ ├── TONTokenWalletUTXO.hpp │ └── TONTokenWalletUTXO.tvc ├── debots ├── AddressInput.sol ├── Debot.sol ├── Menu.sol ├── Sdk.sol ├── Terminal.sol └── msig │ ├── msigDebot2.abi.json │ ├── msigDebot2.sol │ └── msigDebot2.tvc ├── dens └── redens │ ├── README.md │ ├── debots.key.json │ ├── redens.abi.json │ ├── redens.sol │ ├── redens.tvc │ └── update.sh ├── governance └── SMV │ ├── Budget.abi │ ├── Budget.cpp │ ├── Budget.hpp │ ├── Budget.tvc │ ├── Contest.abi │ ├── Contest.cpp │ ├── Contest.tvc │ ├── DePool.hpp │ ├── Makefile │ ├── MultiBallot.abi │ ├── MultiBallot.cpp │ ├── MultiBallot.hpp │ ├── MultiBallot.tvc │ ├── ProposalRoot.abi │ ├── ProposalRoot.cpp │ ├── ProposalRoot.hpp │ ├── ProposalRoot.tvc │ ├── README.md │ ├── SMVDeBot │ ├── MultiBallot.abi │ ├── ProposalRoot.abi │ ├── SMVStats.abi │ ├── SuperRoot.abi │ ├── deployProposal │ │ ├── Debot.sol │ │ ├── deploy.sh │ │ ├── deployProposalDebot.abi.json │ │ ├── deployProposalDebot.sol │ │ └── deployProposalDebot.tvc │ ├── deployall.sh │ ├── msigHelper │ │ ├── Debot.sol │ │ ├── SafeMultisigWallet.abi.json │ │ ├── deploy.sh │ │ ├── msigHelperDebot.abi.json │ │ ├── msigHelperDebot.sol │ │ └── msigHelperDebot.tvc │ ├── multiballot │ │ ├── Debot.sol │ │ ├── MultiBallotDebot.abi.json │ │ ├── MultiBallotDebot.sol │ │ ├── MultiBallotDebot.tvc │ │ └── deploy.sh │ ├── proposalRoot │ │ ├── Debot.sol │ │ ├── deploy.sh │ │ ├── proposalRootDebot.abi.json │ │ ├── proposalRootDebot.sol │ │ └── proposalRootDebot.tvc │ ├── run.sh │ ├── smvStats │ │ ├── Debot.sol │ │ ├── deploy.sh │ │ ├── smvStatDebot.abi.json │ │ ├── smvStatDebot.sol │ │ └── smvStatDebot.tvc │ └── superRoot │ │ ├── Debot.sol │ │ ├── deploy.sh │ │ ├── superRootDebot.abi.json │ │ ├── superRootDebot.sol │ │ └── superRootDebot.tvc │ ├── SMVStats.abi │ ├── SMVStats.cpp │ ├── SMVStats.hpp │ ├── SMVStats.tvc │ ├── SuperRoot.abi │ ├── SuperRoot.cpp │ ├── SuperRoot.hpp │ ├── SuperRoot.tvc │ └── config.hpp └── solidity ├── contest ├── FreeTonContest.abi.json ├── FreeTonContest.sol ├── FreeTonContest.tvc ├── IBaseData.sol └── IContestData.sol ├── debots ├── Debot.sol ├── README.md ├── ludi │ ├── ludiDebot.abi.json │ ├── ludiDebot.sol │ └── ludiDebot.tvc └── msig │ ├── msigDebot.abi.json │ ├── msigDebot.sol │ └── msigDebot.tvc ├── depool ├── DePool.abi.json ├── DePool.sol ├── DePool.tvc ├── DePoolBase.sol ├── DePoolHelper.abi.json ├── DePoolHelper.sol ├── DePoolHelper.tvc ├── DePoolLib.sol ├── DePoolProxy.abi.json ├── DePoolProxy.sol ├── DePoolProxy.tvc ├── DePoolRounds.sol ├── IDePool.sol ├── IDePoolInfoGetter.abi.json ├── IDePoolInfoGetter.sol ├── IElector.sol ├── IParticipant.abi.json ├── IParticipant.sol ├── IProxy.sol ├── Participant.sol └── README.md ├── depress ├── DePress │ ├── DePress.abi.json │ ├── DePress.sol │ └── DePress.tvc ├── DePressDeBot │ ├── DePressDeBot.abi.json │ ├── DePressDeBot.sol │ ├── DePressDeBot.tvc │ ├── DePress_tvc.txt │ ├── Debot.sol │ ├── Transferable.sol │ ├── Upgradable.sol │ ├── deploy.sh │ └── itf │ │ ├── Base64.sol │ │ ├── Menu.sol │ │ ├── Msg.sol │ │ ├── Sdk.sol │ │ └── Terminal.sol └── DePressMemberDeBot │ ├── DePressMemberDeBot.abi.json │ ├── DePressMemberDeBot.sol │ ├── DePressMemberDeBot.tvc │ ├── DePress_tvc.txt │ ├── Debot.sol │ ├── Transferable.sol │ ├── Upgradable.sol │ ├── deploy.sh │ └── itf │ ├── AddressInput.sol │ ├── Base64.sol │ ├── Menu.sol │ ├── Sdk.sol │ └── Terminal.sol ├── dod ├── dod.abi.json ├── dod.sol ├── dod.tvc ├── dodDebot.abi.json ├── dodDebot.sol ├── dodDebot.tvc └── idod.sol ├── elector ├── Common.sol ├── Config.abi.json ├── Config.sol ├── Elector.abi.json ├── Elector.sol ├── Elector.tvc ├── IConfig.sol ├── IElector.sol └── IValidator.sol ├── safemultisig ├── FormalVerification │ └── About ├── README.md ├── SafeMultisigWallet.abi.json ├── SafeMultisigWallet.sol └── SafeMultisigWallet.tvc └── setcodemultisig ├── README.md ├── SetcodeMultisigWallet.abi.json ├── SetcodeMultisigWallet.sol └── SetcodeMultisigWallet.tvc /.gitattributes: -------------------------------------------------------------------------------- 1 | *.sol linguist-language=Solidity 2 | -------------------------------------------------------------------------------- /BURNER/BurnerDeployer.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ton-labs-contracts/HEAD/BURNER/BurnerDeployer.sol -------------------------------------------------------------------------------- /BURNER/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ton-labs-contracts/HEAD/BURNER/README.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ton-labs-contracts/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ton-labs-contracts/HEAD/README.md -------------------------------------------------------------------------------- /cpp/tokens-auth/AuthRoot.abi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ton-labs-contracts/HEAD/cpp/tokens-auth/AuthRoot.abi -------------------------------------------------------------------------------- /cpp/tokens-auth/AuthRoot.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ton-labs-contracts/HEAD/cpp/tokens-auth/AuthRoot.cpp -------------------------------------------------------------------------------- /cpp/tokens-auth/AuthRoot.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ton-labs-contracts/HEAD/cpp/tokens-auth/AuthRoot.hpp -------------------------------------------------------------------------------- /cpp/tokens-auth/AuthRoot.tvc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ton-labs-contracts/HEAD/cpp/tokens-auth/AuthRoot.tvc -------------------------------------------------------------------------------- /cpp/tokens-auth/AuthWallet.abi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ton-labs-contracts/HEAD/cpp/tokens-auth/AuthWallet.abi -------------------------------------------------------------------------------- /cpp/tokens-auth/AuthWallet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ton-labs-contracts/HEAD/cpp/tokens-auth/AuthWallet.cpp -------------------------------------------------------------------------------- /cpp/tokens-auth/AuthWallet.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ton-labs-contracts/HEAD/cpp/tokens-auth/AuthWallet.hpp -------------------------------------------------------------------------------- /cpp/tokens-auth/AuthWallet.tvc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ton-labs-contracts/HEAD/cpp/tokens-auth/AuthWallet.tvc -------------------------------------------------------------------------------- /cpp/tokens-auth/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ton-labs-contracts/HEAD/cpp/tokens-auth/README.md -------------------------------------------------------------------------------- /cpp/tokens-fungible/FlexWallet.abi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ton-labs-contracts/HEAD/cpp/tokens-fungible/FlexWallet.abi -------------------------------------------------------------------------------- /cpp/tokens-fungible/FlexWallet.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ton-labs-contracts/HEAD/cpp/tokens-fungible/FlexWallet.hpp -------------------------------------------------------------------------------- /cpp/tokens-fungible/FlexWallet.tvc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ton-labs-contracts/HEAD/cpp/tokens-fungible/FlexWallet.tvc -------------------------------------------------------------------------------- /cpp/tokens-fungible/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ton-labs-contracts/HEAD/cpp/tokens-fungible/Makefile -------------------------------------------------------------------------------- /cpp/tokens-fungible/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ton-labs-contracts/HEAD/cpp/tokens-fungible/README.md -------------------------------------------------------------------------------- /cpp/tokens-fungible/RootTokenContract.abi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ton-labs-contracts/HEAD/cpp/tokens-fungible/RootTokenContract.abi -------------------------------------------------------------------------------- /cpp/tokens-fungible/RootTokenContract.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ton-labs-contracts/HEAD/cpp/tokens-fungible/RootTokenContract.cpp -------------------------------------------------------------------------------- /cpp/tokens-fungible/RootTokenContract.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ton-labs-contracts/HEAD/cpp/tokens-fungible/RootTokenContract.hpp -------------------------------------------------------------------------------- /cpp/tokens-fungible/RootTokenContract.tvc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ton-labs-contracts/HEAD/cpp/tokens-fungible/RootTokenContract.tvc -------------------------------------------------------------------------------- /cpp/tokens-fungible/TONTokenWallet.abi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ton-labs-contracts/HEAD/cpp/tokens-fungible/TONTokenWallet.abi -------------------------------------------------------------------------------- /cpp/tokens-fungible/TONTokenWallet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ton-labs-contracts/HEAD/cpp/tokens-fungible/TONTokenWallet.cpp -------------------------------------------------------------------------------- /cpp/tokens-fungible/TONTokenWallet.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ton-labs-contracts/HEAD/cpp/tokens-fungible/TONTokenWallet.hpp -------------------------------------------------------------------------------- /cpp/tokens-fungible/TONTokenWallet.tvc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ton-labs-contracts/HEAD/cpp/tokens-fungible/TONTokenWallet.tvc -------------------------------------------------------------------------------- /cpp/tokens-fungible/Wrapper.abi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ton-labs-contracts/HEAD/cpp/tokens-fungible/Wrapper.abi -------------------------------------------------------------------------------- /cpp/tokens-fungible/Wrapper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ton-labs-contracts/HEAD/cpp/tokens-fungible/Wrapper.cpp -------------------------------------------------------------------------------- /cpp/tokens-fungible/Wrapper.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ton-labs-contracts/HEAD/cpp/tokens-fungible/Wrapper.hpp -------------------------------------------------------------------------------- /cpp/tokens-fungible/Wrapper.tvc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ton-labs-contracts/HEAD/cpp/tokens-fungible/Wrapper.tvc -------------------------------------------------------------------------------- /cpp/tokens-nonfungible/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ton-labs-contracts/HEAD/cpp/tokens-nonfungible/README.md -------------------------------------------------------------------------------- /cpp/tokens-nonfungible/RootTokenContractNF.abi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ton-labs-contracts/HEAD/cpp/tokens-nonfungible/RootTokenContractNF.abi -------------------------------------------------------------------------------- /cpp/tokens-nonfungible/RootTokenContractNF.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ton-labs-contracts/HEAD/cpp/tokens-nonfungible/RootTokenContractNF.cpp -------------------------------------------------------------------------------- /cpp/tokens-nonfungible/RootTokenContractNF.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ton-labs-contracts/HEAD/cpp/tokens-nonfungible/RootTokenContractNF.hpp -------------------------------------------------------------------------------- /cpp/tokens-nonfungible/RootTokenContractNF.tvc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ton-labs-contracts/HEAD/cpp/tokens-nonfungible/RootTokenContractNF.tvc -------------------------------------------------------------------------------- /cpp/tokens-nonfungible/TONTokenWalletNF.abi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ton-labs-contracts/HEAD/cpp/tokens-nonfungible/TONTokenWalletNF.abi -------------------------------------------------------------------------------- /cpp/tokens-nonfungible/TONTokenWalletNF.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ton-labs-contracts/HEAD/cpp/tokens-nonfungible/TONTokenWalletNF.cpp -------------------------------------------------------------------------------- /cpp/tokens-nonfungible/TONTokenWalletNF.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ton-labs-contracts/HEAD/cpp/tokens-nonfungible/TONTokenWalletNF.hpp -------------------------------------------------------------------------------- /cpp/tokens-nonfungible/TONTokenWalletNF.tvc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ton-labs-contracts/HEAD/cpp/tokens-nonfungible/TONTokenWalletNF.tvc -------------------------------------------------------------------------------- /cpp/tokens-utxo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ton-labs-contracts/HEAD/cpp/tokens-utxo/README.md -------------------------------------------------------------------------------- /cpp/tokens-utxo/RootTokenContractUTXO.abi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ton-labs-contracts/HEAD/cpp/tokens-utxo/RootTokenContractUTXO.abi -------------------------------------------------------------------------------- /cpp/tokens-utxo/RootTokenContractUTXO.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ton-labs-contracts/HEAD/cpp/tokens-utxo/RootTokenContractUTXO.cpp -------------------------------------------------------------------------------- /cpp/tokens-utxo/RootTokenContractUTXO.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ton-labs-contracts/HEAD/cpp/tokens-utxo/RootTokenContractUTXO.hpp -------------------------------------------------------------------------------- /cpp/tokens-utxo/RootTokenContractUTXO.tvc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ton-labs-contracts/HEAD/cpp/tokens-utxo/RootTokenContractUTXO.tvc -------------------------------------------------------------------------------- /cpp/tokens-utxo/TONTokenWalletUTXO.abi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ton-labs-contracts/HEAD/cpp/tokens-utxo/TONTokenWalletUTXO.abi -------------------------------------------------------------------------------- /cpp/tokens-utxo/TONTokenWalletUTXO.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ton-labs-contracts/HEAD/cpp/tokens-utxo/TONTokenWalletUTXO.cpp -------------------------------------------------------------------------------- /cpp/tokens-utxo/TONTokenWalletUTXO.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ton-labs-contracts/HEAD/cpp/tokens-utxo/TONTokenWalletUTXO.hpp -------------------------------------------------------------------------------- /cpp/tokens-utxo/TONTokenWalletUTXO.tvc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ton-labs-contracts/HEAD/cpp/tokens-utxo/TONTokenWalletUTXO.tvc -------------------------------------------------------------------------------- /debots/AddressInput.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ton-labs-contracts/HEAD/debots/AddressInput.sol -------------------------------------------------------------------------------- /debots/Debot.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ton-labs-contracts/HEAD/debots/Debot.sol -------------------------------------------------------------------------------- /debots/Menu.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ton-labs-contracts/HEAD/debots/Menu.sol -------------------------------------------------------------------------------- /debots/Sdk.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ton-labs-contracts/HEAD/debots/Sdk.sol -------------------------------------------------------------------------------- /debots/Terminal.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ton-labs-contracts/HEAD/debots/Terminal.sol -------------------------------------------------------------------------------- /debots/msig/msigDebot2.abi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ton-labs-contracts/HEAD/debots/msig/msigDebot2.abi.json -------------------------------------------------------------------------------- /debots/msig/msigDebot2.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ton-labs-contracts/HEAD/debots/msig/msigDebot2.sol -------------------------------------------------------------------------------- /debots/msig/msigDebot2.tvc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ton-labs-contracts/HEAD/debots/msig/msigDebot2.tvc -------------------------------------------------------------------------------- /dens/redens/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ton-labs-contracts/HEAD/dens/redens/README.md -------------------------------------------------------------------------------- /dens/redens/debots.key.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ton-labs-contracts/HEAD/dens/redens/debots.key.json -------------------------------------------------------------------------------- /dens/redens/redens.abi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ton-labs-contracts/HEAD/dens/redens/redens.abi.json -------------------------------------------------------------------------------- /dens/redens/redens.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ton-labs-contracts/HEAD/dens/redens/redens.sol -------------------------------------------------------------------------------- /dens/redens/redens.tvc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ton-labs-contracts/HEAD/dens/redens/redens.tvc -------------------------------------------------------------------------------- /dens/redens/update.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ton-labs-contracts/HEAD/dens/redens/update.sh -------------------------------------------------------------------------------- /governance/SMV/Budget.abi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ton-labs-contracts/HEAD/governance/SMV/Budget.abi -------------------------------------------------------------------------------- /governance/SMV/Budget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ton-labs-contracts/HEAD/governance/SMV/Budget.cpp -------------------------------------------------------------------------------- /governance/SMV/Budget.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ton-labs-contracts/HEAD/governance/SMV/Budget.hpp -------------------------------------------------------------------------------- /governance/SMV/Budget.tvc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ton-labs-contracts/HEAD/governance/SMV/Budget.tvc -------------------------------------------------------------------------------- /governance/SMV/Contest.abi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ton-labs-contracts/HEAD/governance/SMV/Contest.abi -------------------------------------------------------------------------------- /governance/SMV/Contest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ton-labs-contracts/HEAD/governance/SMV/Contest.cpp -------------------------------------------------------------------------------- /governance/SMV/Contest.tvc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ton-labs-contracts/HEAD/governance/SMV/Contest.tvc -------------------------------------------------------------------------------- /governance/SMV/DePool.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ton-labs-contracts/HEAD/governance/SMV/DePool.hpp -------------------------------------------------------------------------------- /governance/SMV/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ton-labs-contracts/HEAD/governance/SMV/Makefile -------------------------------------------------------------------------------- /governance/SMV/MultiBallot.abi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ton-labs-contracts/HEAD/governance/SMV/MultiBallot.abi -------------------------------------------------------------------------------- /governance/SMV/MultiBallot.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ton-labs-contracts/HEAD/governance/SMV/MultiBallot.cpp -------------------------------------------------------------------------------- /governance/SMV/MultiBallot.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ton-labs-contracts/HEAD/governance/SMV/MultiBallot.hpp -------------------------------------------------------------------------------- /governance/SMV/MultiBallot.tvc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ton-labs-contracts/HEAD/governance/SMV/MultiBallot.tvc -------------------------------------------------------------------------------- /governance/SMV/ProposalRoot.abi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ton-labs-contracts/HEAD/governance/SMV/ProposalRoot.abi -------------------------------------------------------------------------------- /governance/SMV/ProposalRoot.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ton-labs-contracts/HEAD/governance/SMV/ProposalRoot.cpp -------------------------------------------------------------------------------- /governance/SMV/ProposalRoot.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ton-labs-contracts/HEAD/governance/SMV/ProposalRoot.hpp -------------------------------------------------------------------------------- /governance/SMV/ProposalRoot.tvc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ton-labs-contracts/HEAD/governance/SMV/ProposalRoot.tvc -------------------------------------------------------------------------------- /governance/SMV/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ton-labs-contracts/HEAD/governance/SMV/README.md -------------------------------------------------------------------------------- /governance/SMV/SMVDeBot/MultiBallot.abi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ton-labs-contracts/HEAD/governance/SMV/SMVDeBot/MultiBallot.abi -------------------------------------------------------------------------------- /governance/SMV/SMVDeBot/ProposalRoot.abi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ton-labs-contracts/HEAD/governance/SMV/SMVDeBot/ProposalRoot.abi -------------------------------------------------------------------------------- /governance/SMV/SMVDeBot/SMVStats.abi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ton-labs-contracts/HEAD/governance/SMV/SMVDeBot/SMVStats.abi -------------------------------------------------------------------------------- /governance/SMV/SMVDeBot/SuperRoot.abi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ton-labs-contracts/HEAD/governance/SMV/SMVDeBot/SuperRoot.abi -------------------------------------------------------------------------------- /governance/SMV/SMVDeBot/deployProposal/Debot.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ton-labs-contracts/HEAD/governance/SMV/SMVDeBot/deployProposal/Debot.sol -------------------------------------------------------------------------------- /governance/SMV/SMVDeBot/deployProposal/deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ton-labs-contracts/HEAD/governance/SMV/SMVDeBot/deployProposal/deploy.sh -------------------------------------------------------------------------------- /governance/SMV/SMVDeBot/deployProposal/deployProposalDebot.abi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ton-labs-contracts/HEAD/governance/SMV/SMVDeBot/deployProposal/deployProposalDebot.abi.json -------------------------------------------------------------------------------- /governance/SMV/SMVDeBot/deployProposal/deployProposalDebot.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ton-labs-contracts/HEAD/governance/SMV/SMVDeBot/deployProposal/deployProposalDebot.sol -------------------------------------------------------------------------------- /governance/SMV/SMVDeBot/deployProposal/deployProposalDebot.tvc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ton-labs-contracts/HEAD/governance/SMV/SMVDeBot/deployProposal/deployProposalDebot.tvc -------------------------------------------------------------------------------- /governance/SMV/SMVDeBot/deployall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ton-labs-contracts/HEAD/governance/SMV/SMVDeBot/deployall.sh -------------------------------------------------------------------------------- /governance/SMV/SMVDeBot/msigHelper/Debot.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ton-labs-contracts/HEAD/governance/SMV/SMVDeBot/msigHelper/Debot.sol -------------------------------------------------------------------------------- /governance/SMV/SMVDeBot/msigHelper/SafeMultisigWallet.abi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ton-labs-contracts/HEAD/governance/SMV/SMVDeBot/msigHelper/SafeMultisigWallet.abi.json -------------------------------------------------------------------------------- /governance/SMV/SMVDeBot/msigHelper/deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ton-labs-contracts/HEAD/governance/SMV/SMVDeBot/msigHelper/deploy.sh -------------------------------------------------------------------------------- /governance/SMV/SMVDeBot/msigHelper/msigHelperDebot.abi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ton-labs-contracts/HEAD/governance/SMV/SMVDeBot/msigHelper/msigHelperDebot.abi.json -------------------------------------------------------------------------------- /governance/SMV/SMVDeBot/msigHelper/msigHelperDebot.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ton-labs-contracts/HEAD/governance/SMV/SMVDeBot/msigHelper/msigHelperDebot.sol -------------------------------------------------------------------------------- /governance/SMV/SMVDeBot/msigHelper/msigHelperDebot.tvc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ton-labs-contracts/HEAD/governance/SMV/SMVDeBot/msigHelper/msigHelperDebot.tvc -------------------------------------------------------------------------------- /governance/SMV/SMVDeBot/multiballot/Debot.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ton-labs-contracts/HEAD/governance/SMV/SMVDeBot/multiballot/Debot.sol -------------------------------------------------------------------------------- /governance/SMV/SMVDeBot/multiballot/MultiBallotDebot.abi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ton-labs-contracts/HEAD/governance/SMV/SMVDeBot/multiballot/MultiBallotDebot.abi.json -------------------------------------------------------------------------------- /governance/SMV/SMVDeBot/multiballot/MultiBallotDebot.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ton-labs-contracts/HEAD/governance/SMV/SMVDeBot/multiballot/MultiBallotDebot.sol -------------------------------------------------------------------------------- /governance/SMV/SMVDeBot/multiballot/MultiBallotDebot.tvc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ton-labs-contracts/HEAD/governance/SMV/SMVDeBot/multiballot/MultiBallotDebot.tvc -------------------------------------------------------------------------------- /governance/SMV/SMVDeBot/multiballot/deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ton-labs-contracts/HEAD/governance/SMV/SMVDeBot/multiballot/deploy.sh -------------------------------------------------------------------------------- /governance/SMV/SMVDeBot/proposalRoot/Debot.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ton-labs-contracts/HEAD/governance/SMV/SMVDeBot/proposalRoot/Debot.sol -------------------------------------------------------------------------------- /governance/SMV/SMVDeBot/proposalRoot/deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ton-labs-contracts/HEAD/governance/SMV/SMVDeBot/proposalRoot/deploy.sh -------------------------------------------------------------------------------- /governance/SMV/SMVDeBot/proposalRoot/proposalRootDebot.abi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ton-labs-contracts/HEAD/governance/SMV/SMVDeBot/proposalRoot/proposalRootDebot.abi.json -------------------------------------------------------------------------------- /governance/SMV/SMVDeBot/proposalRoot/proposalRootDebot.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ton-labs-contracts/HEAD/governance/SMV/SMVDeBot/proposalRoot/proposalRootDebot.sol -------------------------------------------------------------------------------- /governance/SMV/SMVDeBot/proposalRoot/proposalRootDebot.tvc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ton-labs-contracts/HEAD/governance/SMV/SMVDeBot/proposalRoot/proposalRootDebot.tvc -------------------------------------------------------------------------------- /governance/SMV/SMVDeBot/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ton-labs-contracts/HEAD/governance/SMV/SMVDeBot/run.sh -------------------------------------------------------------------------------- /governance/SMV/SMVDeBot/smvStats/Debot.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ton-labs-contracts/HEAD/governance/SMV/SMVDeBot/smvStats/Debot.sol -------------------------------------------------------------------------------- /governance/SMV/SMVDeBot/smvStats/deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ton-labs-contracts/HEAD/governance/SMV/SMVDeBot/smvStats/deploy.sh -------------------------------------------------------------------------------- /governance/SMV/SMVDeBot/smvStats/smvStatDebot.abi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ton-labs-contracts/HEAD/governance/SMV/SMVDeBot/smvStats/smvStatDebot.abi.json -------------------------------------------------------------------------------- /governance/SMV/SMVDeBot/smvStats/smvStatDebot.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ton-labs-contracts/HEAD/governance/SMV/SMVDeBot/smvStats/smvStatDebot.sol -------------------------------------------------------------------------------- /governance/SMV/SMVDeBot/smvStats/smvStatDebot.tvc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ton-labs-contracts/HEAD/governance/SMV/SMVDeBot/smvStats/smvStatDebot.tvc -------------------------------------------------------------------------------- /governance/SMV/SMVDeBot/superRoot/Debot.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ton-labs-contracts/HEAD/governance/SMV/SMVDeBot/superRoot/Debot.sol -------------------------------------------------------------------------------- /governance/SMV/SMVDeBot/superRoot/deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ton-labs-contracts/HEAD/governance/SMV/SMVDeBot/superRoot/deploy.sh -------------------------------------------------------------------------------- /governance/SMV/SMVDeBot/superRoot/superRootDebot.abi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ton-labs-contracts/HEAD/governance/SMV/SMVDeBot/superRoot/superRootDebot.abi.json -------------------------------------------------------------------------------- /governance/SMV/SMVDeBot/superRoot/superRootDebot.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ton-labs-contracts/HEAD/governance/SMV/SMVDeBot/superRoot/superRootDebot.sol -------------------------------------------------------------------------------- /governance/SMV/SMVDeBot/superRoot/superRootDebot.tvc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ton-labs-contracts/HEAD/governance/SMV/SMVDeBot/superRoot/superRootDebot.tvc -------------------------------------------------------------------------------- /governance/SMV/SMVStats.abi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ton-labs-contracts/HEAD/governance/SMV/SMVStats.abi -------------------------------------------------------------------------------- /governance/SMV/SMVStats.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ton-labs-contracts/HEAD/governance/SMV/SMVStats.cpp -------------------------------------------------------------------------------- /governance/SMV/SMVStats.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ton-labs-contracts/HEAD/governance/SMV/SMVStats.hpp -------------------------------------------------------------------------------- /governance/SMV/SMVStats.tvc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ton-labs-contracts/HEAD/governance/SMV/SMVStats.tvc -------------------------------------------------------------------------------- /governance/SMV/SuperRoot.abi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ton-labs-contracts/HEAD/governance/SMV/SuperRoot.abi -------------------------------------------------------------------------------- /governance/SMV/SuperRoot.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ton-labs-contracts/HEAD/governance/SMV/SuperRoot.cpp -------------------------------------------------------------------------------- /governance/SMV/SuperRoot.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ton-labs-contracts/HEAD/governance/SMV/SuperRoot.hpp -------------------------------------------------------------------------------- /governance/SMV/SuperRoot.tvc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ton-labs-contracts/HEAD/governance/SMV/SuperRoot.tvc -------------------------------------------------------------------------------- /governance/SMV/config.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ton-labs-contracts/HEAD/governance/SMV/config.hpp -------------------------------------------------------------------------------- /solidity/contest/FreeTonContest.abi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ton-labs-contracts/HEAD/solidity/contest/FreeTonContest.abi.json -------------------------------------------------------------------------------- /solidity/contest/FreeTonContest.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ton-labs-contracts/HEAD/solidity/contest/FreeTonContest.sol -------------------------------------------------------------------------------- /solidity/contest/FreeTonContest.tvc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ton-labs-contracts/HEAD/solidity/contest/FreeTonContest.tvc -------------------------------------------------------------------------------- /solidity/contest/IBaseData.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ton-labs-contracts/HEAD/solidity/contest/IBaseData.sol -------------------------------------------------------------------------------- /solidity/contest/IContestData.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ton-labs-contracts/HEAD/solidity/contest/IContestData.sol -------------------------------------------------------------------------------- /solidity/debots/Debot.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ton-labs-contracts/HEAD/solidity/debots/Debot.sol -------------------------------------------------------------------------------- /solidity/debots/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ton-labs-contracts/HEAD/solidity/debots/README.md -------------------------------------------------------------------------------- /solidity/debots/ludi/ludiDebot.abi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ton-labs-contracts/HEAD/solidity/debots/ludi/ludiDebot.abi.json -------------------------------------------------------------------------------- /solidity/debots/ludi/ludiDebot.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ton-labs-contracts/HEAD/solidity/debots/ludi/ludiDebot.sol -------------------------------------------------------------------------------- /solidity/debots/ludi/ludiDebot.tvc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ton-labs-contracts/HEAD/solidity/debots/ludi/ludiDebot.tvc -------------------------------------------------------------------------------- /solidity/debots/msig/msigDebot.abi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ton-labs-contracts/HEAD/solidity/debots/msig/msigDebot.abi.json -------------------------------------------------------------------------------- /solidity/debots/msig/msigDebot.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ton-labs-contracts/HEAD/solidity/debots/msig/msigDebot.sol -------------------------------------------------------------------------------- /solidity/debots/msig/msigDebot.tvc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ton-labs-contracts/HEAD/solidity/debots/msig/msigDebot.tvc -------------------------------------------------------------------------------- /solidity/depool/DePool.abi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ton-labs-contracts/HEAD/solidity/depool/DePool.abi.json -------------------------------------------------------------------------------- /solidity/depool/DePool.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ton-labs-contracts/HEAD/solidity/depool/DePool.sol -------------------------------------------------------------------------------- /solidity/depool/DePool.tvc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ton-labs-contracts/HEAD/solidity/depool/DePool.tvc -------------------------------------------------------------------------------- /solidity/depool/DePoolBase.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ton-labs-contracts/HEAD/solidity/depool/DePoolBase.sol -------------------------------------------------------------------------------- /solidity/depool/DePoolHelper.abi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ton-labs-contracts/HEAD/solidity/depool/DePoolHelper.abi.json -------------------------------------------------------------------------------- /solidity/depool/DePoolHelper.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ton-labs-contracts/HEAD/solidity/depool/DePoolHelper.sol -------------------------------------------------------------------------------- /solidity/depool/DePoolHelper.tvc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ton-labs-contracts/HEAD/solidity/depool/DePoolHelper.tvc -------------------------------------------------------------------------------- /solidity/depool/DePoolLib.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ton-labs-contracts/HEAD/solidity/depool/DePoolLib.sol -------------------------------------------------------------------------------- /solidity/depool/DePoolProxy.abi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ton-labs-contracts/HEAD/solidity/depool/DePoolProxy.abi.json -------------------------------------------------------------------------------- /solidity/depool/DePoolProxy.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ton-labs-contracts/HEAD/solidity/depool/DePoolProxy.sol -------------------------------------------------------------------------------- /solidity/depool/DePoolProxy.tvc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ton-labs-contracts/HEAD/solidity/depool/DePoolProxy.tvc -------------------------------------------------------------------------------- /solidity/depool/DePoolRounds.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ton-labs-contracts/HEAD/solidity/depool/DePoolRounds.sol -------------------------------------------------------------------------------- /solidity/depool/IDePool.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ton-labs-contracts/HEAD/solidity/depool/IDePool.sol -------------------------------------------------------------------------------- /solidity/depool/IDePoolInfoGetter.abi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ton-labs-contracts/HEAD/solidity/depool/IDePoolInfoGetter.abi.json -------------------------------------------------------------------------------- /solidity/depool/IDePoolInfoGetter.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ton-labs-contracts/HEAD/solidity/depool/IDePoolInfoGetter.sol -------------------------------------------------------------------------------- /solidity/depool/IElector.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ton-labs-contracts/HEAD/solidity/depool/IElector.sol -------------------------------------------------------------------------------- /solidity/depool/IParticipant.abi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ton-labs-contracts/HEAD/solidity/depool/IParticipant.abi.json -------------------------------------------------------------------------------- /solidity/depool/IParticipant.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ton-labs-contracts/HEAD/solidity/depool/IParticipant.sol -------------------------------------------------------------------------------- /solidity/depool/IProxy.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ton-labs-contracts/HEAD/solidity/depool/IProxy.sol -------------------------------------------------------------------------------- /solidity/depool/Participant.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ton-labs-contracts/HEAD/solidity/depool/Participant.sol -------------------------------------------------------------------------------- /solidity/depool/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ton-labs-contracts/HEAD/solidity/depool/README.md -------------------------------------------------------------------------------- /solidity/depress/DePress/DePress.abi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ton-labs-contracts/HEAD/solidity/depress/DePress/DePress.abi.json -------------------------------------------------------------------------------- /solidity/depress/DePress/DePress.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ton-labs-contracts/HEAD/solidity/depress/DePress/DePress.sol -------------------------------------------------------------------------------- /solidity/depress/DePress/DePress.tvc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ton-labs-contracts/HEAD/solidity/depress/DePress/DePress.tvc -------------------------------------------------------------------------------- /solidity/depress/DePressDeBot/DePressDeBot.abi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ton-labs-contracts/HEAD/solidity/depress/DePressDeBot/DePressDeBot.abi.json -------------------------------------------------------------------------------- /solidity/depress/DePressDeBot/DePressDeBot.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ton-labs-contracts/HEAD/solidity/depress/DePressDeBot/DePressDeBot.sol -------------------------------------------------------------------------------- /solidity/depress/DePressDeBot/DePressDeBot.tvc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ton-labs-contracts/HEAD/solidity/depress/DePressDeBot/DePressDeBot.tvc -------------------------------------------------------------------------------- /solidity/depress/DePressDeBot/DePress_tvc.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ton-labs-contracts/HEAD/solidity/depress/DePressDeBot/DePress_tvc.txt -------------------------------------------------------------------------------- /solidity/depress/DePressDeBot/Debot.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ton-labs-contracts/HEAD/solidity/depress/DePressDeBot/Debot.sol -------------------------------------------------------------------------------- /solidity/depress/DePressDeBot/Transferable.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ton-labs-contracts/HEAD/solidity/depress/DePressDeBot/Transferable.sol -------------------------------------------------------------------------------- /solidity/depress/DePressDeBot/Upgradable.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ton-labs-contracts/HEAD/solidity/depress/DePressDeBot/Upgradable.sol -------------------------------------------------------------------------------- /solidity/depress/DePressDeBot/deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ton-labs-contracts/HEAD/solidity/depress/DePressDeBot/deploy.sh -------------------------------------------------------------------------------- /solidity/depress/DePressDeBot/itf/Base64.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ton-labs-contracts/HEAD/solidity/depress/DePressDeBot/itf/Base64.sol -------------------------------------------------------------------------------- /solidity/depress/DePressDeBot/itf/Menu.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ton-labs-contracts/HEAD/solidity/depress/DePressDeBot/itf/Menu.sol -------------------------------------------------------------------------------- /solidity/depress/DePressDeBot/itf/Msg.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ton-labs-contracts/HEAD/solidity/depress/DePressDeBot/itf/Msg.sol -------------------------------------------------------------------------------- /solidity/depress/DePressDeBot/itf/Sdk.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ton-labs-contracts/HEAD/solidity/depress/DePressDeBot/itf/Sdk.sol -------------------------------------------------------------------------------- /solidity/depress/DePressDeBot/itf/Terminal.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ton-labs-contracts/HEAD/solidity/depress/DePressDeBot/itf/Terminal.sol -------------------------------------------------------------------------------- /solidity/depress/DePressMemberDeBot/DePressMemberDeBot.abi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ton-labs-contracts/HEAD/solidity/depress/DePressMemberDeBot/DePressMemberDeBot.abi.json -------------------------------------------------------------------------------- /solidity/depress/DePressMemberDeBot/DePressMemberDeBot.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ton-labs-contracts/HEAD/solidity/depress/DePressMemberDeBot/DePressMemberDeBot.sol -------------------------------------------------------------------------------- /solidity/depress/DePressMemberDeBot/DePressMemberDeBot.tvc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ton-labs-contracts/HEAD/solidity/depress/DePressMemberDeBot/DePressMemberDeBot.tvc -------------------------------------------------------------------------------- /solidity/depress/DePressMemberDeBot/DePress_tvc.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ton-labs-contracts/HEAD/solidity/depress/DePressMemberDeBot/DePress_tvc.txt -------------------------------------------------------------------------------- /solidity/depress/DePressMemberDeBot/Debot.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ton-labs-contracts/HEAD/solidity/depress/DePressMemberDeBot/Debot.sol -------------------------------------------------------------------------------- /solidity/depress/DePressMemberDeBot/Transferable.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ton-labs-contracts/HEAD/solidity/depress/DePressMemberDeBot/Transferable.sol -------------------------------------------------------------------------------- /solidity/depress/DePressMemberDeBot/Upgradable.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ton-labs-contracts/HEAD/solidity/depress/DePressMemberDeBot/Upgradable.sol -------------------------------------------------------------------------------- /solidity/depress/DePressMemberDeBot/deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ton-labs-contracts/HEAD/solidity/depress/DePressMemberDeBot/deploy.sh -------------------------------------------------------------------------------- /solidity/depress/DePressMemberDeBot/itf/AddressInput.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ton-labs-contracts/HEAD/solidity/depress/DePressMemberDeBot/itf/AddressInput.sol -------------------------------------------------------------------------------- /solidity/depress/DePressMemberDeBot/itf/Base64.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ton-labs-contracts/HEAD/solidity/depress/DePressMemberDeBot/itf/Base64.sol -------------------------------------------------------------------------------- /solidity/depress/DePressMemberDeBot/itf/Menu.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ton-labs-contracts/HEAD/solidity/depress/DePressMemberDeBot/itf/Menu.sol -------------------------------------------------------------------------------- /solidity/depress/DePressMemberDeBot/itf/Sdk.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ton-labs-contracts/HEAD/solidity/depress/DePressMemberDeBot/itf/Sdk.sol -------------------------------------------------------------------------------- /solidity/depress/DePressMemberDeBot/itf/Terminal.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ton-labs-contracts/HEAD/solidity/depress/DePressMemberDeBot/itf/Terminal.sol -------------------------------------------------------------------------------- /solidity/dod/dod.abi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ton-labs-contracts/HEAD/solidity/dod/dod.abi.json -------------------------------------------------------------------------------- /solidity/dod/dod.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ton-labs-contracts/HEAD/solidity/dod/dod.sol -------------------------------------------------------------------------------- /solidity/dod/dod.tvc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ton-labs-contracts/HEAD/solidity/dod/dod.tvc -------------------------------------------------------------------------------- /solidity/dod/dodDebot.abi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ton-labs-contracts/HEAD/solidity/dod/dodDebot.abi.json -------------------------------------------------------------------------------- /solidity/dod/dodDebot.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ton-labs-contracts/HEAD/solidity/dod/dodDebot.sol -------------------------------------------------------------------------------- /solidity/dod/dodDebot.tvc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ton-labs-contracts/HEAD/solidity/dod/dodDebot.tvc -------------------------------------------------------------------------------- /solidity/dod/idod.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ton-labs-contracts/HEAD/solidity/dod/idod.sol -------------------------------------------------------------------------------- /solidity/elector/Common.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ton-labs-contracts/HEAD/solidity/elector/Common.sol -------------------------------------------------------------------------------- /solidity/elector/Config.abi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ton-labs-contracts/HEAD/solidity/elector/Config.abi.json -------------------------------------------------------------------------------- /solidity/elector/Config.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ton-labs-contracts/HEAD/solidity/elector/Config.sol -------------------------------------------------------------------------------- /solidity/elector/Elector.abi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ton-labs-contracts/HEAD/solidity/elector/Elector.abi.json -------------------------------------------------------------------------------- /solidity/elector/Elector.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ton-labs-contracts/HEAD/solidity/elector/Elector.sol -------------------------------------------------------------------------------- /solidity/elector/Elector.tvc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ton-labs-contracts/HEAD/solidity/elector/Elector.tvc -------------------------------------------------------------------------------- /solidity/elector/IConfig.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ton-labs-contracts/HEAD/solidity/elector/IConfig.sol -------------------------------------------------------------------------------- /solidity/elector/IElector.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ton-labs-contracts/HEAD/solidity/elector/IElector.sol -------------------------------------------------------------------------------- /solidity/elector/IValidator.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ton-labs-contracts/HEAD/solidity/elector/IValidator.sol -------------------------------------------------------------------------------- /solidity/safemultisig/FormalVerification/About: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ton-labs-contracts/HEAD/solidity/safemultisig/FormalVerification/About -------------------------------------------------------------------------------- /solidity/safemultisig/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ton-labs-contracts/HEAD/solidity/safemultisig/README.md -------------------------------------------------------------------------------- /solidity/safemultisig/SafeMultisigWallet.abi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ton-labs-contracts/HEAD/solidity/safemultisig/SafeMultisigWallet.abi.json -------------------------------------------------------------------------------- /solidity/safemultisig/SafeMultisigWallet.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ton-labs-contracts/HEAD/solidity/safemultisig/SafeMultisigWallet.sol -------------------------------------------------------------------------------- /solidity/safemultisig/SafeMultisigWallet.tvc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ton-labs-contracts/HEAD/solidity/safemultisig/SafeMultisigWallet.tvc -------------------------------------------------------------------------------- /solidity/setcodemultisig/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ton-labs-contracts/HEAD/solidity/setcodemultisig/README.md -------------------------------------------------------------------------------- /solidity/setcodemultisig/SetcodeMultisigWallet.abi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ton-labs-contracts/HEAD/solidity/setcodemultisig/SetcodeMultisigWallet.abi.json -------------------------------------------------------------------------------- /solidity/setcodemultisig/SetcodeMultisigWallet.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ton-labs-contracts/HEAD/solidity/setcodemultisig/SetcodeMultisigWallet.sol -------------------------------------------------------------------------------- /solidity/setcodemultisig/SetcodeMultisigWallet.tvc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everx-labs/ton-labs-contracts/HEAD/solidity/setcodemultisig/SetcodeMultisigWallet.tvc --------------------------------------------------------------------------------