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

Support using Squads multisig with sealevel tooling, support ownership transfers in tooling #2700

Merged
merged 41 commits into from
Sep 4, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
41 commits
Select commit Hold shift + click to select a range
ebb15e4
Notice some libs can't be built directly with build-sbf
tkporter Aug 11, 2023
d8f065f
Merge branch 'main' of github.com:abacus-network/abacus-monorepo into…
tkporter Aug 11, 2023
afc22cd
Upgrade solanadevnet programs & deploy IGP
tkporter Aug 11, 2023
faf51d3
create proteus validator keys
tkporter Aug 11, 2023
5cdf8f5
add proteustestnet to testnet_config.json
tkporter Aug 11, 2023
540c679
Deploy n jazz
tkporter Aug 11, 2023
802ae25
More deploy, works
tkporter Aug 14, 2023
c619332
Merge branch 'main' of github.com:abacus-network/abacus-monorepo into…
tkporter Aug 15, 2023
bac521e
Prepping for mainnet Nautilus deploy
tkporter Aug 15, 2023
8ee0ed2
Merge branch 'main' of github.com:abacus-network/abacus-monorepo into…
tkporter Aug 15, 2023
3717178
Deploy to mainnet Solana
tkporter Aug 15, 2023
2a7f5d9
Create validator keys
tkporter Aug 15, 2023
44fcbc9
Nautilus chain id and domain id as 22222
tkporter Aug 15, 2023
d1592d9
Add nautilus & solana to config json
tkporter Aug 15, 2023
aa38032
Deploy zbc warp route
tkporter Aug 15, 2023
b5f85b8
Move validator announcement warning
tkporter Aug 15, 2023
ed80f55
nit
tkporter Aug 15, 2023
5d2e3b7
redeploy warp route
tkporter Aug 15, 2023
bd02b8d
Add ATA payer log to token query
tkporter Aug 15, 2023
4a59af3
Specify per-agent chains to deploy to in deploy-agents (#2669)
daniel-savu Aug 17, 2023
2c59064
Merge branch 'main' of github.com:abacus-network/abacus-monorepo into…
tkporter Aug 17, 2023
2f6ebc5
Merge branch 'main' into trevor/deploy-proteus
tkporter Aug 18, 2023
c4da6fd
Set IGP accounts in agent config
tkporter Aug 18, 2023
66590ba
Merge branch 'trevor/deploy-proteus' of github.com:abacus-network/aba…
tkporter Aug 18, 2023
ef17cd2
Merge branch 'main' of github.com:abacus-network/abacus-monorepo into…
tkporter Aug 21, 2023
7292ce5
wip
tkporter Aug 23, 2023
6d77a27
Merge branch 'main' of github.com:abacus-network/abacus-monorepo into…
tkporter Aug 23, 2023
99cbe39
tx descriptions
tkporter Aug 29, 2023
881a5e2
Merge branch 'main' of github.com:abacus-network/abacus-monorepo into…
tkporter Aug 30, 2023
0ff423e
Transfer ownership instructions
tkporter Aug 31, 2023
e20660a
Merge branch 'main' of github.com:abacus-network/abacus-monorepo into…
tkporter Sep 1, 2023
c2a60c4
igp ownership transfer
tkporter Sep 1, 2023
d3fd157
nit
tkporter Sep 1, 2023
5f0d1dd
rm chains/hyperlane-sealevel/src/solana/
tkporter Sep 1, 2023
be4bb0f
Move to NullSigner
tkporter Sep 1, 2023
551c828
Clean up a little
tkporter Sep 1, 2023
45a8df0
less code dupe
tkporter Sep 1, 2023
0f54ed3
nit
tkporter Sep 1, 2023
6b00ff4
Clean some logs
tkporter Sep 1, 2023
20c094f
cargo clippy --fix
tkporter Sep 4, 2023
97cca31
PR comments
tkporter Sep 4, 2023
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
2 changes: 2 additions & 0 deletions rust/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

9 changes: 6 additions & 3 deletions rust/chains/hyperlane-sealevel/src/mailbox.rs
Original file line number Diff line number Diff line change
Expand Up @@ -489,27 +489,30 @@ impl Mailbox for SealevelMailbox {
data: ixn_data,
accounts,
};
tracing::info!("accounts={:#?}", inbox_instruction.accounts);
instructions.push(inbox_instruction);
let (recent_blockhash, _) = self
.rpc_client
.get_latest_blockhash_with_commitment(commitment)
.await
.map_err(ChainCommunicationError::from_other)?;

let txn = Transaction::new_signed_with_payer(
&instructions,
Some(&payer.pubkey()),
&[payer],
recent_blockhash,
);

tracing::info!(?txn, "Created sealevel transaction to process message");

let signature = self
.rpc_client
.send_and_confirm_transaction(&txn)
.await
.map_err(ChainCommunicationError::from_other)?;
tracing::info!("signature={}", signature);
tracing::info!("txn={:?}", txn);

tracing::info!(?txn, ?signature, "Sealevel transaction sent");

let executed = self
.rpc_client
.confirm_transaction_with_commitment(&signature, commitment)
Expand Down

This file was deleted.

Loading