[ethFruitShop] how to return mapping
·
개인프로젝트/ethFruitShop
solidity에서 함수를 통해 mapping 자체를 return 하고 싶었다. 결과적으론 mapping을 return할수 없었다. 내가 얻고 싶은건 객체였으나 mapping을 return할수 없었기 때문에 mapping과 비슷하게 return 할수 있는 방법을 찾아봤다. 그래서 key값과 value값을 따로 뽑아 프론트에서 객체를 만들어주는 방법을 선택했다. const hasFruit = await deployed.methods .hasFruit() .call({ from: account }); const fruitWallet = await deployed.methods .getFruitWallet() .call({ from: account }); let temp = {}; for (let i = 0;..