From b72547b63908fc384052a36c1507da0bdd2c55ad Mon Sep 17 00:00:00 2001 From: solidoracle <105349716+solidoracle@users.noreply.github.com> Date: Tue, 16 Jan 2024 16:14:34 +0100 Subject: [PATCH] sepolia deploy (#28) --- README.md | 2 ++ bulla-contracts/config/sepolia.json | 11 +++++++++++ bulla-contracts/package.json | 4 +++- 3 files changed, 16 insertions(+), 1 deletion(-) create mode 100644 bulla-contracts/config/sepolia.json diff --git a/README.md b/README.md index a937411..d3413c8 100644 --- a/README.md +++ b/README.md @@ -20,6 +20,7 @@ - [🔗 Moonbeam Subgraph Playground](https://thegraph.com/hosted-service/subgraph/bulla-network/bulla-contracts-moonbeam) - [🔗 Arbitrum Subgraph Playground](https://thegraph.com/hosted-service/subgraph/bulla-network/bulla-contracts-arbitrum) - [🔗 BNB Chain Subgraph Playground](https://thegraph.com/hosted-service/subgraph/bulla-network/bulla-contracts-bnb-chain) +- [🔗 Sepolia Subgraph Playground](https://thegraph.com/hosted-service/subgraph/bulla-network/bulla-contracts-sepolia) ### Available commands: @@ -42,3 +43,4 @@ - Moonbeam: `https://api.thegraph.com/subgraphs/name/bulla-network/bulla-contracts-moonbeam` - Arbitrum: `https://api.thegraph.com/subgraphs/name/bulla-network/bulla-contracts-arbitrum` - BNB Chain: `https://api.thegraph.com/subgraphs/name/bulla-network/bulla-contracts-bnb-chain` +- Sepolia: `https://api.thegraph.com/subgraphs/name/bulla-network/bulla-contracts-sepolia` diff --git a/bulla-contracts/config/sepolia.json b/bulla-contracts/config/sepolia.json new file mode 100644 index 0000000..d3152c6 --- /dev/null +++ b/bulla-contracts/config/sepolia.json @@ -0,0 +1,11 @@ +{ + "network": "sepolia", + "apiVersion": "0.0.5", + "batchCreate": { "address": "0xbAB429068fc4A5455849f58C4Bf04F398e8006c1", "startBlock": 5096555 }, + "bullaManager": { "address": "0x15C43c1483816C0DEfcb3154b09A9e450d139033", "startBlock": 5096555 }, + "bullaClaim": { "address": "0x3702D060cbB102b6AebF40B40880F77BeF3d7225", "startBlock": 5096555 }, + "bullaBanker": { "address": "0x5369F71e1Fe238f0e6D938c734E2D2aE7296F362", "startBlock": 5096555 }, + "bullaFinance": { "address": "0xB219ecd037E8A5410d2e8839586D9F3996685cfB", "startBlock": 5096555 }, + "frendLend": { "address": "0x3E058834CE20A54F0755889c008D3fF62D33cE85", "startBlock": 5096555 }, + "instantPayment": { "address": "0x1cD1A83C2965CB7aD55d60551877Eb390e9C3d7A", "startBlock": 5096555 } +} \ No newline at end of file diff --git a/bulla-contracts/package.json b/bulla-contracts/package.json index 4cd95c4..701fb93 100644 --- a/bulla-contracts/package.json +++ b/bulla-contracts/package.json @@ -22,6 +22,7 @@ "prep:fuse": "mustache config/fuse.json template.yaml > subgraph.yaml", "prep:optimism": "mustache config/optimism.json template.yaml > subgraph.yaml", "prep:bnb_chain": "mustache config/bnb_chain.json template.yaml > subgraph.yaml", + "prep:sepolia": "mustache config/sepolia.json template.yaml > subgraph.yaml", "deploy:mainnet": "yarn prep:mainnet && graph deploy --node https://api.thegraph.com/deploy/ --ipfs https://api.thegraph.com/ipfs bulla-network/bulla-contracts-mainnet", "deploy:goerli": "yarn prep:goerli && graph deploy --node https://api.thegraph.com/deploy/ --ipfs https://api.thegraph.com/ipfs bulla-network/bulla-contracts-goerli", "deploy:base": "yarn prep:base && graph deploy --studio bulla-contracts-base", @@ -37,7 +38,8 @@ "deploy:arbitrum": "yarn prep:arbitrum && graph deploy --node https://api.thegraph.com/deploy/ --ipfs https://api.thegraph.com/ipfs bulla-network/bulla-contracts-arbitrum", "deploy:fuse": "yarn prep:fuse && graph deploy --node https://api.thegraph.com/deploy/ --ipfs https://api.thegraph.com/ipfs bulla-network/bulla-contracts-fuse", "deploy:optimism": "yarn prep:optimism && graph deploy --node https://api.thegraph.com/deploy/ --ipfs https://api.thegraph.com/ipfs bulla-network/bulla-contracts-optimism", - "deploy:bnb_chain": "yarn prep:bnb_chain && graph deploy --node https://api.thegraph.com/deploy/ --ipfs https://api.thegraph.com/ipfs bulla-network/bulla-contracts-bnb-chain" + "deploy:bnb_chain": "yarn prep:bnb_chain && graph deploy --node https://api.thegraph.com/deploy/ --ipfs https://api.thegraph.com/ipfs bulla-network/bulla-contracts-bnb-chain", + "deploy:sepolia": "yarn prep:sepolia && graph deploy --node https://api.thegraph.com/deploy/ --ipfs https://api.thegraph.com/ipfs bulla-network/bulla-contracts-sepolia" }, "devDependencies": { "@graphprotocol/graph-cli": "0.49.0",