forked from gnosisguild/zodiac-modifier-roles
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #4 from Kolektivo/feat/badge-based-permissioning
Feat: Badge based permissioning
- Loading branch information
Showing
13 changed files
with
1,341 additions
and
1,450 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
// SPDX-License-Identifier: GPL-3.0-or-later | ||
// Copyright (C) 2021 PrimeDao | ||
|
||
pragma solidity ^0.8.6; | ||
|
||
interface IBadger { | ||
function balanceOf(address account, uint256 id) | ||
external | ||
view | ||
returns (uint256); | ||
|
||
function mintBatch( | ||
address to, | ||
uint256[] memory ids, | ||
uint256[] memory amounts | ||
) external view returns (uint256); | ||
|
||
function mint( | ||
address account, | ||
uint256 id, | ||
uint256 amount | ||
) external; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.