Skip to content

Commit

Permalink
Merge pull request #66 from rsksmart/add-pegout-transaction-created-e…
Browse files Browse the repository at this point in the history
…vent

Add pegout transaction created event
  • Loading branch information
marcos-iov authored May 22, 2024
2 parents b1630ca + 705cc9a commit e80e622
Show file tree
Hide file tree
Showing 5 changed files with 22 additions and 4 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,7 @@ If the version to be installed is not defined in the command line, it will insta
| 5.0.0-HOP | HOP-4.0.0 |
| 5.0.0-FINGERROOT | FINGERROOT-5.0.0 |
| 6.0.0-ARROWHEAD | ARROWHEAD-6.0.0 |
| 7.0.0-LOVELL | LOVELL-7.0.0 |

# Rootstock Bridge Methods Selectors and Events Topics page

Expand Down
17 changes: 17 additions & 0 deletions abis/bridge.json
Original file line number Diff line number Diff line change
Expand Up @@ -1242,5 +1242,22 @@
],
"name": "pegout_confirmed",
"type": "event"
},
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"name": "btcTxHash",
"type": "bytes32"
},
{
"indexed": false,
"name": "utxoOutpointValues",
"type": "bytes"
}
],
"name": "pegout_transaction_created",
"type": "event"
}
]
4 changes: 2 additions & 2 deletions 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": "@rsksmart/rsk-precompiled-abis",
"version": "6.0.0-ARROWHEAD",
"version": "7.0.0-LOVELL",
"description": "Utility to interact with RSK native contracts",
"main": "index.js",
"repository": {
Expand Down
2 changes: 1 addition & 1 deletion tests/bridge.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ describe('Bridge', () => {
});

it('has all the expected signatures', () => {
assert.equal(bridge.abi.length, 75);
assert.equal(bridge.abi.length, 76);
});

it('builds a valid contract', () => {
Expand Down

0 comments on commit e80e622

Please sign in to comment.