Skip to content

Commit

Permalink
Fix /erc721/transfer (#298)
Browse files Browse the repository at this point in the history
  • Loading branch information
adam-maj authored Nov 8, 2023
1 parent 774c369 commit 9d878d1
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ export async function erc721transfer(fastify: FastifyInstance) {
const { chain, contractAddress } = request.params;
const { to, tokenId } = request.body;
const walletAddress = request.headers[
"x-backend-wallet-addressaddress"
"x-backend-wallet-address"
] as string;
const accountAddress = request.headers["x-account-address"] as string;
const chainId = getChainIdFromChain(chain);
Expand Down

0 comments on commit 9d878d1

Please sign in to comment.