18 lines
530 B
Solidity
18 lines
530 B
Solidity
// SPDX-License-Identifier: MIT
|
|
|
|
pragma solidity ^0.6.0;
|
|
import "@openzeppelin/contracts/access/Ownable.sol";
|
|
import "./MerkleTreeWithHistory.sol";
|
|
|
|
contract OwnableMerkleTree is Ownable, MerkleTreeWithHistory {
|
|
constructor(uint32 _treeLevels, IHasher _hasher) public MerkleTreeWithHistory(_treeLevels, _hasher) {}
|
|
|
|
function insert(bytes32 _leaf) external onlyOwner returns (uint32 index) {
|
|
return _insert(_leaf);
|
|
}
|
|
|
|
function bulkInsert(bytes32[] calldata _leaves) external onlyOwner {
|
|
_bulkInsert(_leaves);
|
|
}
|
|
}
|