You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I import a random phrase to argent-x wallet, and my first account is
privateKey: 0x003240a3ed6737942813b39245f06e6287ae8c12dbe3efb8434bb0cc956544e9
publicKey:FMZtUieh93EjoXPcSFLqbpm9hkkrHM5pBM4fZhuLDdZ
address: 0x02b45D8F1F8572ef0D1Ad79fe6589576272e5dc16C94B9b832408aEbffe2de97
publicKey shows like base58, and how to encode hex public key to it?
when I use same compute logic on starknet-rs and argent-starknet-recover
using class hash: 0x036078334509b514626504edc9fb252328d1a240e4e948bef8d0c08dff45927f
both output address is 0x40f0724c746b65e5545bfc794bdd3cce1f6d17bcaa1c0bf5d1b7a597a79104a
it's different with argent-x
looking for a guide, thanks a lot.
The text was updated successfully, but these errors were encountered:
Hi, i was facing similar issue and fixed it by getting the right calldata value. You can confirm yours by looking up the DEPLOY_ACCOUNT txn in blockexplorer, and get the original calldata values which were used at the time of deployment.
This is the value i used to get the correct address const AXConstructorCallData = CallData.compile(['0x00',starkKeyPubAX,'0x01']);
On Sepolia testnet
I import a random phrase to argent-x wallet, and my first account is
privateKey: 0x003240a3ed6737942813b39245f06e6287ae8c12dbe3efb8434bb0cc956544e9
publicKey:FMZtUieh93EjoXPcSFLqbpm9hkkrHM5pBM4fZhuLDdZ
address: 0x02b45D8F1F8572ef0D1Ad79fe6589576272e5dc16C94B9b832408aEbffe2de97
publicKey shows like base58, and how to encode hex public key to it?
when I use same compute logic on starknet-rs and argent-starknet-recover
using class hash: 0x036078334509b514626504edc9fb252328d1a240e4e948bef8d0c08dff45927f
both output address is 0x40f0724c746b65e5545bfc794bdd3cce1f6d17bcaa1c0bf5d1b7a597a79104a
it's different with argent-x
looking for a guide, thanks a lot.
The text was updated successfully, but these errors were encountered: