Replies: 1 comment 1 reply
-
Did you first call eth_requestAccounts? |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Trying to create listing code on testnet.opensea.
Have ERC721 smart contract published to Goerli network and have minted 2 NFTS sucessfully. NFT's are in IPFS storage with json metadata and all can be seen and accessed via opeasea SDK. https://docs.opensea.io/reference/get_nft
Have Ledger device attached to metamask wallet.
Running this code, get error: Points to issue with Ledger, but wallet address and signer return expected ID.
Failed to create sell order for token ID 1: Error: Specified accountAddress is not available through wallet or provider. Accounts available: none
async function main() {
try {
const signer = await getLedgerWallet();
const address = await signer.getAddress();
console.log("Address from signer:", address);
}
Beta Was this translation helpful? Give feedback.
All reactions