-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
f22a8ea
commit eefb5f6
Showing
3 changed files
with
108 additions
and
108 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 |
---|---|---|
@@ -1,47 +1,47 @@ | ||
//SPDX-License-Identifier: MIT | ||
pragma solidity ^0.8.19; | ||
|
||
import {console} from "forge-std/console.sol"; | ||
|
||
import {ScaffoldETHDeploy} from "./DeployHelpers.s.sol"; | ||
import {ReputationTokensFactory} from "@atxdao/contracts/reputation/ReputationTokensFactory.sol"; | ||
import {ReputationTokensUpgradeable} from "@atxdao/contracts/reputation/ReputationTokensUpgradeable.sol"; | ||
|
||
contract DeployFactoryScript is ScaffoldETHDeploy { | ||
error InvalidPrivateKey(string); | ||
|
||
address controller = 0x2F15D4A66D22ecC6967928b6A76Ab06897b05676; //replace with burner or other address from wallet! | ||
|
||
function run() external { | ||
uint256 deployerPrivateKey = setupLocalhostEnv(); | ||
if (deployerPrivateKey == 0) { | ||
revert InvalidPrivateKey( | ||
"You don't have a deployer account. Make sure you have set DEPLOYER_PRIVATE_KEY in .env or use `yarn generate` to generate a new random account" | ||
); | ||
} | ||
address deployerPubKey = vm.createWallet(deployerPrivateKey).addr; | ||
|
||
vm.startBroadcast(deployerPrivateKey); | ||
address[] memory admins = new address[](2); | ||
admins[0] = deployerPubKey; | ||
admins[1] = controller; | ||
|
||
address tokensAddr = address(0); | ||
|
||
uint256 chainId; | ||
assembly { | ||
chainId := chainid() | ||
} | ||
|
||
if (chainId == 10) { | ||
tokensAddr = 0x4200000000000000000000000000000000000042; | ||
} | ||
|
||
ReputationTokensUpgradeable implementation = new ReputationTokensUpgradeable(); | ||
ReputationTokensFactory factory = new ReputationTokensFactory( | ||
admins, | ||
address(implementation), | ||
address(0) | ||
); | ||
} | ||
} | ||
// //SPDX-License-Identifier: MIT | ||
// pragma solidity ^0.8.19; | ||
|
||
// import {console} from "forge-std/console.sol"; | ||
|
||
// import {ScaffoldETHDeploy} from "./DeployHelpers.s.sol"; | ||
// import {ReputationTokensFactory} from "@atxdao/contracts/reputation/ReputationTokensFactory.sol"; | ||
// import {ReputationTokensUpgradeable} from "@atxdao/contracts/reputation/ReputationTokensUpgradeable.sol"; | ||
|
||
// contract DeployFactoryScript is ScaffoldETHDeploy { | ||
// error InvalidPrivateKey(string); | ||
|
||
// address controller = 0x2F15D4A66D22ecC6967928b6A76Ab06897b05676; //replace with burner or other address from wallet! | ||
|
||
// function run() external { | ||
// uint256 deployerPrivateKey = setupLocalhostEnv(); | ||
// if (deployerPrivateKey == 0) { | ||
// revert InvalidPrivateKey( | ||
// "You don't have a deployer account. Make sure you have set DEPLOYER_PRIVATE_KEY in .env or use `yarn generate` to generate a new random account" | ||
// ); | ||
// } | ||
// address deployerPubKey = vm.createWallet(deployerPrivateKey).addr; | ||
|
||
// vm.startBroadcast(deployerPrivateKey); | ||
// address[] memory admins = new address[](2); | ||
// admins[0] = deployerPubKey; | ||
// admins[1] = controller; | ||
|
||
// address tokensAddr = address(0); | ||
|
||
// uint256 chainId; | ||
// assembly { | ||
// chainId := chainid() | ||
// } | ||
|
||
// if (chainId == 10) { | ||
// tokensAddr = 0x4200000000000000000000000000000000000042; | ||
// } | ||
|
||
// ReputationTokensUpgradeable implementation = new ReputationTokensUpgradeable(); | ||
// ReputationTokensFactory factory = new ReputationTokensFactory( | ||
// admins, | ||
// address(implementation), | ||
// address(0) | ||
// ); | ||
// } | ||
// } |
110 changes: 55 additions & 55 deletions
110
packages/nextjs/app/factory/_components/UpdateTokenCard.tsx
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 |
---|---|---|
@@ -1,61 +1,61 @@ | ||
"use client"; | ||
// "use client"; | ||
|
||
import Select from "react-select"; | ||
// import Select from "react-select"; | ||
|
||
type Props = { | ||
index: number; | ||
onTypeChanged: any; | ||
onUriChanged: any; | ||
}; | ||
// type Props = { | ||
// index: number; | ||
// onTypeChanged: any; | ||
// onUriChanged: any; | ||
// }; | ||
|
||
const options = [ | ||
{ value: 0, label: "Transferable" }, | ||
{ value: 1, label: "Lifetime" }, | ||
{ value: 2, label: "Redeemable" }, | ||
]; | ||
export function UpdateTokenCard({ index, onTypeChanged, onUriChanged }: Props) { | ||
const defaultOption = options[0]; | ||
// const options = [ | ||
// { value: 0, label: "Transferable" }, | ||
// { value: 1, label: "Lifetime" }, | ||
// { value: 2, label: "Redeemable" }, | ||
// ]; | ||
// export function UpdateTokenCard({ index, onTypeChanged, onUriChanged }: Props) { | ||
// const defaultOption = options[0]; | ||
|
||
// const [selectedDropdownOption, setSelectedDropdownOption] = useState(defaultOption); | ||
// // const [selectedDropdownOption, setSelectedDropdownOption] = useState(defaultOption); | ||
|
||
return ( | ||
<div className="rounded-lg bg-base-100 items-center justify-center flex flex-col p-1 m-1"> | ||
<p>Token {index}</p> | ||
<p>Type</p> | ||
<Select | ||
options={options} | ||
className="text-black bg-base-100" | ||
onChange={(option: any) => { | ||
// option ? setSelectedDropdownOption(option) : ""; | ||
// return ( | ||
// <div className="rounded-lg bg-base-100 items-center justify-center flex flex-col p-1 m-1"> | ||
// <p>Token {index}</p> | ||
// <p>Type</p> | ||
// <Select | ||
// options={options} | ||
// className="text-black bg-base-100" | ||
// onChange={(option: any) => { | ||
// // option ? setSelectedDropdownOption(option) : ""; | ||
|
||
onTypeChanged(index, option); | ||
}} | ||
defaultValue={defaultOption} | ||
instanceId={`select-${index}`} | ||
theme={theme => ({ | ||
...theme, | ||
colors: { | ||
...theme.colors, | ||
primary25: "#efeaff", | ||
primary50: "#c1aeff", | ||
primary: "#551d98", | ||
}, | ||
})} | ||
styles={{ | ||
menuList: provided => ({ ...provided, maxHeight: 280, overflow: "auto" }), | ||
}} | ||
/> | ||
<p>URI</p> | ||
<input | ||
type="text" | ||
id="first_name" | ||
onChange={val => { | ||
onUriChanged(index, val); | ||
}} | ||
className="bg-gray-50 border border-gray-300 text-gray-900 text-sm rounded-lg focus:ring-blue-500 focus:border-blue-500 block w-full p-2.5 dark:bg-gray-700 dark:border-gray-600 dark:placeholder-gray-400 dark:text-white dark:focus:ring-blue-500 dark:focus:border-blue-500" | ||
placeholder="John" | ||
required | ||
/> | ||
</div> | ||
); | ||
} | ||
// onTypeChanged(index, option); | ||
// }} | ||
// defaultValue={defaultOption} | ||
// instanceId={`select-${index}`} | ||
// theme={theme => ({ | ||
// ...theme, | ||
// colors: { | ||
// ...theme.colors, | ||
// primary25: "#efeaff", | ||
// primary50: "#c1aeff", | ||
// primary: "#551d98", | ||
// }, | ||
// })} | ||
// styles={{ | ||
// menuList: provided => ({ ...provided, maxHeight: 280, overflow: "auto" }), | ||
// }} | ||
// /> | ||
// <p>URI</p> | ||
// <input | ||
// type="text" | ||
// id="first_name" | ||
// onChange={val => { | ||
// onUriChanged(index, val); | ||
// }} | ||
// className="bg-gray-50 border border-gray-300 text-gray-900 text-sm rounded-lg focus:ring-blue-500 focus:border-blue-500 block w-full p-2.5 dark:bg-gray-700 dark:border-gray-600 dark:placeholder-gray-400 dark:text-white dark:focus:ring-blue-500 dark:focus:border-blue-500" | ||
// placeholder="John" | ||
// required | ||
// /> | ||
// </div> | ||
// ); | ||
// } |
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