Metamask一键添加代币

不废话直接上代码

const address='xxx' //代币地址 const symbol = 'xxx' //代币名称(一般都是英文大写) const decimals = 18 //写死18 const image = 'xxx' //代币图标 ethereum.request({ method: 'wallet_watchAsset', params: { type: 'ERC20', options: { address, symbol, decimals, image } } })

【Metamask一键添加代币】以上就是一键添加代币代码,希望对大家有帮助

    推荐阅读