Skip to content

Commit

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

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

jq -S 'sort_by(.name)' bridge_limiter.json > bridge_limiter.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 committed Sep 22, 2024
1 parent 3141927 commit d500750
Showing 1 changed file with 63 additions and 63 deletions.
126 changes: 63 additions & 63 deletions crates/sui-bridge/abi/bridge_limiter.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,59 +31,6 @@
"name": "FailedInnerCall",
"type": "error"
},
{
"inputs": [],
"name": "InvalidInitialization",
"type": "error"
},
{
"inputs": [],
"name": "NotInitializing",
"type": "error"
},
{
"inputs": [
{
"internalType": "address",
"name": "owner",
"type": "address"
}
],
"name": "OwnableInvalidOwner",
"type": "error"
},
{
"inputs": [
{
"internalType": "address",
"name": "account",
"type": "address"
}
],
"name": "OwnableUnauthorizedAccount",
"type": "error"
},
{
"inputs": [],
"name": "ReentrancyGuardReentrantCall",
"type": "error"
},
{
"inputs": [],
"name": "UUPSUnauthorizedCallContext",
"type": "error"
},
{
"inputs": [
{
"internalType": "bytes32",
"name": "slot",
"type": "bytes32"
}
],
"name": "UUPSUnsupportedProxiableUUID",
"type": "error"
},
{
"anonymous": false,
"inputs": [
Expand Down Expand Up @@ -116,6 +63,11 @@
"name": "Initialized",
"type": "event"
},
{
"inputs": [],
"name": "InvalidInitialization",
"type": "error"
},
{
"anonymous": false,
"inputs": [
Expand All @@ -136,37 +88,56 @@
"type": "event"
},
{
"anonymous": false,
"inputs": [],
"name": "NotInitializing",
"type": "error"
},
{
"inputs": [
{
"indexed": true,
"internalType": "address",
"name": "previousOwner",
"name": "owner",
"type": "address"
},
}
],
"name": "OwnableInvalidOwner",
"type": "error"
},
{
"inputs": [
{
"indexed": true,
"internalType": "address",
"name": "newOwner",
"name": "account",
"type": "address"
}
],
"name": "OwnershipTransferred",
"type": "event"
"name": "OwnableUnauthorizedAccount",
"type": "error"
},
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"internalType": "address",
"name": "implementation",
"name": "previousOwner",
"type": "address"
},
{
"indexed": true,
"internalType": "address",
"name": "newOwner",
"type": "address"
}
],
"name": "Upgraded",
"name": "OwnershipTransferred",
"type": "event"
},
{
"inputs": [],
"name": "ReentrancyGuardReentrantCall",
"type": "error"
},
{
"inputs": [],
"name": "UPGRADE_INTERFACE_VERSION",
Expand All @@ -180,6 +151,35 @@
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "UUPSUnauthorizedCallContext",
"type": "error"
},
{
"inputs": [
{
"internalType": "bytes32",
"name": "slot",
"type": "bytes32"
}
],
"name": "UUPSUnsupportedProxiableUUID",
"type": "error"
},
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"internalType": "address",
"name": "implementation",
"type": "address"
}
],
"name": "Upgraded",
"type": "event"
},
{
"inputs": [
{
Expand Down

0 comments on commit d500750

Please sign in to comment.