Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add pegout transaction created event #66

Merged
merged 2 commits into from
May 22, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading