mirror of
https://github.com/interep-project/contracts.git
synced 2026-04-17 03:00:51 -04:00
26 lines
583 B
TypeScript
26 lines
583 B
TypeScript
import { run } from "hardhat"
|
|
|
|
async function main(): Promise<void> {
|
|
await run("deploy:reputation-badge", {
|
|
name: "InterRep Twitter Badge",
|
|
symbol: "iTWITTER"
|
|
})
|
|
await run("deploy:reputation-badge", {
|
|
name: "InterRep Github Badge",
|
|
symbol: "iGITHUB"
|
|
})
|
|
await run("deploy:reputation-badge", {
|
|
name: "InterRep Reddit Badge",
|
|
symbol: "iREDDIT"
|
|
})
|
|
|
|
await run("deploy:groups")
|
|
}
|
|
|
|
main()
|
|
.then(() => process.exit(0))
|
|
.catch((error: Error) => {
|
|
console.error(error)
|
|
process.exit(1)
|
|
})
|