File tree Expand file tree Collapse file tree
solana/programs/bridge_token_factory Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -58,12 +58,12 @@ solana-build: ENV = mainnet
5858solana-build-dev solana-build :
5959 cd solana && \
6060 PROGRAM_ID=$$(solana address -k target/deploy/bridge_token_factory-keypair.json ) && \
61- RUSTUP_TOOLCHAIN=" nightly-2026-01-08" anchor build --verifiable --env " PROGRAM_ID=$$ PROGRAM_ID" -- --no-default-features --features $(ENV )
61+ RUSTUP_TOOLCHAIN=" nightly-2026-01-08" anchor build --verifiable --program-name bridge_token_factory -- env " PROGRAM_ID=$$ PROGRAM_ID" -- --no-default-features --features $(ENV )
6262
6363solana-build-ci :
6464 cd solana && \
6565 export PROGRAM_ID=dahPEoZGXfyV58JqqH85okdHmpN8U2q8owgPUXSCPxe && \
66- RUSTUP_TOOLCHAIN=" nightly-2026-01-08" anchor build --verifiable --env " PROGRAM_ID=$$ PROGRAM_ID" -- --no-default-features --features mainnet
66+ RUSTUP_TOOLCHAIN=" nightly-2026-01-08" anchor build --verifiable --program-name bridge_token_factory -- env " PROGRAM_ID=$$ PROGRAM_ID" -- --no-default-features --features mainnet
6767
6868solana-deploy-dev : ENV = devnet
6969solana-deploy : ENV = mainnet
Original file line number Diff line number Diff line change @@ -8,6 +8,11 @@ edition = "2021"
88crate-type = [" cdylib" , " lib" ]
99name = " bridge_token_factory"
1010
11+ [[test ]]
12+ name = " mollusk"
13+ path = " tests/mollusk.rs"
14+ required-features = [" no-entrypoint" ]
15+
1116[features ]
1217default = [" mainnet" ]
1318cpi = [" no-entrypoint" ]
You can’t perform that action at this time.
0 commit comments