Skip to content

Commit

Permalink
updated reputation package
Browse files Browse the repository at this point in the history
  • Loading branch information
JacobHomanics committed Jul 2, 2024
1 parent 0493be8 commit 1793944
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 1,815 deletions.
7 changes: 6 additions & 1 deletion packages/foundry/script/DeployDemo.s.sol
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,9 @@ contract DeployDemoScript is ScaffoldETHDeploy {

address controller = 0x2F15D4A66D22ecC6967928b6A76Ab06897b05676; //replace with burner or other address from wallet!

string[] s_uris;
ReputationTokens.TokenType[] s_tokenTypes;

function run() external {
uint256 deployerPrivateKey = setupLocalhostEnv();
if (deployerPrivateKey == 0) {
Expand All @@ -34,7 +37,9 @@ contract DeployDemoScript is ScaffoldETHDeploy {
ReputationTokens instance = new ReputationTokens(
controller,
admins,
admins
admins,
s_tokenTypes,
s_uris
);

setupAccountWithAllRoles(instance, deployerPubKey);
Expand Down
Loading

0 comments on commit 1793944

Please sign in to comment.