File tree Expand file tree Collapse file tree 6 files changed +41
-3
lines changed
Expand file tree Collapse file tree 6 files changed +41
-3
lines changed Original file line number Diff line number Diff line change 11[bumpversion]
2- current_version = v1.1.11
2+ current_version = v1.1.13
33commit = True
44tag = True
55
Original file line number Diff line number Diff line change 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}
Original file line number Diff line number Diff 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 : "" ,
Original file line number Diff line number Diff line change 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"
Original file line number Diff line number Diff 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 ;
Original file line number Diff line number Diff line change 11[metadata]
22name = ocean-contracts
3- version = v1.1.12
3+ version = v1.1.13
44author = leucothia
5566description = 🐳 Ocean Protocol L1 - v4
You can’t perform that action at this time.
0 commit comments