├── .gitignore ├── LICENSE ├── README.md ├── basic-interaction-wallet-inplug-v2.ts ├── dist ├── wallet-da.fif ├── wallet.boc └── wallet.fif ├── env.ts ├── func ├── .plugin-jetton-control.fc ├── plugin-seed-in.fc ├── plugin.fc ├── stdlib.fc └── wallet.fc ├── package.json ├── test-wallet-inplug-v2.ts └── wallet-inplug-v2.ts /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | env.ts 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgramCrafter/wallet-contract/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgramCrafter/wallet-contract/HEAD/README.md -------------------------------------------------------------------------------- /basic-interaction-wallet-inplug-v2.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgramCrafter/wallet-contract/HEAD/basic-interaction-wallet-inplug-v2.ts -------------------------------------------------------------------------------- /dist/wallet-da.fif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgramCrafter/wallet-contract/HEAD/dist/wallet-da.fif -------------------------------------------------------------------------------- /dist/wallet.boc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgramCrafter/wallet-contract/HEAD/dist/wallet.boc -------------------------------------------------------------------------------- /dist/wallet.fif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgramCrafter/wallet-contract/HEAD/dist/wallet.fif -------------------------------------------------------------------------------- /env.ts: -------------------------------------------------------------------------------- 1 | export const mnemonic = 'apple '.repeat(24); 2 | -------------------------------------------------------------------------------- /func/.plugin-jetton-control.fc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgramCrafter/wallet-contract/HEAD/func/.plugin-jetton-control.fc -------------------------------------------------------------------------------- /func/plugin-seed-in.fc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgramCrafter/wallet-contract/HEAD/func/plugin-seed-in.fc -------------------------------------------------------------------------------- /func/plugin.fc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgramCrafter/wallet-contract/HEAD/func/plugin.fc -------------------------------------------------------------------------------- /func/stdlib.fc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgramCrafter/wallet-contract/HEAD/func/stdlib.fc -------------------------------------------------------------------------------- /func/wallet.fc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgramCrafter/wallet-contract/HEAD/func/wallet.fc -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgramCrafter/wallet-contract/HEAD/package.json -------------------------------------------------------------------------------- /test-wallet-inplug-v2.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgramCrafter/wallet-contract/HEAD/test-wallet-inplug-v2.ts -------------------------------------------------------------------------------- /wallet-inplug-v2.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgramCrafter/wallet-contract/HEAD/wallet-inplug-v2.ts --------------------------------------------------------------------------------