├── .gitignore ├── README.md ├── coupons ├── README.md ├── contracts │ ├── helper.fc │ ├── imports │ │ └── stdlib.fc │ ├── multi_cheque.fc │ ├── one_time_cheque.fc │ ├── scheme.tlb │ ├── toncoin.fif │ └── toncoin_for_multi_cheque.fif ├── jest.config.ts ├── package-lock.json ├── package.json ├── scripts │ ├── claimMultiCheque.ts │ ├── claimOneTimeCheque.ts │ ├── deployMultiCheque.ts │ ├── deployOneTimeCheque.ts │ └── destroyMultiCheque.ts ├── tests │ ├── MultiCheque.spec.ts │ └── OneTimeCheque.spec.ts ├── tsconfig.json └── wrappers │ ├── Helper.compile.ts │ ├── MultiCheque.compile.ts │ ├── MultiCheque.ts │ ├── OneTimeCheque.compile.ts │ └── OneTimeCheque.ts ├── fungible-token ├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── build │ └── .gitkeep ├── fift │ ├── burn.fif │ ├── deploy.fif │ ├── metadata.fif │ ├── minttokens.fif │ ├── ownership.fif │ └── utils │ │ ├── DeLabUtil.fif │ │ └── config.fif ├── func │ ├── common.fc │ ├── libs │ │ ├── delib.fc │ │ └── stdlib.fc │ ├── root.fc │ ├── utils │ │ ├── context.fc │ │ └── scheme.fc │ ├── wall.fc │ └── wallet │ │ └── shared.fc ├── sample.conf └── scheme.tlb └── jetton-pool ├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── deploy.fif ├── func ├── libs │ ├── delib.fc │ └── stdlib.fc ├── main.fc ├── store.fc └── utils │ ├── consts.fc │ ├── context.fc │ └── scheme.fc └── sample.conf /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delab-team/contracts/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delab-team/contracts/HEAD/README.md -------------------------------------------------------------------------------- /coupons/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delab-team/contracts/HEAD/coupons/README.md -------------------------------------------------------------------------------- /coupons/contracts/helper.fc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delab-team/contracts/HEAD/coupons/contracts/helper.fc -------------------------------------------------------------------------------- /coupons/contracts/imports/stdlib.fc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delab-team/contracts/HEAD/coupons/contracts/imports/stdlib.fc -------------------------------------------------------------------------------- /coupons/contracts/multi_cheque.fc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delab-team/contracts/HEAD/coupons/contracts/multi_cheque.fc -------------------------------------------------------------------------------- /coupons/contracts/one_time_cheque.fc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delab-team/contracts/HEAD/coupons/contracts/one_time_cheque.fc -------------------------------------------------------------------------------- /coupons/contracts/scheme.tlb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delab-team/contracts/HEAD/coupons/contracts/scheme.tlb -------------------------------------------------------------------------------- /coupons/contracts/toncoin.fif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delab-team/contracts/HEAD/coupons/contracts/toncoin.fif -------------------------------------------------------------------------------- /coupons/contracts/toncoin_for_multi_cheque.fif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delab-team/contracts/HEAD/coupons/contracts/toncoin_for_multi_cheque.fif -------------------------------------------------------------------------------- /coupons/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delab-team/contracts/HEAD/coupons/jest.config.ts -------------------------------------------------------------------------------- /coupons/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delab-team/contracts/HEAD/coupons/package-lock.json -------------------------------------------------------------------------------- /coupons/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delab-team/contracts/HEAD/coupons/package.json -------------------------------------------------------------------------------- /coupons/scripts/claimMultiCheque.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delab-team/contracts/HEAD/coupons/scripts/claimMultiCheque.ts -------------------------------------------------------------------------------- /coupons/scripts/claimOneTimeCheque.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delab-team/contracts/HEAD/coupons/scripts/claimOneTimeCheque.ts -------------------------------------------------------------------------------- /coupons/scripts/deployMultiCheque.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delab-team/contracts/HEAD/coupons/scripts/deployMultiCheque.ts -------------------------------------------------------------------------------- /coupons/scripts/deployOneTimeCheque.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delab-team/contracts/HEAD/coupons/scripts/deployOneTimeCheque.ts -------------------------------------------------------------------------------- /coupons/scripts/destroyMultiCheque.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delab-team/contracts/HEAD/coupons/scripts/destroyMultiCheque.ts -------------------------------------------------------------------------------- /coupons/tests/MultiCheque.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delab-team/contracts/HEAD/coupons/tests/MultiCheque.spec.ts -------------------------------------------------------------------------------- /coupons/tests/OneTimeCheque.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delab-team/contracts/HEAD/coupons/tests/OneTimeCheque.spec.ts -------------------------------------------------------------------------------- /coupons/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delab-team/contracts/HEAD/coupons/tsconfig.json -------------------------------------------------------------------------------- /coupons/wrappers/Helper.compile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delab-team/contracts/HEAD/coupons/wrappers/Helper.compile.ts -------------------------------------------------------------------------------- /coupons/wrappers/MultiCheque.compile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delab-team/contracts/HEAD/coupons/wrappers/MultiCheque.compile.ts -------------------------------------------------------------------------------- /coupons/wrappers/MultiCheque.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delab-team/contracts/HEAD/coupons/wrappers/MultiCheque.ts -------------------------------------------------------------------------------- /coupons/wrappers/OneTimeCheque.compile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delab-team/contracts/HEAD/coupons/wrappers/OneTimeCheque.compile.ts -------------------------------------------------------------------------------- /coupons/wrappers/OneTimeCheque.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delab-team/contracts/HEAD/coupons/wrappers/OneTimeCheque.ts -------------------------------------------------------------------------------- /fungible-token/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delab-team/contracts/HEAD/fungible-token/.gitignore -------------------------------------------------------------------------------- /fungible-token/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delab-team/contracts/HEAD/fungible-token/LICENSE -------------------------------------------------------------------------------- /fungible-token/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delab-team/contracts/HEAD/fungible-token/Makefile -------------------------------------------------------------------------------- /fungible-token/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delab-team/contracts/HEAD/fungible-token/README.md -------------------------------------------------------------------------------- /fungible-token/build/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /fungible-token/fift/burn.fif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delab-team/contracts/HEAD/fungible-token/fift/burn.fif -------------------------------------------------------------------------------- /fungible-token/fift/deploy.fif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delab-team/contracts/HEAD/fungible-token/fift/deploy.fif -------------------------------------------------------------------------------- /fungible-token/fift/metadata.fif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delab-team/contracts/HEAD/fungible-token/fift/metadata.fif -------------------------------------------------------------------------------- /fungible-token/fift/minttokens.fif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delab-team/contracts/HEAD/fungible-token/fift/minttokens.fif -------------------------------------------------------------------------------- /fungible-token/fift/ownership.fif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delab-team/contracts/HEAD/fungible-token/fift/ownership.fif -------------------------------------------------------------------------------- /fungible-token/fift/utils/DeLabUtil.fif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delab-team/contracts/HEAD/fungible-token/fift/utils/DeLabUtil.fif -------------------------------------------------------------------------------- /fungible-token/fift/utils/config.fif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delab-team/contracts/HEAD/fungible-token/fift/utils/config.fif -------------------------------------------------------------------------------- /fungible-token/func/common.fc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delab-team/contracts/HEAD/fungible-token/func/common.fc -------------------------------------------------------------------------------- /fungible-token/func/libs/delib.fc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delab-team/contracts/HEAD/fungible-token/func/libs/delib.fc -------------------------------------------------------------------------------- /fungible-token/func/libs/stdlib.fc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delab-team/contracts/HEAD/fungible-token/func/libs/stdlib.fc -------------------------------------------------------------------------------- /fungible-token/func/root.fc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delab-team/contracts/HEAD/fungible-token/func/root.fc -------------------------------------------------------------------------------- /fungible-token/func/utils/context.fc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delab-team/contracts/HEAD/fungible-token/func/utils/context.fc -------------------------------------------------------------------------------- /fungible-token/func/utils/scheme.fc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delab-team/contracts/HEAD/fungible-token/func/utils/scheme.fc -------------------------------------------------------------------------------- /fungible-token/func/wall.fc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delab-team/contracts/HEAD/fungible-token/func/wall.fc -------------------------------------------------------------------------------- /fungible-token/func/wallet/shared.fc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delab-team/contracts/HEAD/fungible-token/func/wallet/shared.fc -------------------------------------------------------------------------------- /fungible-token/sample.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delab-team/contracts/HEAD/fungible-token/sample.conf -------------------------------------------------------------------------------- /fungible-token/scheme.tlb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delab-team/contracts/HEAD/fungible-token/scheme.tlb -------------------------------------------------------------------------------- /jetton-pool/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delab-team/contracts/HEAD/jetton-pool/.gitignore -------------------------------------------------------------------------------- /jetton-pool/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delab-team/contracts/HEAD/jetton-pool/LICENSE -------------------------------------------------------------------------------- /jetton-pool/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delab-team/contracts/HEAD/jetton-pool/Makefile -------------------------------------------------------------------------------- /jetton-pool/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delab-team/contracts/HEAD/jetton-pool/README.md -------------------------------------------------------------------------------- /jetton-pool/deploy.fif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delab-team/contracts/HEAD/jetton-pool/deploy.fif -------------------------------------------------------------------------------- /jetton-pool/func/libs/delib.fc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delab-team/contracts/HEAD/jetton-pool/func/libs/delib.fc -------------------------------------------------------------------------------- /jetton-pool/func/libs/stdlib.fc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delab-team/contracts/HEAD/jetton-pool/func/libs/stdlib.fc -------------------------------------------------------------------------------- /jetton-pool/func/main.fc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delab-team/contracts/HEAD/jetton-pool/func/main.fc -------------------------------------------------------------------------------- /jetton-pool/func/store.fc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delab-team/contracts/HEAD/jetton-pool/func/store.fc -------------------------------------------------------------------------------- /jetton-pool/func/utils/consts.fc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delab-team/contracts/HEAD/jetton-pool/func/utils/consts.fc -------------------------------------------------------------------------------- /jetton-pool/func/utils/context.fc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delab-team/contracts/HEAD/jetton-pool/func/utils/context.fc -------------------------------------------------------------------------------- /jetton-pool/func/utils/scheme.fc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delab-team/contracts/HEAD/jetton-pool/func/utils/scheme.fc -------------------------------------------------------------------------------- /jetton-pool/sample.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delab-team/contracts/HEAD/jetton-pool/sample.conf --------------------------------------------------------------------------------