diff --git a/README.md b/README.md index 8cde7ce..0a47151 100644 --- a/README.md +++ b/README.md @@ -2,10 +2,7 @@ # Introduction -Devouch is a decentralized application that allows users to attest to projects credibility by their vouches or flags. The backend is built on Subsquid and uses a Postgres database. - -# Getting Started - +Devouch is a decentralized application that allows users to attest to project's credibility by their vouches or flags. The backend is built on Subsquid and uses a Postgres database. ## Add new organisation @@ -17,4 +14,8 @@ cp org-config.template.jsonc org-config.jsonc # 2. Run the script to add your organisation data to migrations npm run add-organization ``` -Then create a PR to the main branch to be reviewed and merged. \ No newline at end of file +Then create a PR to the main branch to be reviewed and merged. + +## Further Documentation + +More information can be found on the [Giveth docs website](https://docs.giveth.io/devouch). \ No newline at end of file diff --git a/db/migrations/1728040623823-AddGitcoin Passport Holder.js b/db/migrations/1728389519384-AddGitcoin Passport Holder.js similarity index 85% rename from db/migrations/1728040623823-AddGitcoin Passport Holder.js rename to db/migrations/1728389519384-AddGitcoin Passport Holder.js index af4474b..54d4cd9 100644 --- a/db/migrations/1728040623823-AddGitcoin Passport Holder.js +++ b/db/migrations/1728389519384-AddGitcoin Passport Holder.js @@ -1,17 +1,18 @@ -module.exports = class AddGitcoinPassportHolder1728040623823 { - name = "AddGitcoinPassportHolder1728040623823"; +module.exports = class AddGitcoinPassportHolder1728389519384 { + name = "AddGitcoinPassportHolder1728389519384"; async up(db) { const SQUID_NETWORK = process.env.SQUID_NETWORK || "eth-sepolia"; if (SQUID_NETWORK !== "optimism-mainnet") return; // add organisation with name "Gitcoin Passport Holder" and schema id "0x6ab5d34260fca0cfcf0e76e96d439cace6aa7c3c019d7c4580ed52c6845e9c89" await db.query( - `INSERT INTO "organisation" ("id", "name", "issuer", "color") + `INSERT INTO "organisation" ("id", "name", "issuer", "color", "start_block") VALUES ( '0x6ab5d34260fca0cfcf0e76e96d439cace6aa7c3c019d7c4580ed52c6845e9c89', 'Gitcoin Passport Holder', '0x843829986e895facd330486a61ebee9e1f1adb1a', - '#00433b' + '#00433b', + 108517456 )` ); }