Есть ли какой-либо API, который я могу вызвать внутри smartcontract, который может получить детали транзакции по txid? - PullRequest
0 голосов
/ 31 марта 2019

Я изучаю разработку ethereum и хочу проверить детали транзакции с помощью txid в смарт-контракте, но я не нашел никакого интерфейса, который мог бы помочь мне в этом, у кого-нибудь есть подсказка?

Ответы [ 2 ]

1 голос
/ 02 апреля 2019

Smart Contract имеет только доступ к текущему состоянию блокчейна.Твердость используется только для создания правил для транзакций и обновления состояния переменной.Для получения транзакции вы должны использовать web3 libraray.

1 голос
/ 31 марта 2019

Я думаю, что вы хотите позвонить getTransaction -подобный вызов RPC в умном контракте. Однако это невозможно.

Все глобальные переменные, которые можно использовать в Solidity, следующие.

Global Variables

block.coinbase (address): current block miner’s address
block.difficulty (uint): current block difficulty
block.gaslimit (uint): current block gaslimit
block.number (uint): current block number
block.blockhash (function(uint) returns (bytes32)): hash of the given block - only works for 256 most recent blocks
block.timestamp (uint): current block timestamp
msg.data (bytes): complete calldata
msg.gas (uint): remaining gas
msg.sender (address): sender of the message (current call)
msg.value (uint): number of wei sent with the message
now (uint): current block timestamp (alias for block.timestamp)
tx.gasprice (uint): gas price of the transaction
tx.origin (address): sender of the transaction (full call chain)
sha3(...) returns (bytes32): compute the Ethereum-SHA3 hash of the (tightly packed) arguments
sha256(...) returns (bytes32): compute the SHA256 hash of the (tightly packed) arguments
ripemd160(...) returns (bytes20): compute RIPEMD of 256 the (tightly packed) arguments
ecrecover(bytes32, uint8, bytes32, bytes32) returns (address): recover public key from elliptic curve signature
addmod(uint x, uint y, uint k) returns (uint): compute (x + y) % k where the addition is performed with arbitrary precision and does not wrap around at 2**256.
mulmod(uint x, uint y, uint k) returns (uint): compute (x * y) % k where the multiplication is performed with arbitrary precision and does not wrap around at 2**256.
this (current contract’s type): the current contract, explicitly convertible to address
super: the contract one level higher in the inheritance hierarchy
selfdestruct(address): destroy the current contract, sending its funds to the given address
.balance: balance of the address in Wei
.send(uint256) returns (bool): send given amount of Wei to address, returns false on failure.

Конечно, есть какое-то хитрое решение, которое использует Oraclize. Я рекомендую посмотреть этот сайт :) https://docs.oraclize.it/

В заключение, для вашего вопроса, получение детализации транзакции из солидности невозможно в нативном режиме, вы должны использовать стороннее решение, такое как Oraclize. :)

...