├── .gitignore ├── .gitmodules ├── .prettierignore ├── .prettierrc ├── LICENSE ├── PoolConstants.ts ├── Readme.md ├── contracts ├── address_calculations.func ├── asserts.func ├── auto │ └── .gitignore ├── controller.func ├── dao_params.func ├── errors.func ├── governor_requests.func ├── halter_requests.func ├── interaction.tlb ├── librarian.func ├── messages.func ├── metadata_utils.func ├── network_config_utils.func ├── op-codes.func ├── payout_nft │ ├── errors.func │ ├── messages.func │ ├── metadata_utils.func │ ├── nft-collection.func │ ├── nft-item.func │ ├── op-codes.func │ ├── params.func │ ├── stdlib.func │ └── types.func ├── pool.func ├── pool_mint_helpers.func ├── pool_storage.func ├── stdlib.func ├── sudoer_requests.func ├── types.func └── versioning.func ├── docs ├── controller.md ├── get-method-interface.md ├── images │ ├── controller-states.drawio │ ├── controller-states.png │ ├── pool-scheme.drawio │ ├── pool-scheme.png │ ├── scheme.drawio │ └── scheme.png ├── launching.md ├── peculiarities.md └── pool.md ├── elector ├── config-code.fc └── elector-code.fc ├── fees.ts ├── fift-scripts ├── controller-elect-signed.fif ├── deploy_controller0.boc ├── deploy_controller1.boc ├── deposit.boc ├── generate-loan-request.fif ├── recover_stake.boc ├── return_unused_loan.boc ├── top-up.boc ├── update_validator_hash.boc └── withdraw-controller.fif ├── jest.config.ts ├── package.json ├── scripts └── deployPool.ts ├── tests ├── Controller.spec.ts ├── ControllerPool.spec.ts ├── DepositFees.spec.ts ├── Governor.spec.ts ├── Integrational.spec.ts ├── NFTDistributor.spec.ts ├── Smoke.spec_outdated.ts ├── SmokeNFT.spec.ts ├── SmokeOptimistic.spec_outdated.ts ├── SmokeOptimisticNFT.spec.ts └── WithdrawFees.spec.ts ├── tsconfig.json ├── utils.ts └── wrappers ├── Config.compile.ts ├── Config.ts ├── ConfigTest.ts ├── Controller.compile.ts ├── Controller.ts ├── DAOJettonMinter.compile.ts ├── DAOJettonWallet.compile.ts ├── DAOVoteKeeper.compile.ts ├── DAOVoting.compile.ts ├── Elector.compile.ts ├── Elector.ts ├── ElectorTest.ts ├── JettonWallet.ts ├── Librarian.compile.ts ├── Librarian.ts ├── PayoutMinter.compile.ts ├── PayoutNFTCollection.compile.ts ├── PayoutNFTCollection.ts ├── PayoutNFTItem.compile.ts ├── PayoutNFTItem.ts ├── PayoutWallet.compile.ts ├── Pool.compile.ts ├── Pool.ts ├── ValidatorUtils.ts └── VotingResults.compile.ts /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | temp 3 | build 4 | yarn.lock 5 | vim.session 6 | -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/liquid-staking-contract/HEAD/.gitmodules -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | build 2 | -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/liquid-staking-contract/HEAD/.prettierrc -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/liquid-staking-contract/HEAD/LICENSE -------------------------------------------------------------------------------- /PoolConstants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/liquid-staking-contract/HEAD/PoolConstants.ts -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/liquid-staking-contract/HEAD/Readme.md -------------------------------------------------------------------------------- /contracts/address_calculations.func: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/liquid-staking-contract/HEAD/contracts/address_calculations.func -------------------------------------------------------------------------------- /contracts/asserts.func: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/liquid-staking-contract/HEAD/contracts/asserts.func -------------------------------------------------------------------------------- /contracts/auto/.gitignore: -------------------------------------------------------------------------------- 1 | *.func 2 | *.fc 3 | -------------------------------------------------------------------------------- /contracts/controller.func: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/liquid-staking-contract/HEAD/contracts/controller.func -------------------------------------------------------------------------------- /contracts/dao_params.func: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/liquid-staking-contract/HEAD/contracts/dao_params.func -------------------------------------------------------------------------------- /contracts/errors.func: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/liquid-staking-contract/HEAD/contracts/errors.func -------------------------------------------------------------------------------- /contracts/governor_requests.func: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/liquid-staking-contract/HEAD/contracts/governor_requests.func -------------------------------------------------------------------------------- /contracts/halter_requests.func: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/liquid-staking-contract/HEAD/contracts/halter_requests.func -------------------------------------------------------------------------------- /contracts/interaction.tlb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/liquid-staking-contract/HEAD/contracts/interaction.tlb -------------------------------------------------------------------------------- /contracts/librarian.func: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/liquid-staking-contract/HEAD/contracts/librarian.func -------------------------------------------------------------------------------- /contracts/messages.func: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/liquid-staking-contract/HEAD/contracts/messages.func -------------------------------------------------------------------------------- /contracts/metadata_utils.func: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/liquid-staking-contract/HEAD/contracts/metadata_utils.func -------------------------------------------------------------------------------- /contracts/network_config_utils.func: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/liquid-staking-contract/HEAD/contracts/network_config_utils.func -------------------------------------------------------------------------------- /contracts/op-codes.func: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/liquid-staking-contract/HEAD/contracts/op-codes.func -------------------------------------------------------------------------------- /contracts/payout_nft/errors.func: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/liquid-staking-contract/HEAD/contracts/payout_nft/errors.func -------------------------------------------------------------------------------- /contracts/payout_nft/messages.func: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/liquid-staking-contract/HEAD/contracts/payout_nft/messages.func -------------------------------------------------------------------------------- /contracts/payout_nft/metadata_utils.func: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/liquid-staking-contract/HEAD/contracts/payout_nft/metadata_utils.func -------------------------------------------------------------------------------- /contracts/payout_nft/nft-collection.func: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/liquid-staking-contract/HEAD/contracts/payout_nft/nft-collection.func -------------------------------------------------------------------------------- /contracts/payout_nft/nft-item.func: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/liquid-staking-contract/HEAD/contracts/payout_nft/nft-item.func -------------------------------------------------------------------------------- /contracts/payout_nft/op-codes.func: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/liquid-staking-contract/HEAD/contracts/payout_nft/op-codes.func -------------------------------------------------------------------------------- /contracts/payout_nft/params.func: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/liquid-staking-contract/HEAD/contracts/payout_nft/params.func -------------------------------------------------------------------------------- /contracts/payout_nft/stdlib.func: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/liquid-staking-contract/HEAD/contracts/payout_nft/stdlib.func -------------------------------------------------------------------------------- /contracts/payout_nft/types.func: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/liquid-staking-contract/HEAD/contracts/payout_nft/types.func -------------------------------------------------------------------------------- /contracts/pool.func: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/liquid-staking-contract/HEAD/contracts/pool.func -------------------------------------------------------------------------------- /contracts/pool_mint_helpers.func: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/liquid-staking-contract/HEAD/contracts/pool_mint_helpers.func -------------------------------------------------------------------------------- /contracts/pool_storage.func: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/liquid-staking-contract/HEAD/contracts/pool_storage.func -------------------------------------------------------------------------------- /contracts/stdlib.func: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/liquid-staking-contract/HEAD/contracts/stdlib.func -------------------------------------------------------------------------------- /contracts/sudoer_requests.func: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/liquid-staking-contract/HEAD/contracts/sudoer_requests.func -------------------------------------------------------------------------------- /contracts/types.func: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/liquid-staking-contract/HEAD/contracts/types.func -------------------------------------------------------------------------------- /contracts/versioning.func: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/liquid-staking-contract/HEAD/contracts/versioning.func -------------------------------------------------------------------------------- /docs/controller.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/liquid-staking-contract/HEAD/docs/controller.md -------------------------------------------------------------------------------- /docs/get-method-interface.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/liquid-staking-contract/HEAD/docs/get-method-interface.md -------------------------------------------------------------------------------- /docs/images/controller-states.drawio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/liquid-staking-contract/HEAD/docs/images/controller-states.drawio -------------------------------------------------------------------------------- /docs/images/controller-states.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/liquid-staking-contract/HEAD/docs/images/controller-states.png -------------------------------------------------------------------------------- /docs/images/pool-scheme.drawio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/liquid-staking-contract/HEAD/docs/images/pool-scheme.drawio -------------------------------------------------------------------------------- /docs/images/pool-scheme.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/liquid-staking-contract/HEAD/docs/images/pool-scheme.png -------------------------------------------------------------------------------- /docs/images/scheme.drawio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/liquid-staking-contract/HEAD/docs/images/scheme.drawio -------------------------------------------------------------------------------- /docs/images/scheme.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/liquid-staking-contract/HEAD/docs/images/scheme.png -------------------------------------------------------------------------------- /docs/launching.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/liquid-staking-contract/HEAD/docs/launching.md -------------------------------------------------------------------------------- /docs/peculiarities.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/liquid-staking-contract/HEAD/docs/peculiarities.md -------------------------------------------------------------------------------- /docs/pool.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/liquid-staking-contract/HEAD/docs/pool.md -------------------------------------------------------------------------------- /elector/config-code.fc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/liquid-staking-contract/HEAD/elector/config-code.fc -------------------------------------------------------------------------------- /elector/elector-code.fc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/liquid-staking-contract/HEAD/elector/elector-code.fc -------------------------------------------------------------------------------- /fees.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/liquid-staking-contract/HEAD/fees.ts -------------------------------------------------------------------------------- /fift-scripts/controller-elect-signed.fif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/liquid-staking-contract/HEAD/fift-scripts/controller-elect-signed.fif -------------------------------------------------------------------------------- /fift-scripts/deploy_controller0.boc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/liquid-staking-contract/HEAD/fift-scripts/deploy_controller0.boc -------------------------------------------------------------------------------- /fift-scripts/deploy_controller1.boc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/liquid-staking-contract/HEAD/fift-scripts/deploy_controller1.boc -------------------------------------------------------------------------------- /fift-scripts/deposit.boc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/liquid-staking-contract/HEAD/fift-scripts/deposit.boc -------------------------------------------------------------------------------- /fift-scripts/generate-loan-request.fif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/liquid-staking-contract/HEAD/fift-scripts/generate-loan-request.fif -------------------------------------------------------------------------------- /fift-scripts/recover_stake.boc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/liquid-staking-contract/HEAD/fift-scripts/recover_stake.boc -------------------------------------------------------------------------------- /fift-scripts/return_unused_loan.boc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/liquid-staking-contract/HEAD/fift-scripts/return_unused_loan.boc -------------------------------------------------------------------------------- /fift-scripts/top-up.boc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/liquid-staking-contract/HEAD/fift-scripts/top-up.boc -------------------------------------------------------------------------------- /fift-scripts/update_validator_hash.boc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/liquid-staking-contract/HEAD/fift-scripts/update_validator_hash.boc -------------------------------------------------------------------------------- /fift-scripts/withdraw-controller.fif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/liquid-staking-contract/HEAD/fift-scripts/withdraw-controller.fif -------------------------------------------------------------------------------- /jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/liquid-staking-contract/HEAD/jest.config.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/liquid-staking-contract/HEAD/package.json -------------------------------------------------------------------------------- /scripts/deployPool.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/liquid-staking-contract/HEAD/scripts/deployPool.ts -------------------------------------------------------------------------------- /tests/Controller.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/liquid-staking-contract/HEAD/tests/Controller.spec.ts -------------------------------------------------------------------------------- /tests/ControllerPool.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/liquid-staking-contract/HEAD/tests/ControllerPool.spec.ts -------------------------------------------------------------------------------- /tests/DepositFees.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/liquid-staking-contract/HEAD/tests/DepositFees.spec.ts -------------------------------------------------------------------------------- /tests/Governor.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/liquid-staking-contract/HEAD/tests/Governor.spec.ts -------------------------------------------------------------------------------- /tests/Integrational.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/liquid-staking-contract/HEAD/tests/Integrational.spec.ts -------------------------------------------------------------------------------- /tests/NFTDistributor.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/liquid-staking-contract/HEAD/tests/NFTDistributor.spec.ts -------------------------------------------------------------------------------- /tests/Smoke.spec_outdated.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/liquid-staking-contract/HEAD/tests/Smoke.spec_outdated.ts -------------------------------------------------------------------------------- /tests/SmokeNFT.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/liquid-staking-contract/HEAD/tests/SmokeNFT.spec.ts -------------------------------------------------------------------------------- /tests/SmokeOptimistic.spec_outdated.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/liquid-staking-contract/HEAD/tests/SmokeOptimistic.spec_outdated.ts -------------------------------------------------------------------------------- /tests/SmokeOptimisticNFT.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/liquid-staking-contract/HEAD/tests/SmokeOptimisticNFT.spec.ts -------------------------------------------------------------------------------- /tests/WithdrawFees.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/liquid-staking-contract/HEAD/tests/WithdrawFees.spec.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/liquid-staking-contract/HEAD/tsconfig.json -------------------------------------------------------------------------------- /utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/liquid-staking-contract/HEAD/utils.ts -------------------------------------------------------------------------------- /wrappers/Config.compile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/liquid-staking-contract/HEAD/wrappers/Config.compile.ts -------------------------------------------------------------------------------- /wrappers/Config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/liquid-staking-contract/HEAD/wrappers/Config.ts -------------------------------------------------------------------------------- /wrappers/ConfigTest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/liquid-staking-contract/HEAD/wrappers/ConfigTest.ts -------------------------------------------------------------------------------- /wrappers/Controller.compile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/liquid-staking-contract/HEAD/wrappers/Controller.compile.ts -------------------------------------------------------------------------------- /wrappers/Controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/liquid-staking-contract/HEAD/wrappers/Controller.ts -------------------------------------------------------------------------------- /wrappers/DAOJettonMinter.compile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/liquid-staking-contract/HEAD/wrappers/DAOJettonMinter.compile.ts -------------------------------------------------------------------------------- /wrappers/DAOJettonWallet.compile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/liquid-staking-contract/HEAD/wrappers/DAOJettonWallet.compile.ts -------------------------------------------------------------------------------- /wrappers/DAOVoteKeeper.compile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/liquid-staking-contract/HEAD/wrappers/DAOVoteKeeper.compile.ts -------------------------------------------------------------------------------- /wrappers/DAOVoting.compile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/liquid-staking-contract/HEAD/wrappers/DAOVoting.compile.ts -------------------------------------------------------------------------------- /wrappers/Elector.compile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/liquid-staking-contract/HEAD/wrappers/Elector.compile.ts -------------------------------------------------------------------------------- /wrappers/Elector.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/liquid-staking-contract/HEAD/wrappers/Elector.ts -------------------------------------------------------------------------------- /wrappers/ElectorTest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/liquid-staking-contract/HEAD/wrappers/ElectorTest.ts -------------------------------------------------------------------------------- /wrappers/JettonWallet.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/liquid-staking-contract/HEAD/wrappers/JettonWallet.ts -------------------------------------------------------------------------------- /wrappers/Librarian.compile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/liquid-staking-contract/HEAD/wrappers/Librarian.compile.ts -------------------------------------------------------------------------------- /wrappers/Librarian.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/liquid-staking-contract/HEAD/wrappers/Librarian.ts -------------------------------------------------------------------------------- /wrappers/PayoutMinter.compile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/liquid-staking-contract/HEAD/wrappers/PayoutMinter.compile.ts -------------------------------------------------------------------------------- /wrappers/PayoutNFTCollection.compile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/liquid-staking-contract/HEAD/wrappers/PayoutNFTCollection.compile.ts -------------------------------------------------------------------------------- /wrappers/PayoutNFTCollection.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/liquid-staking-contract/HEAD/wrappers/PayoutNFTCollection.ts -------------------------------------------------------------------------------- /wrappers/PayoutNFTItem.compile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/liquid-staking-contract/HEAD/wrappers/PayoutNFTItem.compile.ts -------------------------------------------------------------------------------- /wrappers/PayoutNFTItem.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/liquid-staking-contract/HEAD/wrappers/PayoutNFTItem.ts -------------------------------------------------------------------------------- /wrappers/PayoutWallet.compile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/liquid-staking-contract/HEAD/wrappers/PayoutWallet.compile.ts -------------------------------------------------------------------------------- /wrappers/Pool.compile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/liquid-staking-contract/HEAD/wrappers/Pool.compile.ts -------------------------------------------------------------------------------- /wrappers/Pool.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/liquid-staking-contract/HEAD/wrappers/Pool.ts -------------------------------------------------------------------------------- /wrappers/ValidatorUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/liquid-staking-contract/HEAD/wrappers/ValidatorUtils.ts -------------------------------------------------------------------------------- /wrappers/VotingResults.compile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/liquid-staking-contract/HEAD/wrappers/VotingResults.compile.ts --------------------------------------------------------------------------------