Skip to content

Commit a81ca10

Browse files
committed
v1.1.13
1 parent 9e29194 commit a81ca10

File tree

6 files changed

+41
-3
lines changed

6 files changed

+41
-3
lines changed

.bumpversion.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = v1.1.11
2+
current_version = v1.1.13
33
commit = True
44
tag = True
55

addresses/address.json

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -251,5 +251,23 @@
251251
},
252252
"Dispenser": "0xDEfD0018969cd2d4E648209F876ADe184815f038",
253253
"ERC721Factory": "0x9C9eE07b8Ce907D2f9244F8317C1Ed29A3193bAe"
254+
},
255+
"sepolia": {
256+
"chainId": 11155111,
257+
"Ocean": "0x1B083D8584dd3e6Ff37d04a6e7e82b5F622f3985",
258+
"OPFCommunityFeeCollector": "0x69B6E54Ad2b3c2801d11d8Ad56ea1d892555b776",
259+
"startBlock": 3722802,
260+
"Router": "0x2112Eb973af1DBf83a4f11eda82f7a7527D7Fde5",
261+
"FixedPrice": "0x80E63f73cAc60c1662f27D2DFd2EA834acddBaa8",
262+
"Staking": "0x3C5605202eD47C162450AE975415473e73F93072",
263+
"ERC20Template": {
264+
"1": "0x30E4CC2C7A9c6aA2b2Ce93586E3Df24a3A00bcDD",
265+
"2": "0xDEfD0018969cd2d4E648209F876ADe184815f038"
266+
},
267+
"ERC721Template": {
268+
"1": "0x9C9eE07b8Ce907D2f9244F8317C1Ed29A3193bAe"
269+
},
270+
"Dispenser": "0x2720d405ef7cDC8a2E2e5AeBC8883C99611d893C",
271+
"ERC721Factory": "0xEF62FB495266C72a5212A11Dce8baa79Ec0ABeB1"
254272
}
255273
}

hardhat.config.js

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,12 @@ module.exports = {
7272
accounts:
7373
process.env.PRIVATE_KEY !== undefined ? [process.env.PRIVATE_KEY] : [],
7474
},
75+
sepolia: {
76+
url:
77+
process.env.NETWORK_RPC_URL !== undefined ? process.env.NETWORK_RPC_URL : "",
78+
accounts:
79+
process.env.PRIVATE_KEY !== undefined ? [process.env.PRIVATE_KEY] : [],
80+
},
7581
mumbai: {
7682
url:
7783
process.env.NETWORK_RPC_URL !== undefined ? process.env.NETWORK_RPC_URL : "",

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@oceanprotocol/contracts",
3-
"version": "v1.1.12",
3+
"version": "v1.1.13",
44
"description": "Ocean Protocol Smartcontracts",
55
"bugs": {
66
"url": "https://github.com/oceanprotocol/contracts/issues"

scripts/deploy-contracts.js

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,8 @@ async function main() {
6363
let sleepAmount = 10;
6464
let additionalApprovedTokens = []
6565
console.log("Using chain " + networkDetails.chainId);
66+
const nonce=await provider.getTransactionCount(owner.address)
67+
console.log("Nonce of "+owner.address+": "+nonce)
6668
switch (networkDetails.chainId) {
6769
case 1:
6870
networkName = "mainnet";
@@ -111,6 +113,18 @@ async function main() {
111113
shouldDeployDF = true;
112114
shouldDeployVE = true;
113115
break;
116+
case 0xaa36a7:
117+
networkName = "sepolia";
118+
OPFOwner = '0xC7EC1970B09224B317c52d92f37F5e1E4fF6B687'
119+
routerOwner = OPFOwner;
120+
sleepAmount = 10
121+
shouldDeployOceanToken = true;
122+
shouldDeployV4 = true;
123+
shouldDeployDF = false;
124+
shouldDeployVE = false;
125+
gasPrice = ethers.utils.parseUnits('1', 'gwei')
126+
gasLimit = 20000000
127+
break;
114128
case 0x89:
115129
networkName = "polygon";
116130
productionNetwork = true;

setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[metadata]
22
name = ocean-contracts
3-
version = v1.1.12
3+
version = v1.1.13
44
author = leucothia
55
author_email = [email protected]
66
description = 🐳 Ocean Protocol L1 - v4

0 commit comments

Comments
 (0)