mirror of
https://github.com/logos-blockchain/logos-execution-zone.git
synced 2026-08-25 19:31:11 +00:00
Merge remote-tracking branch 'origin/dev' into moudy/cross-zone-target-auth
# Conflicts: # Cargo.lock # artifacts/lez/programs/amm.bin # artifacts/lez/programs/associated_token_account.bin # artifacts/lez/programs/authenticated_transfer.bin # artifacts/lez/programs/bridge.bin # artifacts/lez/programs/bridge_lock.bin # artifacts/lez/programs/clock.bin # artifacts/lez/programs/cross_zone_inbox.bin # artifacts/lez/programs/cross_zone_outbox.bin # artifacts/lez/programs/faucet.bin # artifacts/lez/programs/pinata.bin # artifacts/lez/programs/pinata_token.bin # artifacts/lez/programs/ping_receiver.bin # artifacts/lez/programs/ping_sender.bin # artifacts/lez/programs/token.bin # artifacts/lez/programs/vault.bin # artifacts/lez/programs/wrapped_token.bin # test_fixtures/fixtures/prebuilt_sequencer_db.dump
This commit is contained in:
@@ -11,6 +11,21 @@ mod guests {
|
||||
include!(concat!(env!("OUT_DIR"), "/methods.rs"));
|
||||
}
|
||||
|
||||
#[must_use]
|
||||
#[inline]
|
||||
pub const fn simple_balance_transfer() -> Program {
|
||||
use guests::{
|
||||
SIMPLE_BALANCE_TRANSFER_ELF, SIMPLE_BALANCE_TRANSFER_ID, SIMPLE_BALANCE_TRANSFER_PATH,
|
||||
};
|
||||
|
||||
let _unused = SIMPLE_BALANCE_TRANSFER_PATH;
|
||||
|
||||
Program::new_unchecked(
|
||||
SIMPLE_BALANCE_TRANSFER_ID,
|
||||
Cow::Borrowed(SIMPLE_BALANCE_TRANSFER_ELF),
|
||||
)
|
||||
}
|
||||
|
||||
#[must_use]
|
||||
#[inline]
|
||||
pub const fn chain_caller() -> Program {
|
||||
|
||||
Reference in New Issue
Block a user