Skip to content

Commit

Permalink
[bridge] Sort bridge vault abi (#19478)
Browse files Browse the repository at this point in the history
## Description 

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

jq -S 'sort_by(.name)' bridge_vault.json > bridge_vault.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 8d4338b commit 3141927
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions crates/sui-bridge/abi/bridge_vault.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,10 @@
"stateMutability": "nonpayable",
"type": "constructor"
},
{
"stateMutability": "payable",
"type": "receive"
},
{
"inputs": [
{
Expand Down Expand Up @@ -137,9 +141,5 @@
],
"stateMutability": "view",
"type": "function"
},
{
"stateMutability": "payable",
"type": "receive"
}
]

0 comments on commit 3141927

Please sign in to comment.