Solidity語言學習筆記————5、全域性變數

FLy_鵬程萬里發表於2018-06-22

全域性變數(Global Variables)

  • abi.encode(...) returns (bytes):對給定的引數進行ABI編碼。
  • abi.encodePacked(...) returns (bytes): Performes packed encoding of the given arguments
  • abi.encodeWithSelector(bytes4 selector, ...) returns (bytes)::對給定的引數進行ABI編碼——從第二個預置給定的四位元組選擇器開始
  • abi.encodeWithSignature(string signature, ...) returns (bytes):相當於abi.encodeWithSelector(bytes4(keccak256(signature), ...)
  • block.blockhash(uint blockNumber) returns (bytes32): 給定的塊的hash值, 只有最近工作的256個塊的hash值—— 在 0.4.22 後請使用blockhash(uint blockNumber).
  • block.coinbase (address): 當前塊的礦工的地址
  • block.difficulty (uint): 當前塊的難度
  • block.gaslimit (uint): 當前塊的gaslimit
  • block.number (uint):當前塊的數量
  • block.timestamp (uint):當前塊的時間戳
  • gasleft() returns (uint256): 剩餘 gas
  • msg.data(bytes): 完整的calldata
  • msg.gas(uint): 剩餘 gas - 0.4.21後請使用 gasleft()
  • msg.sender (address): 訊息的傳送者(當前呼叫)
  • msg.value (uint): 和訊息一起傳送的wei的數量
  • now (uint): 當前塊的時間戳(block.timestamp的別名)
  • tx.gasprice (uint):交易的gas價格
  • tx.origin (address):交易的傳送者(全呼叫鏈)
  • assert(bool condition): abort execution and revert state changes if condition is false (用於內部錯誤)
  • require(bool condition): abort execution and revert state changes if condition is false (用於輸入錯誤或外部元件的錯誤)
  • require(bool condition, string message): abort execution and revert state changes if condition is false (用於輸入錯誤或外部元件的錯誤). 並提供錯誤資訊.
  • revert(): 中止執行並還原狀態更改
  • revert(string message):中止執行並還原狀態更改,提供解釋字串
  • blockhash(uint blockNumber) returns (bytes32): : 給定的塊的hash值, 只有最近工作的256個塊的hash值
  • keccak256(...) returns (bytes32):計算(緊湊排列的)引數的 Ethereum-SHA3 hash值
  • sha3(...) returns (bytes32): an alias to keccak256
  • sha256(...) returns (bytes32): 計算(緊湊排列的)引數的SHA256 hash值
  • ripemd160(...) returns (bytes20):計算 256個(緊湊排列的)引數的RIPEMD
  • ecrecover(bytes32 hash, uint8 v, bytes32 r, bytes32 s) returns (address): 橢圓曲線簽名公鑰恢復,錯誤時返回0
  • 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. Assert that k != 0 starting from version 0.5.0.
  • 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. Assert that k != 0 starting from version 0.5.0.
  • this (current contract’s type): 當前合約,在地址上顯式轉換
  • super: 在層次關係上一層的合約
  • selfdestruct(address recipient): 銷燬當前的合約,將其資金髮送到指定address
  • suicide(address recipient): a deprecated alias to selfdestruct
  • <address>.balance (uint256): address地址中的賬戶餘額(以wei為單位)
  • <address>.send(uint256 amount) returns (bool): 將一定量wei傳送給address地址,若失敗返回false
  • <address>.transfer(uint256 amount): 將一定量wei傳送給address地址,若失敗丟擲異常。
註解
不要依賴於block.timestampnowblockhash用作隨機性的來源,除非你知道你在做什麼。
時間戳和塊雜湊在一定程度上受礦工的影響。例如,挖掘社群中的壞角色可以在選定的雜湊上執行賭場支付函式,如果他們沒有收到任何錢,只需重試一個不同的雜湊。
當前塊時間戳必須嚴格大於最後一個塊的時間戳,但唯一的保證是它將位於規範鏈中的兩個連續塊的時間戳之間的某處。
註解
由於區塊鏈是變化的,所以塊雜湊對於全部區塊塊不可用。只能訪問最近256個塊的雜湊值,所有其他區塊雜湊將為0。

相關文章