Skip to content

Commit

Permalink
[bridge] sort bridge committee abi (#19481)
Browse files Browse the repository at this point in the history
## Description 

This PR sorts bridge_committee.json based on name field. This is to make
future abi changes more readable.

jq -S 'sort_by(.name)' bridge_committee.json.json >
bridge_committee.json.sorted

## Test plan 

How did you test the new or updated feature?

---

## Release notes

Check each box that your changes affect. If none of the boxes relate to
your changes, release notes aren't required.

For each box you select, include information after the relevant heading
that describes the impact of your changes that a user might notice and
any actions they must take to implement updates.

- [ ] Protocol: 
- [ ] Nodes (Validators and Full nodes): 
- [ ] Indexer: 
- [ ] JSON-RPC: 
- [ ] GraphQL: 
- [ ] CLI: 
- [ ] Rust SDK:
- [ ] REST API:
  • Loading branch information
longbowlu authored Sep 22, 2024
1 parent e97b2f8 commit acd910d
Showing 1 changed file with 45 additions and 45 deletions.
90 changes: 45 additions & 45 deletions crates/sui-bridge/abi/bridge_committee.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,25 @@
"name": "AddressEmptyCode",
"type": "error"
},
{
"anonymous": false,
"inputs": [
{
"indexed": false,
"internalType": "address[]",
"name": "updatedMembers",
"type": "address[]"
},
{
"indexed": false,
"internalType": "bool",
"name": "isBlocklisted",
"type": "bool"
}
],
"name": "BlocklistUpdated",
"type": "event"
},
{
"inputs": [
{
Expand All @@ -31,6 +50,19 @@
"name": "FailedInnerCall",
"type": "error"
},
{
"anonymous": false,
"inputs": [
{
"indexed": false,
"internalType": "uint64",
"name": "version",
"type": "uint64"
}
],
"name": "Initialized",
"type": "event"
},
{
"inputs": [],
"name": "InvalidInitialization",
Expand All @@ -46,6 +78,19 @@
"name": "ReentrancyGuardReentrantCall",
"type": "error"
},
{
"inputs": [],
"name": "UPGRADE_INTERFACE_VERSION",
"outputs": [
{
"internalType": "string",
"name": "",
"type": "string"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "UUPSUnauthorizedCallContext",
Expand All @@ -62,38 +107,6 @@
"name": "UUPSUnsupportedProxiableUUID",
"type": "error"
},
{
"anonymous": false,
"inputs": [
{
"indexed": false,
"internalType": "address[]",
"name": "updatedMembers",
"type": "address[]"
},
{
"indexed": false,
"internalType": "bool",
"name": "isBlocklisted",
"type": "bool"
}
],
"name": "BlocklistUpdated",
"type": "event"
},
{
"anonymous": false,
"inputs": [
{
"indexed": false,
"internalType": "uint64",
"name": "version",
"type": "uint64"
}
],
"name": "Initialized",
"type": "event"
},
{
"anonymous": false,
"inputs": [
Expand All @@ -107,19 +120,6 @@
"name": "Upgraded",
"type": "event"
},
{
"inputs": [],
"name": "UPGRADE_INTERFACE_VERSION",
"outputs": [
{
"internalType": "string",
"name": "",
"type": "string"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
Expand Down

0 comments on commit acd910d

Please sign in to comment.