getBundleFee
功能
查询 bundle item 存储费用。
示例
import { getBundleFee } from 'arseeding-js'
const run = async () => {
const arseedingUrl = 'https://arseed.web3infra.dev'
const size = '<data binary length>'
const currency = '<payment token symbol, such as eth, usdc. >'
const res = await getBundleFee(arseedingUrl, size, currency)
console.log(res)
}
参数
字段 | 描述 |
---|---|
arseedingUrl | arseedUrl 是需要配置的 Arseeding 后端服务地址,这里我们使用 permadao 提供的 Arseed 服务,URL 为:https://arseed.web3infra.dev 。 |
size | 数据二进制的长度 |
currency | 支付的 symbol 名称, usdc, eth 等 |
返回示例数据
{
"currency": "USDC",
"decimals": 6,
"finalFee": "3503"
}