跳至主要內容
本頁面使用機器翻譯自英語,可能包含錯誤或不清楚的語言。如需最準確的信息,請參閱英文原文。由於更新頻繁,部分內容可能與英文原文有出入。請加入我們在 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...'
}

讓這個頁面變得更好