跳至主要内容
本页面使用机器翻译自英语,可能包含错误或不清楚的语言。如需最准确的信息,请参阅英文原文。由于更新频繁,部分内容可能与英文原文有出入。请加入我们在 Crowdin 上的努力,帮助我们改进本页面的翻译。 (Crowdin translation page, Contributing guide)

部分收费委托类型交易类

带比例的费用委托值转移


caver.transaction.feeDelegatedValueTransferWithRatio.create(transactionObject)

"FeeDelegatedValueTransferWithRatio "表示[带比率的费用委托价值转移交易](.../.../.../.../.../learn/transactions/partial-fee-delegation.md#txtypefeedelegatedvaluetransferwithratio)。 事务对象 "可以具有以下属性,以创建 "FeeDelegatedValueTransferWithRatio "事务。

FeeDelegatedValueTransferWithRatio` 的成员变量属性如下。 标记为 "可选 "的属性是指用户创建 "FeeDelegatedValueTransfer "事务时可在 "transactionObject "中选择定义的属性。

备注

注意:您可以通过 RLP 编码字符串创建 FeeDelegatedValueTransferWithRatio 实例。 请参考下面的示例。 注意:从 caver-js v1.6.1 开始支持 caver.transaction.feeDelegatedValueTransferWithRatio.create

注意:从 caver-js v1.8.1-rc.4 开始,只支持使用 create 函数创建事务。 如果您一直使用 new caver.transaction.feeDelegatedValueTransferWithRatio({...})这样的构造函数创建事务,请将其更改为 caver.transaction.feeDelegatedValueTransferWithRatio.create({...})

属性

名称类型说明
价值字符串以 peb 为单位的 KAIA 转账金额。 您可以使用 caver.utils.toPeb
from字符串发件人地址。
to字符串接收转账金额的账户地址。
gas字符串交易允许使用的最高交易费金额。
feeRatio字符串费用支付方将承担的交易费比例。 该比率的有效范围在 1 到 99 之间。 不允许比率为 0 或 100 及以上。
signatures数组(可选)签名数组。
feePayerSignatures数组(可选)付费者签名数组。
feePayer字符串(可选)缴费人地址。
nonce字符串(可选)用于唯一标识发件人交易的值。 如果省略,"caver.rpc.klay.getTransactionCount(address, 'pending')` 将用于设置 nonce。
gasPrice字符串(可选)一个乘数,用于计算发件人将支付多少代币。 如果省略,将使用 caver.rpc.klay.getGasPrice设置 gasPrice。
chainId字符串(可选)kaia 网络的链 id。 如果省略,将使用 caver.rpc.klay.getChainId设置 chainId。

示例


// Create a feeDelegatedValueTransferWithRatio
> caver.transaction.feeDelegatedValueTransferWithRatio({
from: '0x{address in hex}',
to: '0x9957dfd92e4b70f91131c573293343bc5f21f215',
value: caver.utils.toPeb(1, 'KLAY'),
gas: 25000,
feeRatio: 30,
})
// Create a feeDelegatedValueTransferWithRatio from RLP-encoded string
> caver.transaction.feeDelegatedValueTransferWithRatio('0x0af8d78204d219830f4240947b65b75d204abed71587c9e519a89277766ee1d00a94a94f5374fce5edbc8e2a8697c15331677e6ebf0b1ef845f84325a0dde32b8241f039a82b124fe94d3e556eb08f0d6f26d07dcc0f3fca621f1090caa01c8c336b358ab6d3a2bbf25de2adab4d01b754e2fb3b9b710069177d54c1e956945a0043070275d9f6054307ee7348bd660849d90ff845f84326a0091ecf53f91bb97bb694f2f2443f3563ac2b646d651497774524394aae396360a044228b88f275aa1ec1bab43681d21dc7e3a676786ed1906f6841d0a1a188f88a')
FeeDelegatedValueTransferWithRatio {
_type: 'TxTypeFeeDelegatedValueTransferWithRatio',
_from: '0xa94f5374fce5edbc8e2a8697c15331677e6ebf0b',
_gas: '0xf4240',
_nonce: '0x4d2',
_gasPrice: '0x19',
_signatures: [ SignatureData { _v: '0x25', _r: '0xdde32...', _s: '0x1c8c3...' } ],
_feePayer: '0x5a0043070275d9f6054307ee7348bd660849d90f',
_feePayerSignatures: [ SignatureData { _v: '0x26', _r: '0x091ec...', _s: '0x44228...' } ],
_feeRatio: '0x1e',
_to: '0x7b65b75d204abed71587c9e519a89277766ee1d0',
_value: '0xa'
}

FeeDelegatedValueTransferMemoWithRatio


caver.transaction.feeDelegatedValueTransferMemoWithRatio.create(transactionObject)

FeeDelegatedValueTransferMemoWithRatio "表示[带比率的收费委托价值转移备忘录交易](.../.../.../.../.../learn/transactions/partial-fee-delegation.md#txtypefeedelegatedvaluetransfermemowithratio)。 "transactionObject "可以具有以下属性,以创建一个 "ValueTransferMemo "事务。

FeeDelegatedValueTransferMemoWithRatio` 的成员变量属性如下。 标记为 "可选 "的属性是指用户创建 "FeeDelegatedValueTransferMemoWithRatio "事务时可在 "transactionObject "中选择定义的属性。

备注

注意:您可以通过 RLP 编码字符串创建 FeeDelegatedValueTransferMemoWithRatio 的实例。 请参考下面的示例。 注意:caver.transaction.feeDelegatedValueTransferMemoWithRatio.create 从 caver-js v1.6.1 开始支持。

注意:从 caver-js v1.8.1-rc.4 开始,只支持使用 create 函数创建事务。 如果您一直使用 new caver.transaction.feeDelegatedValueTransferMemoWithRatio({...})这样的构造函数创建事务,请将其更改为 caver.transaction.feeDelegatedValueTransferMemoWithRatio.create({...})

属性

名称类型说明
value字符串以 peb 为单位的 KAIA 转账金额。 您可以使用 caver.utils.toPeb
from字符串发件人地址。
to字符串接收转账金额的账户地址。
input字符串交易附带的数据。 信息应传递给此属性。
gas字符串交易允许使用的最高交易费金额。
feeRatio字符串费用支付方将承担的交易费比例。 该比率的有效范围在 1 到 99 之间。 不允许比率为 0 或 100 及以上。
signatures数组(可选)签名数组。
feePayerSignatures数组(可选)付费者签名数组。
feePayer字符串(可选)缴费人地址。
nonce字符串(可选)用于唯一标识发件人交易的值。 如果省略,"caver.rpc.klay.getTransactionCount(address, 'pending')` 将用于设置 nonce。
gasPrice字符串(可选)一个乘数,用于计算发件人将支付多少代币。 如果省略,将使用 caver.rpc.klay.getGasPrice设置 gasPrice。
chainId字符串(可选)kaia 网络的链 id。 如果省略,将使用 caver.rpc.klay.getChainId设置 chainId。

示例


// Create a feeDelegatedValueTransferMemoWithRatio
> caver.transaction.feeDelegatedValueTransferMemoWithRatio({
from: '0x{address in hex}',
to: '0x9957dfd92e4b70f91131c573293343bc5f21f215',
value: caver.utils.toPeb(1, 'KLAY'),
gas: 25000,
input: '0x68656c6c6f',
feeRatio: 30,
})
// Create a feeDelegatedValueTransferMemoWithRatio from RLP-encoded string
> caver.transaction.feeDelegatedValueTransferMemoWithRatio('0x12f8dd8204d219830f4240947b65b75d204abed71587c9e519a89277766ee1d00a94a94f5374fce5edbc8e2a8697c15331677e6ebf0b8568656c6c6f1ef845f84326a0769f0afdc310289f9b24decb5bb765c8d7a87a6a4ae28edffb8b7085bbd9bc78a06a7b970eea026e60ac29bb52aee10661a4222e6bdcdfb3839a80586e584586b4945a0043070275d9f6054307ee7348bd660849d90ff845f84325a0c1c54bdc72ce7c08821329bf50542535fac74f4bba5de5b7881118a461d52834a03a3a64878d784f9af91c2e3ab9c90f17144c47cfd9951e3588c75063c0649ecd')
FeeDelegatedValueTransferMemoWithRatio {
_type: 'TxTypeFeeDelegatedValueTransferMemoWithRatio',
_from: '0xa94f5374fce5edbc8e2a8697c15331677e6ebf0b',
_gas: '0xf4240',
_nonce: '0x4d2',
_gasPrice: '0x19',
_signatures: [ SignatureData { _v: '0x26', _r: '0x769f0...', _s: '0x6a7b9...' } ],
_feePayer: '0x5a0043070275d9f6054307ee7348bd660849d90f',
_feePayerSignatures: [ SignatureData { _v: '0x25', _r: '0xc1c54...', _s: '0x3a3a6...' } ],
_feeRatio: '0x1e',
_to: '0x7b65b75d204abed71587c9e519a89277766ee1d0',
_value: '0xa',
_input: '0x68656c6c6f'
}

FeeDelegatedAccountUpdateWithRatio


caver.transaction.feeDelegatedAccountUpdateWithRatio.create(transactionObject)

FeeDelegatedAccountUpdateWithRatio "表示[按比率更新收费委托帐户交易](.../.../.../.../.../learn/transactions/partial-fee-delegation.md#txtypefeedelegatedaccountupdatewithratio)。 "transactionObject "可以具有以下属性,以创建一个 "ValueTransferMemo "事务。

FeeDelegatedAccountUpdateWithRatio` 的成员变量属性如下。 标记为 "可选 "的属性是指用户创建 "FeeDelegatedAccountUpdateWithRatio "事务时可在 "transactionObject "中选择定义的属性。

备注

注意:您可以通过 RLP 编码字符串创建 FeeDelegatedAccountUpdateWithRatio 的实例。 请参考下面的示例。 注意:caver.transaction.feeDelegatedAccountUpdateWithRatio.create从 caver-js v1.6.1 开始支持。

注意:从 caver-js v1.8.1-rc.4 开始,只支持使用 create 函数创建事务。 如果您一直使用 new caver.transaction.feeDelegatedAccountUpdateWithRatio({...})这样的构造函数创建事务,请将其更改为 caver.transaction.feeDelegatedAccountUpdateWithRatio.create({...})

属性

名称类型说明
from字符串发件人地址。
account[账户]包含更新账户所需信息的 [账户] 实例。
gas字符串交易允许使用的最高交易费金额。
feeRatio字符串费用支付方将承担的交易费比例。 该比率的有效范围在 1 到 99 之间。 不允许比率为 0 或 100 及以上。
signatures数组(可选)签名数组。
feePayerSignatures数组(可选)付费者签名数组。
feePayer字符串(可选)缴费人地址。
nonce字符串(可选)用于唯一标识发件人交易的值。 如果省略,"caver.rpc.klay.getTransactionCount(address, 'pending')` 将用于设置 nonce。
gasPrice字符串(可选)一个乘数,用于计算发件人将支付多少代币。 如果省略,将使用 caver.rpc.klay.getGasPrice设置 gasPrice。
chainId字符串(可选)kaia 网络的链 id。 如果省略,将使用 caver.rpc.klay.getChainId设置 chainId。

关于如何为每种 "账户密钥 "类型创建一个[账户]实例,请参阅入门-账户更新caver.account.create

示例


// Create a feeDelegatedAccountUpdateWithRatio
> caver.transaction.feeDelegatedAccountUpdateWithRatio({
from: '0x{address in hex}',
gas: 50000,
account: caver.account.createWithAccountKeyLegacy('0x{address in hex}'),
feeRatio: 30,
})
// Create a feeDelegatedAccountUpdateWithRatio from RLP-encoded string
> caver.transaction.feeDelegatedAccountUpdateWithRatio('0x22f8ec018505d21dba00830493e0945c525570f2b8e7e25f3a6b5e17f2cc63b872ece7a302a102a1d2af887950891813bf7d851bce55f47246a5269a5d4be1fc0ab78d78ae0f5a1ef847f845820feaa08553a692cd8f86af4d335785468a5b4527ee1a2d0c5e18517fe39375e4e82d85a0698db3a07cc81427eb8ea877bb8af33d66abfb29526f58db6997eb99010be4fd94294f5bc8fadbd1079b191d9c47e1f217d6c987b4f847f845820feaa0a44cbc6e30f9df61633ed1714014924b8b614b315288cdfd795c5ba18d36d5d8a0011611104f18e3bb3d32508317a0ce6d31f0a71d55e2363b02a47aabbc7bf9d4')
FeeDelegatedAccountUpdateWithRatio {
_type: 'TxTypeFeeDelegatedAccountUpdateWithRatio',
_from: '0x5c525570f2b8e7e25f3a6b5e17f2cc63b872ece7',
_gas: '0x493e0',
_nonce: '0x1',
_gasPrice: '0x5d21dba00',
_signatures: [ SignatureData { _v: '0x0fea', _r: '0x8553a...', _s: '0x698db...' } ],
_feePayer: '0x294f5bc8fadbd1079b191d9c47e1f217d6c987b4',
_feePayerSignatures: [ SignatureData { _v: '0x0fea', _r: '0xa44cb...', _s: '0x01161...' } ],
_feeRatio: '0x1e',
_account: Account {
_address: '0x5c525570f2b8e7e25f3a6b5e17f2cc63b872ece7',
_accountKey: AccountKeyPublic { _publicKey: '0x02a1d...' }
}
}

FeeDelegatedSmartContractDeployWithRatio


caver.transaction.feeDelegatedSmartContractDeployWithRatio.create(transactionObject)

FeeDelegatedSmartContractDeployWithRatio "代表一个[费用委托智能合约部署比率交易](.../.../.../.../.../learn/transactions/partial-fee-delegation.md#txtypefeedelegatedsmartcontractdeploywithratio)。 事务对象 "可以具有以下属性,以创建 "FeeDelegatedSmartContractDeployWithRatio "事务。

FeeDelegatedSmartContractDeployWithRatio` 的成员变量属性如下。 标记为 "可选 "的属性是指用户创建 "FeeDelegatedSmartContractDeployWithRatio "事务时可在 "transactionObject "中选择定义的属性。

备注

注意: 您可以从 RLP 编码的字符串中创建 FeeDelegatedSmartContractDeployWithRatio 的实例。 请参考下面的示例。 注意:caver.transaction.feeDelegatedSmartContractDeployWithRatio.create 从 caver-js v1.6.1 开始支持。

注意:从 caver-js v1.8.1-rc.4 开始,只支持使用 create 函数创建事务。 如果您一直使用 new caver.transaction.feeDelegatedSmartContractDeployWithRatio({...})这样的构造函数创建事务,请将其更改为 caver.transaction.feeDelegatedSmartContractDeployWithRatio.create({...})

属性

名称类型说明
from字符串发件人地址。
input字符串交易附带的数据。 要部署的智能合约的字节码及其参数。 您可以通过 caver.abi.encodeContractDeploy获取。
gas字符串交易允许使用的最高交易费金额。
feeRatio字符串费用支付方将承担的交易费比例。 该比率的有效范围在 1 到 99 之间。 不允许比率为 0 或 100 及以上。
value字符串(可选,默认值:'0x0')要传输的 KAIA 数量,单位为 peb。 您可以使用 caver.utils.toPeb
to字符串(可选,默认:'0x')智能合约的部署地址。 目前,该值无法定义。 今后将支持指定地址。
humanReadable布尔值(可选,默认为 false)由于目前还不支持人类可读地址,因此必须为 false。
codeFormat字符串(可选,默认:'EVM')智能合约代码的编码格式。 目前仅支持 EVM 值。 赋值后,该值将转换为十六进制字符串(例如,EVM 将转换为0x0)。
signatures数组(可选)签名数组。
feePayerSignatures数组(可选)付费者签名数组。
feePayer字符串(可选)缴费人地址。
nonce字符串(可选)用于唯一标识发件人交易的值。 如果省略,"caver.rpc.klay.getTransactionCount(address, 'pending')` 将用于设置 nonce。
gasPrice字符串(可选)一个乘数,用于计算发件人将支付多少代币。 如果省略,将使用 caver.rpc.klay.getGasPrice设置 gasPrice。
chainId字符串(可选)kaia 网络的链 id。 如果省略,将使用 caver.rpc.klay.getChainId设置 chainId。

示例


// Create a feeDelegatedSmartContractDeployWithRatio
> caver.transaction.feeDelegatedSmartContractDeployWithRatio({
from: '0x{address in hex}',
input: '0x60806...',
gas: 100000,
feeRatio: 30,
})
// Create a feeDelegatedSmartContractDeployWithRatio from RLP-encoded string
> caver.transaction.feeDelegatedSmartContractDeployWithRatio('0x2af902cd0e8505d21dba00830493e0808094294f5bc8fadbd1079b191d9c47e1f217d6c987b4b901fe608060405234801561001057600080fd5b506101de806100206000396000f3006080604052600436106100615763ffffffff7c01000000000000000000000000000000000000000000000000000000006000350416631a39d8ef81146100805780636353586b146100a757806370a08231146100ca578063fd6b7ef8146100f8575b3360009081526001602052604081208054349081019091558154019055005b34801561008c57600080fd5b5061009561010d565b60408051918252519081900360200190f35b6100c873ffffffffffffffffffffffffffffffffffffffff60043516610113565b005b3480156100d657600080fd5b5061009573ffffffffffffffffffffffffffffffffffffffff60043516610147565b34801561010457600080fd5b506100c8610159565b60005481565b73ffffffffffffffffffffffffffffffffffffffff1660009081526001602052604081208054349081019091558154019055565b60016020526000908152604090205481565b336000908152600160205260408120805490829055908111156101af57604051339082156108fc029083906000818181858888f193505050501561019c576101af565b3360009081526001602052604090208190555b505600a165627a7a72305820627ca46bb09478a015762806cc00c431230501118c7c26c30ac58c4e09e51c4f0029801e80f847f845820fe9a08a20b415ae7cd642f7682e59b63cb81068723a18eb0d8d3ba58fa7545c4fc8a5a05ba8a86f4496f124f04293d4b0afec85ab3946b039d1f6a25424217508df586794c56a1fafa968d64d19b4b81c306ecbab6e489743f847f845820fe9a0a525cba1b73cbe33b4df9be7165f8731b848ce3deba607690896eda8791a1a96a05ea75b4da1b6744bb98bc2b9748d0eca5c47714ea1c09e26bebc5de386ff9958')
FeeDelegatedSmartContractDeployWithRatio {
_type: 'TxTypeFeeDelegatedSmartContractDeployWithRatio',
_from: '0x294f5bc8fadbd1079b191d9c47e1f217d6c987b4',
_gas: '0x493e0',
_nonce: '0xe',
_gasPrice: '0x5d21dba00',
_signatures: [ SignatureData { _v: '0x0fe9', _r: '0x8a20b...', _s: '0x5ba8a...' } ],
_feePayer: '0xc56a1fafa968d64d19b4b81c306ecbab6e489743',
_feePayerSignatures: [ SignatureData { _v: '0x0fe9', _r: '0xa525c...', _s: '0x5ea75...' } ],
_feeRatio: '0x1e',
_to: '0x',
_value: '0x0',
_input: '0x60806...',
_humanReadable: false,
_codeFormat: '0x0'
}

FeeDelegatedSmartContractExecutionWithRatio


caver.transaction.feeDelegatedSmartContractExecutionWithRatio.create(transactionObject)

FeeDelegatedSmartContractExecutionWithRatio "表示[按比例执行的收费智能合约](.../.../.../.../.../learn/transactions/partial-fee-delegation.md#txtypefeedelegatedsmartcontractexecutionwithratio)。 事务对象 "可以具有以下属性,以创建 "FeeDelegatedSmartContractExecutionWithRatio "事务。

FeeDelegatedSmartContractExecutionWithRatio` 的成员变量属性如下。 标记为 "可选 "的属性是指用户创建 "FeeDelegatedSmartContractExecutionWithRatio "事务时可在 "transactionObject "中选择定义的属性。

备注

注意: 您可以通过 RLP 编码字符串创建 FeeDelegatedSmartContractExecutionWithRatio 的实例。 请参考下面的示例。 注意:caver.transaction.feeDelegatedSmartContractExecutionWithRatio.create从 caver-js v1.6.1 开始支持。

注意:从 caver-js v1.8.1-rc.4 开始,只支持使用 create 函数创建事务。 如果您一直使用 new caver.transaction.feeDelegatedSmartContractExecutionWithRatio({...})这样的构造函数创建事务,请将其更改为 caver.transaction.feeDelegatedSmartContractExecutionWithRatio.create({...})

属性

名称类型描述
from字符串发件人地址。
to字符串要执行的智能合约账户的地址。
input字符串附属于事务的数据,用于执行事务。 输入是一个编码字符串,表示要调用的函数和要传递给该函数的参数。 您可以通过 caver.abi.encodeFunctionCall获取该编码字符串。
gas字符串交易允许使用的最高交易费金额。
feeRatio字符串费用支付方将承担的交易费比例。 该比率的有效范围在 1 到 99 之间。 不允许比率为 0 或 100 及以上。
value字符串(可选,默认值:'0x0')要传输的 KAIA 数量,单位为 peb。 您可以使用 caver.utils.toPeb
singatures数组(可选)签名数组。
feePayerSignatures数组(可选)付费者签名数组。
付费者字符串(可选)缴费人地址。
nonce字符串(可选)用于唯一标识发件人交易的值。 如果省略,"caver.rpc.klay.getTransactionCount(address, 'pending')` 将用于设置 nonce。
gasPrice字符串(可选)一个乘数,用于计算发件人将支付多少代币。 如果省略,将使用 caver.rpc.klay.getGasPrice设置 gasPrice。
chainId字符串(可选)kaia 网络的链 id。 如果省略,将使用 caver.rpc.klay.getChainId设置 chainId。

示例


// Create a feeDelegatedSmartContractExecutionWithRatio
> caver.transaction.feeDelegatedSmartContractExecutionWithRatio({
from: '0x{address in hex}',
to: '0x{address in hex}',
input: '0xa9059...',
gas: 90000,
feeRatio: 30,
})
// Create a feeDelegatedSmartContractExecutionWithRatio from RLP-encoded string
> caver.transaction.feeDelegatedSmartContractExecutionWithRatio('0x32f8fc8204d219830f4240947b65b75d204abed71587c9e519a89277766ee1d00a94a94f5374fce5edbc8e2a8697c15331677e6ebf0ba46353586b000000000000000000000000bc5951f055a85f41a3b62fd6f68ab7de76d299b21ef845f84326a074ccfee18dc28932396b85617c53784ee366303bce39a2401d8eb602cf73766fa04c937a5ab9401d2cacb3f39ba8c29dbcd44588cc5c7d0b6b4113cfa7b7d9427b945a0043070275d9f6054307ee7348bd660849d90ff845f84325a04a4997524694d535976d7343c1e3a260f99ba53fcb5477e2b96216ec96ebb565a00f8cb31a35399d2b0fbbfa39f259c819a15370706c0449952c7cfc682d200d7c')
FeeDelegatedSmartContractExecutionWithRatio {
_type: 'TxTypeFeeDelegatedSmartContractExecutionWithRatio',
_from: '0xa94f5374fce5edbc8e2a8697c15331677e6ebf0b',
_gas: '0xf4240',
_nonce: '0x4d2',
_gasPrice: '0x19',
_signatures: [ SignatureData { _v: '0x26', _r: '0x74ccf...', _s: '0x4c937...' } ],
_feePayer: '0x5a0043070275d9f6054307ee7348bd660849d90f',
_feePayerSignatures: [ SignatureData { _v: '0x25', _r: '0x4a499...', _s: '0x0f8cb...' } ],
_feeRatio: '0x1e',
_to: '0x7b65b75d204abed71587c9e519a89277766ee1d0',
_value: '0xa',
_input: '0x6353586b000000000000000000000000bc5951f055a85f41a3b62fd6f68ab7de76d299b2'
}

FeeDelegatedCancelWithRatio


caver.transaction.feeDelegatedCancelWithRatio.create(transactionObject)

FeeDelegatedCancelWithRatio represents a fee delegated cancel with ratio transaction. 事务对象 "可以具有以下属性,以创建 "FeeDelegatedCancelWithRatio "事务。

FeeDelegatedCancelWithRatio` 的成员变量属性如下。 标记为 "可选 "的属性是指用户创建 "FeeDelegatedCancelWithRatio "事务时可在 "transactionObject "中选择定义的属性。

备注

注意:您可以通过 RLP 编码字符串创建 FeeDelegatedCancelWithRatio 的实例。 请参考下面的示例。 注意:caver.transaction.feeDelegatedCancelWithRatio.create从 caver-js v1.6.1 开始支持。

注意:从 caver-js v1.8.1-rc.4 开始,只支持使用 create 函数创建事务。 如果您一直使用new caver.transaction.feeDelegatedCancelWithRatio({...})这样的构造函数创建事务,请将其更改为caver.transaction.feeDelegatedCancelWithRatio.create({...})

属性

名称类型描述
from字符串发件人地址。
gas字符串交易允许使用的最高交易费金额。
feeRatio字符串费用支付方将承担的交易费比例。 该比率的有效范围在 1 到 99 之间。 不允许比率为 0 或 100 及以上。
nonce字符串(可选)用于唯一标识发件人交易的值。 如果省略,"caver.rpc.klay.getTransactionCount(address, 'pending')` 将用于设置 nonce。
singatures数组(可选)签名数组。
feePayerSignatures数组(可选)付费者签名数组。
feePayer字符串(可选)缴费人地址。
gasPrice字符串(可选)一个乘数,用于计算发件人将支付多少代币。 如果省略,将使用 caver.rpc.klay.getGasPrice设置 gasPrice。
chainId字符串(可选)kaia 网络的链 id。 如果省略,将使用 caver.rpc.klay.getChainId设置 chainId。

示例


// Create a feeDelegatedCancelWithRatio
> caver.transaction.feeDelegatedCancelWithRatio({
from: '0x{address in hex}',
nonce: 1,
gas: 25000,
feeRatio: 30,
})
// Create a feeDelegatedCancelWithRatio from RLP-encoded string
> caver.transaction.feeDelegatedCancelWithRatio('0x3af8c18204d219830f424094a94f5374fce5edbc8e2a8697c15331677e6ebf0b1ef845f84326a072efa47960bef40b536c72d7e03ceaf6ca5f6061eb8a3eda3545b1a78fe52ef5a062006ddaf874da205f08b3789e2d014ae37794890fc2e575bf75201563a24ba9945a0043070275d9f6054307ee7348bd660849d90ff845f84326a06ba5ef20c3049323fc94defe14ca162e28b86aa64f7cf497ac8a5520e9615614a04a0a0fc61c10b416759af0ce4ce5c09ca1060141d56d958af77050c9564df6bf')
FeeDelegatedCancelWithRatio {
_type: 'TxTypeFeeDelegatedCancelWithRatio',
_from: '0xa94f5374fce5edbc8e2a8697c15331677e6ebf0b',
_gas: '0xf4240',
_nonce: '0x4d2',
_gasPrice: '0x19',
_signatures: [ SignatureData { _v: '0x26', _r: '0x72efa...', _s: '0x62006...' } ],
_feePayer: '0x5a0043070275d9f6054307ee7348bd660849d90f',
_feePayerSignatures: [ SignatureData { _v: '0x26', _r: '0x6ba5e...', _s: '0x4a0a0...' } ],
_feeRatio: '0x1e'
}

FeeDelegatedChainDataAnchoringWithRatio


caver.transaction.feeDelegatedChainDataAnchoringWithRatio.create(transactionObject)

FeeDelegatedChainDataAnchoringWithRatio represents a fee delegated chain data anchoring with ratio transaction. 事务对象 "可以具有以下属性,以创建 "FeeDelegatedChainDataAnchoringWithRatio "事务。

FeeDelegatedChainDataAnchoringWithRatio` 的成员变量属性如下。 标记为 "可选 "的属性是指用户创建 "FeeDelegatedChainDataAnchoringWithRatio "事务时可在 "transactionObject "中选择定义的属性。

备注

注意:您可以通过 RLP 编码字符串创建 FeeDelegatedChainDataAnchoringWithRatio 的实例。 请参考下面的示例。 注意:caver.transaction.feeDelegatedChainDataAnchoringWithRatio.create从 caver-js v1.6.1 开始支持。

注意:从 caver-js v1.8.1-rc.4 开始,只支持使用 create 函数创建事务。 如果您一直使用 new caver.transaction.feeDelegatedChainDataAnchoringWithRatio({...})这样的构造函数创建事务,请将其更改为 caver.transaction.feeDelegatedChainDataAnchoringWithRatio.create({...})

属性

名称类型描述
from字符串发件人地址。
input字符串服务链数据。
gas字符串交易允许使用的最高交易费金额。
费用比率字符串费用支付方将承担的交易费比例。 该比率的有效范围在 1 到 99 之间。 不允许比率为 0 或 100 及以上。
nonce字符串(可选)用于唯一标识发件人交易的值。 如果省略,"caver.rpc.klay.getTransactionCount(address, 'pending')` 将用于设置 nonce。
singatures数组(可选)签名数组。
feePayerSignatures数组(可选)付费者签名数组。
feePayer字符串(可选)缴费人地址。
gasPrice字符串(可选)一个乘数,用于计算发件人将支付多少代币。 如果省略,将使用 caver.rpc.klay.getGasPrice设置 gasPrice。
chainId字符串(可选)kaia 网络的链 id。 如果省略,将使用 caver.rpc.klay.getChainId设置 chainId。

示例


// Create a feeDelegatedChainDataAnchoringWithRatio
> caver.transaction.feeDelegatedChainDataAnchoringWithRatio({
from: '0x{address in hex}',
gas: 50000,
input: '0xf8a6a...',
feeRatio: 30,
})
// Create a feeDelegatedChainDataAnchoringWithRatio from RLP-encoded string
> caver.transaction.feeDelegatedChainDataAnchoringWithRatio('0x4af90177128505d21dba0085174876e80094a94f5374fce5edbc8e2a8697c15331677e6ebf0bb8aff8ad80b8aaf8a8a00000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000001a00000000000000000000000000000000000000000000000000000000000000002a00000000000000000000000000000000000000000000000000000000000000003a0000000000000000000000000000000000000000000000000000000000000000405800658f845f84326a0c612a243bcb3b98958e9cce1a0bc0e170291b33a7f0dbfae4b36dafb5806797da00c734423492ecc21cc53238147c359676fcec43fcc2a0e021d87bb1da49f0abf9433f524631e573329a550296f595c820d6c65213ff845f84325a0a3e40598b67e2bcbaa48fdd258b9d1dcfcc9cc134972560ba042430078a769a5a06707ea362e588e4e5869cffcd5a058749d823aeff13eb95dc1146faff561df32')
FeeDelegatedChainDataAnchoringWithRatio {
_type: 'TxTypeFeeDelegatedChainDataAnchoringWithRatio',
_from: '0xa94f5374fce5edbc8e2a8697c15331677e6ebf0b',
_gas: '0x174876e800',
_nonce: '0x12',
_gasPrice: '0x5d21dba00',
_signatures: [ SignatureData { _v: '0x26', _r: '0xc612a...', _s: '0x0c734...' } ],
_feePayer: '0x33f524631e573329a550296f595c820d6c65213f',
_feePayerSignatures: [ SignatureData { _v: '0x25', _r: '0xa3e40...', _s: '0x6707e...' } ],
_feeRatio: '0x58',
_input: '0xf8ad8...'
}

让这个页面变得更好