You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: web3/ethtypes.nim
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -38,7 +38,7 @@ type
38
38
to*: Option[Address] # (optional when creating new contract) the address the transaction is directed to.
39
39
gas*: Option[Quantity] # (optional, default: 90000) integer of the gas provided for the transaction execution. It will return unused gas.
40
40
gasPrice*: Option[int] # (optional, default: To-Be-Determined) integer of the gasPrice used for each paid gas.
41
-
value*: Option[Uint256] # (optional) integer of the value sent with this transaction.
41
+
value*: Option[UInt256] # (optional) integer of the value sent with this transaction.
42
42
data*: string# the compiled code of a contract OR the hash of the invoked method signature and encoded parameters. For details see Ethereum Contract ABI.
43
43
nonce*: Option[Nonce] # (optional) integer of a nonce. This allows to overwrite your own pending transactions that use the same nonce
44
44
@@ -291,4 +291,4 @@ template len*(data: DynamicBytes): int =
0 commit comments