Skip to content

Commit

Permalink
Merge pull request #840 from oceanprotocol/feature/improve_barge_mint
Browse files Browse the repository at this point in the history
wait for tx in barge mint
  • Loading branch information
alexcos20 committed Nov 21, 2023
2 parents 6bc7356 + 9f08ec4 commit 54c1acf
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = v2.0.1
current_version = v2.0.2
commit = True
tag = True

Expand Down
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@oceanprotocol/contracts",
"version": "2.0.1",
"version": "2.0.2",
"description": "Ocean Protocol Smartcontracts",
"bugs": {
"url": "https://github.com/oceanprotocol/contracts/issues"
Expand Down
3 changes: 2 additions & 1 deletion scripts/deploy-contracts.js
Original file line number Diff line number Diff line change
Expand Up @@ -351,7 +351,8 @@ async function main() {
for(let walletNo=1;walletNo<10;walletNo++){
const oceanHolder = new Wallet.fromMnemonic(process.env.MNEMONIC,`m/44'/60'/0'/0/${walletNo}`);
console.log("\t\tSending 100000 Ocean to "+oceanHolder.address)
await ocean.connect(owner).mint(oceanHolder.address,ethers.utils.parseUnits('100000', 'ether'), options);
const mintTx=await ocean.connect(owner).mint(oceanHolder.address,ethers.utils.parseUnits('100000', 'ether'), options);
await mintTx.wait()
}
}

Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[metadata]
name = ocean-contracts
version = v2.0.1
version = v2.0.2
author = leucothia
author_email = devops@oceanprotocol.com
description = 🐳 Ocean Protocol L1 - v4
Expand Down

0 comments on commit 54c1acf

Please sign in to comment.