Program Address
EVM
Contract address is determined by the deployer's address and nonce (CREATE)
Contract address is determined by the contract's bytecode's hash, deployer's address and a random salt (CREATE2)
Solana
Program address is determined by a generated private key. It has nothing to do with the deployer address nor the bytecode. The private key for the program is located at `target/deploy/$PROGRAM_NAME-keypair.json`.
Last updated