├── .gitignore ├── .gitlab-ci.yml ├── .gitmodules ├── LICENSE ├── README.md ├── contracts ├── rust │ ├── README.md │ ├── raw-incrementer │ │ ├── .cargo │ │ │ └── config │ │ ├── .gitignore │ │ ├── Cargo.lock │ │ ├── Cargo.toml │ │ ├── build.sh │ │ └── src │ │ │ ├── ext.rs │ │ │ └── lib.rs │ └── restore-contract │ │ ├── .cargo │ │ └── config │ │ ├── .gitignore │ │ ├── Cargo.lock │ │ ├── Cargo.toml │ │ ├── build.sh │ │ └── src │ │ ├── ext.rs │ │ └── lib.rs └── solidity │ ├── README.md │ ├── creator │ ├── build.sh │ └── creator.sol │ ├── erc20 │ └── erc20.sol │ └── flipper │ ├── build.sh │ └── flipper.sol ├── docker-compose.yml ├── index.js ├── package.json ├── test.sh ├── tests ├── consts.ts ├── contracts-assemblyscript.spec.ts ├── contracts-rust.spec.ts ├── contracts-solidity.spec.ts └── utils.ts ├── tsconfig.json ├── utils.sh └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/pallet-contracts-waterfall/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitlab-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/pallet-contracts-waterfall/HEAD/.gitlab-ci.yml -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/pallet-contracts-waterfall/HEAD/.gitmodules -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/pallet-contracts-waterfall/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/pallet-contracts-waterfall/HEAD/README.md -------------------------------------------------------------------------------- /contracts/rust/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/pallet-contracts-waterfall/HEAD/contracts/rust/README.md -------------------------------------------------------------------------------- /contracts/rust/raw-incrementer/.cargo/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/pallet-contracts-waterfall/HEAD/contracts/rust/raw-incrementer/.cargo/config -------------------------------------------------------------------------------- /contracts/rust/raw-incrementer/.gitignore: -------------------------------------------------------------------------------- 1 | /target -------------------------------------------------------------------------------- /contracts/rust/raw-incrementer/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/pallet-contracts-waterfall/HEAD/contracts/rust/raw-incrementer/Cargo.lock -------------------------------------------------------------------------------- /contracts/rust/raw-incrementer/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/pallet-contracts-waterfall/HEAD/contracts/rust/raw-incrementer/Cargo.toml -------------------------------------------------------------------------------- /contracts/rust/raw-incrementer/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/pallet-contracts-waterfall/HEAD/contracts/rust/raw-incrementer/build.sh -------------------------------------------------------------------------------- /contracts/rust/raw-incrementer/src/ext.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/pallet-contracts-waterfall/HEAD/contracts/rust/raw-incrementer/src/ext.rs -------------------------------------------------------------------------------- /contracts/rust/raw-incrementer/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/pallet-contracts-waterfall/HEAD/contracts/rust/raw-incrementer/src/lib.rs -------------------------------------------------------------------------------- /contracts/rust/restore-contract/.cargo/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/pallet-contracts-waterfall/HEAD/contracts/rust/restore-contract/.cargo/config -------------------------------------------------------------------------------- /contracts/rust/restore-contract/.gitignore: -------------------------------------------------------------------------------- 1 | /target -------------------------------------------------------------------------------- /contracts/rust/restore-contract/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/pallet-contracts-waterfall/HEAD/contracts/rust/restore-contract/Cargo.lock -------------------------------------------------------------------------------- /contracts/rust/restore-contract/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/pallet-contracts-waterfall/HEAD/contracts/rust/restore-contract/Cargo.toml -------------------------------------------------------------------------------- /contracts/rust/restore-contract/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/pallet-contracts-waterfall/HEAD/contracts/rust/restore-contract/build.sh -------------------------------------------------------------------------------- /contracts/rust/restore-contract/src/ext.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/pallet-contracts-waterfall/HEAD/contracts/rust/restore-contract/src/ext.rs -------------------------------------------------------------------------------- /contracts/rust/restore-contract/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/pallet-contracts-waterfall/HEAD/contracts/rust/restore-contract/src/lib.rs -------------------------------------------------------------------------------- /contracts/solidity/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/pallet-contracts-waterfall/HEAD/contracts/solidity/README.md -------------------------------------------------------------------------------- /contracts/solidity/creator/build.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | solang creator.sol 3 | -------------------------------------------------------------------------------- /contracts/solidity/creator/creator.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/pallet-contracts-waterfall/HEAD/contracts/solidity/creator/creator.sol -------------------------------------------------------------------------------- /contracts/solidity/erc20/erc20.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/pallet-contracts-waterfall/HEAD/contracts/solidity/erc20/erc20.sol -------------------------------------------------------------------------------- /contracts/solidity/flipper/build.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | solang flipper.sol 3 | -------------------------------------------------------------------------------- /contracts/solidity/flipper/flipper.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/pallet-contracts-waterfall/HEAD/contracts/solidity/flipper/flipper.sol -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/pallet-contracts-waterfall/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/pallet-contracts-waterfall/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/pallet-contracts-waterfall/HEAD/package.json -------------------------------------------------------------------------------- /test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/pallet-contracts-waterfall/HEAD/test.sh -------------------------------------------------------------------------------- /tests/consts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/pallet-contracts-waterfall/HEAD/tests/consts.ts -------------------------------------------------------------------------------- /tests/contracts-assemblyscript.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/pallet-contracts-waterfall/HEAD/tests/contracts-assemblyscript.spec.ts -------------------------------------------------------------------------------- /tests/contracts-rust.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/pallet-contracts-waterfall/HEAD/tests/contracts-rust.spec.ts -------------------------------------------------------------------------------- /tests/contracts-solidity.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/pallet-contracts-waterfall/HEAD/tests/contracts-solidity.spec.ts -------------------------------------------------------------------------------- /tests/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/pallet-contracts-waterfall/HEAD/tests/utils.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/pallet-contracts-waterfall/HEAD/tsconfig.json -------------------------------------------------------------------------------- /utils.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/pallet-contracts-waterfall/HEAD/utils.sh -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/pallet-contracts-waterfall/HEAD/yarn.lock --------------------------------------------------------------------------------