Our mission with this project is to make ink! development faster, safer and easier.
Talk to us on Element in the OpenBrush channel
OpenBrush is a library for smart contract development on ink!.
Why use this library? - To make contracts interoperable to do safe cross-contracts calls (by having the same functions signature among every contracts) - To ensure the usage of Polkadot Standards Proposals [WIP] - To ensure the usage of the latest & most secure implementation - Useful contracts that provide custom logic to be implemented in contracts - To save time by not writing boilerplate code - Useful features which can simplify development
Which Standard tokens & useful contracts does it provide? - PSP22 - Fungible Token (ERC20 equivalent) with extensions - PSP34 - Non-Fungible Token (ERC721 equivalent) with extensions - Multi-Token ERC1155 equivalent with extensions - Ownable Restrict access to action for non-owners - Access Control Define set of roles and restrict access to action by roles - Reentrancy guard Prevent reentrant calls to a function - Pausable Pause/Unpause the contract to disable/enable some operations - Timelock Controller Execute transactions with some delay - Payment Splitter Split amount of native tokens between participants
Solidity smart contracts provides modifiers to restrain function call to certain pre-defined parameters. OpenBrush provides attribute macros to use standardised modifiers. You can use our useful contracts to use as modifiers, or define your own modifiers.
``rust
// Before execution of
mintmethod,
only_owner` should verify that caller is the owner.
fn mint(&mut self, idsamounts: Vec<(Id, Balance)>) -> Result<(), PSP1155Error> { self.mintto(Self::env().caller(), idsamounts) } ```
You are enough to have a trait definition (you don't need directly a contract that implements that trait) to call methods of that trait from some contract in the network (do a cross contract call).
```rust
pub trait Trait1 { #[ink(message)] fn foo(&mut self) -> bool; }
type Trait1Ref = dyn Trait1;
{
// It should be AccountId
of some contract in the network
let callee: openbrush::traits::AccountId = [1; 32].into();
// This code will execute a cross contract call to callee
contract
let resultoffoo: bool = Trait1Ref::foo(&callee);
}
```
Read our documentation in doc.
Go through our examples in examples
Not sure where to start? Use the interactive generator to bootstrap your contract and learn about the components offered in OpenBrush.
‼️ Important ‼️
Events are not supported currently due to how ink! currently handles them.
The identifiers of events must be based on the name of the trait. At the moment, ink! doesn't support it,
but it must be fixed with this issue.
All contracts are upgradable by default. It will be refactored after Storage rework in ink!.
------- Release 0.1.0
token
and access
folders.------- Release 0.2.0
openbrush::contract
macro to consume all openbrush's stuff before ink!.openbrush::trait_definition
which stores definition of trait and allow to use it in openbrush::contract
macro.impl_trait!
macro which reuse internal implementation in external impl section.panic!
and assert!
).------- Release 0.3.0
Ownable
+ ERC1155
example.impl_trait!
macro add support of default implementation in external trait definition.------- Release 1.0.0
------- Pre-release 2.0.0
------- Release 2.0.0 - Production ready
------- Release 3.0.0
------- Release 4.0.0
Proxy
pattern.Diamond
standard.To work with project you need to install ink! toolchain and NodeJS's dependencies.
- ink! toolchain
- NodeJS deps you can install via yarn
command
$ yarn build
If you want to build in release mode, you can use this command
$ yarn build:release
You can run unit tests by RUSTFLAGS="-D warnings" cargo test --all-features --workspace -- --test-threads=10
command from the root of the directory.
To run integration test you need to start the node with contract-pallet. - Setup and start the node with contract-pallet
After you can run tests by yarn run test
command. It will build all contracts required for integration tests and run them.
Contracts in this repository have not yet been audited. ink! will have soon several major changes, so it does not make sense to audit it now. ink! is not ready for production at the moment. It requires resolving some issues.
After that, we plan to do an audit.
OpenBrush is released under the MIT License.