From af7f5ae855acccf594b1f93be9cab4a06da22536 Mon Sep 17 00:00:00 2001
From: hugolxt <87241914+hugolxt@users.noreply.github.com>
Date: Wed, 14 Aug 2024 16:14:46 +0200
Subject: [PATCH] chore: add deployment script for bob network (#78)

Co-authored-by: hugolxt <hugo@angle.money>
---
 hardhat.config.ts | 13 +++++++++++++
 package.json      |  1 +
 2 files changed, 14 insertions(+)

diff --git a/hardhat.config.ts b/hardhat.config.ts
index a9dd8cd..9f3f7d1 100644
--- a/hardhat.config.ts
+++ b/hardhat.config.ts
@@ -304,6 +304,19 @@ const config: HardhatUserConfig = {
         },
       },
     },
+    bob: {
+      live: true,
+      url: nodeUrl('bob'),
+      accounts: [getPkey()],
+      gas: 'auto',
+      gasMultiplier: 1.3,
+      chainId: 60808,
+      verify: {
+        etherscan: {
+          apiKey: etherscanKey('bob'),
+        },
+      },
+    },
     linea: {
       live: true,
       url: nodeUrl('linea'),
diff --git a/package.json b/package.json
index 4d07da5..0a5507f 100644
--- a/package.json
+++ b/package.json
@@ -16,6 +16,7 @@
     "deploy:astar": "hardhat deploy --tags distributionCreator --network astar",
     "deploy:astarzkevm": "hardhat deploy --tags distributionCreator --network astarzkevm",
     "deploy:sei": "hardhat deploy --tags distributionCreator --network sei",
+    "deploy:bob": "hardhat deploy --tags distributionCreator --network bob",
     "deploy:fork": "FORK=true hardhat node --tags distributionCreator",
     "deploy:agla": "hardhat deploy --tags aglaMerkl --network",
     "deploy": "hardhat deploy --tags distributionCreator --network",