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

feat: use prettier-move to check formatting of all move files #239

Merged
merged 42 commits into from
Feb 3, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
42 commits
Select commit Hold shift + click to select a range
63beb53
changed from trusted addresses to trusted chains
Foivos Jan 20, 2025
7ac8025
fixed some tests
Foivos Jan 20, 2025
46e65b2
rename some stuff
Foivos Jan 20, 2025
1bf88f1
fix some tests
Foivos Jan 20, 2025
eb43639
fix tests
Foivos Jan 20, 2025
663bbef
fix move tests
Foivos Jan 21, 2025
fcb0cc2
add a creator cap and setup to its
Foivos Jan 21, 2025
9f3c157
add chain name to token_id derivation
Foivos Jan 21, 2025
f335d89
prettier and fix interfaces
Foivos Jan 22, 2025
2a4cab6
Merge remote-tracking branch 'origin/main' into feat/remove-address-t…
Foivos Jan 23, 2025
d1e8ddd
address a few comments
Foivos Jan 23, 2025
27150a8
rename chain_tracker to trusted_chains
Foivos Jan 23, 2025
a3aa2a7
some more comments addressed
Foivos Jan 23, 2025
b8d1e51
Update move/squid/sources/squid/squid.move
Foivos Jan 23, 2025
5c5f184
address some more comments
Foivos Jan 23, 2025
1e47517
addressed a comments
Foivos Jan 23, 2025
e5d2b81
Merge remote-tracking branch 'origin/main' into feat/token-id-chain-d…
Foivos Jan 23, 2025
577f190
Merge branch 'feat/token-id-chain-derivation' into feat/remove-addres…
Foivos Jan 23, 2025
1b76acc
fix tests
Foivos Jan 23, 2025
f65bd68
add its_hub_address as a variable
Foivos Jan 23, 2025
e9f0c72
changed how wrap payload works
Foivos Jan 23, 2025
73ff042
changed pattern for wrapping payload a bit.
Foivos Jan 23, 2025
c5b8d37
Update move/interchain_token_service/sources/types/trusted_chains.move
Foivos Jan 27, 2025
82d091c
Update move/interchain_token_service/sources/types/trusted_chains.move
Foivos Jan 27, 2025
98e1163
Update move/interchain_token_service/sources/types/trusted_chains.move
Foivos Jan 27, 2025
9b987a4
rename `prepare_wrapped_message` to `prepare_hub_message`
Foivos Jan 27, 2025
bff94bd
cs
Foivos Jan 27, 2025
2db608a
added explicit check that chain is contained when trying to remove it.
Foivos Jan 27, 2025
9716566
Merge remote-tracking branch 'origin/main' into feat/remove-address-t…
Foivos Jan 27, 2025
7c2cadb
fix tests
Foivos Jan 27, 2025
6c406fd
Merge remote-tracking branch 'origin/main' into feat/remove-address-t…
Foivos Jan 27, 2025
02915b7
update bcs
Foivos Jan 27, 2025
d780bc9
update bcs test for InterchainTokenServiceV0
Foivos Jan 27, 2025
4172de7
made lint happy
Foivos Jan 28, 2025
1b91846
using prettier-move as part of prettier now.
Foivos Jan 29, 2025
8a66886
Merge remote-tracking branch 'origin/main' into feat/prettier-move
Foivos Jan 29, 2025
66a71d6
prettier
Foivos Jan 29, 2025
e4f9332
formatted everything
Foivos Jan 29, 2025
f1a301c
remove escape character
Foivos Jan 29, 2025
220e05a
fix prettier
Foivos Jan 29, 2025
fdfe1e9
cs
Foivos Jan 29, 2025
4dbadc2
change the prettier command
Foivos Feb 3, 2025
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
5 changes: 5 additions & 0 deletions .changeset/friendly-starfishes-rush.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
'@axelar-network/axelar-cgp-sui': patch
---

Using prettier-move formatter for move files
8 changes: 8 additions & 0 deletions .prettierrc
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,14 @@
"options": {
"tabWidth": 2
}
},
{
"files": "*.move",
"options": {
"plugins": [
"@mysten/prettier-plugin-move"
]
}
}
]
}
Loading