ETH Price:
$3,484.81
(+2.21%)
Gas:
5.40 Gwei
Search tokens, addresses and NFTs
Ecosystems
Greater Ethereum
Blockchains
Base
OP Mainnet
Mantle
Blast
Mint
zkSync Era
Cyber
Mode
Zora
Metis
Orderly
Boba Ethereum
Kinto
Ethereum Explorer
Blockchain
Transactions
Internal Transactions
Blocks
Forked Blocks (Reorgs)
Addresses
Verified Contracts
Tokens
ERC20 Tokens By MarketCap
ERC20 Transfers
ERC721 Tokens
ERC721 Transfers
ERC1155 Tokens
ERC1155 Transfers
Charts
Resources
Tools
Unit Converter
Contract Diff Checker
Account Balance Checker
Dumps
Export Data
Broadcast Transaction
UTF8 Converter
Explorer
Token Approvals
Gas Tracker
Dex Tracker
TPS Tracker
Domain Name Lookup
Verified Signatures
Developers
API Plans
Routescan APIs
ES Like APIs
Verify Contract
RPCs
|
Sign In
Contract ›
0xa291aCAf4a8fE16A5b1F15c6d6004fa3aB7f58ca
Bitcoin As A State Transition System From a technical standpoint, the ledger of a cryptocurrency
Contract Overview
Balance:
0 ETH
ETH Value:
$0.00
(@ $3,484.81/ETH)
Token:
$0.00
1
More Info
Tag:
Not Available.
Update?
Contract Creator:
0x6dC08...D64811
at txn
0xa80f6...40f863
Token Tracker:
Bitcoin As A State Transition System \n \n From a technical standpoint, the ledger of a cryptocurrency such as Bitcoin can be thought of as a state transition system, where there is a *state* consisting of the ownership status of all existing bitcoins and a *state transition function* that takes a state and a transaction and outputs a new state which is the result. In a standard banking system, for example, the state is a balance sheet, a transaction is a request to move $X from A to B, and the state transition function reduces the value in A's account by $X and increases the value in B's account by $X. If A's account has less than $X in the first place, the state transition function returns an error. Hence, one can formally define: \n The *state* in Bitcoin is the collection of all coins (technically, *unspent transaction outputs* or UTXO) that have been minted and not yet spent, with each UTXO having a denomination and an owner (defined by a 20-byte address which is essentially a cryptographic public keyfn1). A transaction contains one or more inputs, with each input containing a reference to an existing UTXO and a cryptographic signature produced by the private key associated with the owner's address, and one or more outputs, with each output containing a new UTXO to be added to the state. The state transition function APPLY(S,TX) -> S' can be defined roughly as follows: For each input in TX: If the referenced UTXO is not in S, return an error. If the provided signature does not match the owner of the UTXO, return an error. If the sum of the denominations of all input UTXO is less than the sum of the denominations of all output UTXO, return an error. Return S with all input UTXO removed and all output UTXO added The first half of the first step prevents transaction senders from spending coins that do not exist, the second half of the first step prevents transaction senders from spending other people's coins, and the second step enforces conservation of value. In order to use this for payment, the protocol is as follows. Suppose Alice wants to send 11.7 BTC to Bob. First, Alice will look for a set of available UTXO that she owns that totals up to at least 11.7 BTC. Realistically, Alice will not be able to get exactly 11.7 BTC; say that the smallest she can get is 6+4+2=12. She then creates a transaction with those three inputs and two outputs. The first output will be 11.7 BTC with Bob's address as its owner, and the second output will be the remaining 0.3 BTC *change*, with the owner being Alice herself. \n \n Mining \n \n If we had access to a trustworthy centralized service, this system would be trivial to implement; it could simply be coded exactly as described, using a centralized server's hard drive to keep track of the state. However, with Bitcoin we are trying to build a decentralized currency system, so we will need to combine the state transaction system with a consensus system in order to ensure that everyone agrees on the order of transactions. Bitcoin's decentralized consensus process requires nodes in the network to continuously attempt to produce packages of transactions called *blocks*. The network is intended to produce roughly one block every ten minutes, with each block containing a timestamp, a nonce, a reference to (ie. hash of) the previous block and a list of all of the transactions that have taken place since the previous block. Over time, this creates a persistent, ever-growing, *blockchain* that constantly updates to represent the latest state of the Bitcoin ledger. The algorithm for checking if a block is valid, expressed in this paradigm, is as follows: Check if the previous block referenced by the block exists and is valid. Check that the timestamp of the block is greater than that of the previous blockfn2 and less than 2 hours into the future Check that the proof-of-work on the block is valid. Let S[0] be the state at the end of the previous block. Suppose TX is the block's transaction list with n transactions. For all i in 0...n-1, set S[i+1] = APPLY(S[i],TX[i]) If any application returns an error, exit and return false. Return true, and register S[n] as the state at the end of this block. Essentially, each transaction in the block must provide a valid state transition from what was the canonical state before the transaction was executed to some new state. Note that the state is not encoded in the block in any way; it is purely an abstraction to be remembered by the validating node and can only be (securely) computed for any block by starting from the genesis state and sequentially applying every transaction in every block. Additionally, note that the order in which the miner includes transactions into the block matters; if there are two transactions A and B in a block such that B spends a UTXO created by A, then the block will be valid if A comes before B but not otherwise. The one validity condition present in the above list that is not found in other systems is the requirement for *proof-of-work*. The precise condition is that the double-SHA256 hash of every block, treated as a 256-bit number, must be less than a dynamically adjusted target, which as of the time of this writing is approximately 2187. The purpose of this is to make block creation computationally *hard*, thereby preventing sybil attackers from remaking the entire blockchain in their favor. Because SHA256 is designed to be a completely unpredictable pseudorandom function, the only way to create a valid block is simply trial and error, repeatedly incrementing the nonce and seeing if the new hash matches. At the current target of ~2187, the network must make an average of ~269 tries before a valid block is found; in general, the target is recalibrated by the network every 2016 blocks so that on average a new block is produced by some node in the network every ten minutes. In order to compensate miners for this computational work, the miner of every block is entitled to include a transaction giving themselves 25 BTC out of nowhere. Additionally, if any transaction has a higher total denomination in its inputs than in its outputs, the difference also goes to the miner as a *transaction fee*. Incidentally, this is also the only mechanism by which BTC are issued; the genesis state contained no coins at all. In order to better understand the purpose of mining, let us examine what happens in the event of a malicious attacker. Since Bitcoin's underlying cryptography is known to be secure, the attacker will target the one part of the Bitcoin system that is not protected by cryptography directly: the order of transactions. The attacker's strategy is simple: Send 100 BTC to a merchant in exchange for some product (preferably a rapid-delivery digital good) ait for the delivery of the product Produce another transaction sending the same 100 BTC to himself Try to convince the network that his transaction to himself was the one that came first. Once step (1) has taken place, after a few minutes some miner will include the transaction in a block, say block number 270000. After about one hour, five more blocks will have been added to the chain after that block, with each of those blocks indirectly pointing to the transaction and thus *confirming* it. At this point, the merchant will accept the payment as finalized and deliver the product; since we are assuming this is a digital good, delivery is instant. Now, the attacker creates another transaction sending the 100 BTC to himself. If the attacker simply releases it into the wild, the transaction will not be processed; miners will attempt to run APPLY(S,TX) and notice that TX consumes a UTXO which is no longer in the state. So instead, the attacker creates a *fork* of the blockchain, starting by mining another version of block 270000 pointing to the same block 269999 as a parent but with the new transaction in place of the old one. Because the block data is different, this requires redoing the proof-of-work. Furthermore, the attacker's new version of block 270000 has a different hash, so the original blocks 270001 to 270005 do not *point* to it; thus, the original chain and the attacker's new chain are completely separate. The rule is that in a fork the longest blockchain is taken to be the truth, and so legitimate miners will work on the 270005 chain while the attacker alone is working on the 270000 chain. In order for the attacker to make his blockchain the longest, he would need to have more computational power than the rest of the network combined in order to catch up (hence, *51% attack*). (GENESIS)
(@ $0.000023)
Transactions
Internal Txns
ERC20 Token Txns
Contract
Events
Latest 50 from a total of 25 events
First
1 of 1
Last
Txn Hash
Block
Age
Logs
Latest 25 from a total of 193 events
First
1 of 4
Last
Txn Hash
Block
Age
Logs
0x16328...95eae5
18512185
414 days 14 hrs ago
Approval (
index_topic_1
address
owner
,
index_topic_2
address
spender
,
uint256
value
)
[topic 0]:0x8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925
[topic 1]:
0xa547cbad0e911b491052459ac0932f6b4cb51ac7
[topic 2]:
0x80a64c6d7f12c47b7c66c5b4e20e72bc1fcd5d9e
Hex
0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff
0x5749a...084d14
18155971
464 days 11 hrs ago
Approval (
index_topic_1
address
owner
,
index_topic_2
address
spender
,
uint256
value
)
[topic 0]:0x8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925
[topic 1]:
0xa547cbad0e911b491052459ac0932f6b4cb51ac7
[topic 2]:
0x7a250d5630b4cf539739df2c5dacb4c659f2488d
Hex
0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff
0xd458e...9170c9
18155963
464 days 11 hrs ago
Transfer (
index_topic_1
address
from
,
index_topic_2
address
to
,
uint256
value
)
[topic 0]:0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef
[topic 1]:
0x7a250d5630b4cf539739df2c5dacb4c659f2488d
[topic 2]:
0x6dc0868d33f556e77252280696158defb3d64811
Hex
0x00000000000000000000000000000000000000000024e519b62b5760d4a1c87d
0xd458e...9170c9
18155963
464 days 11 hrs ago
Transfer (
index_topic_1
address
from
,
index_topic_2
address
to
,
uint256
value
)
[topic 0]:0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef
[topic 1]:
0xcf04de43f727369b68acf4062e257005018a7608
[topic 2]:
0x7a250d5630b4cf539739df2c5dacb4c659f2488d
Hex
0x00000000000000000000000000000000000000000024e519b62b5760d4a1c87d
0xd458e...9170c9
18155963
464 days 11 hrs ago
Transfer (
index_topic_1
address
from
,
index_topic_2
address
to
,
uint256
value
)
[topic 0]:0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef
[topic 1]:
0xcf04de43f727369b68acf4062e257005018a7608
[topic 2]:
0xa291acaf4a8fe16a5b1f15c6d6004fa3ab7f58ca
Hex
0x000000000000000000000000000000000000000000005f67b1adb0b892f4b473
0x89f53...3890dc
18155963
464 days 11 hrs ago
Approval (
index_topic_1
address
owner
,
index_topic_2
address
spender
,
uint256
value
)
[topic 0]:0x8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925
[topic 1]:
0x076ed06a2063bbbcd605a61466eb616195a12426
[topic 2]:
0x5200a0e9b161bc59feecb165fe2592bef3e1847a
Hex
0xffffffffffffffffffffffffffffffffffffffffffffb793b65eddfc6819b416
0x89f53...3890dc
18155963
464 days 11 hrs ago
Transfer (
index_topic_1
address
from
,
index_topic_2
address
to
,
uint256
value
)
[topic 0]:0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef
[topic 1]:
0x076ed06a2063bbbcd605a61466eb616195a12426
[topic 2]:
0xcf04de43f727369b68acf4062e257005018a7608
Hex
0x0000000000000000000000000000000000000000000047b2e27e3dd57a38793c
0x89f53...3890dc
18155963
464 days 11 hrs ago
Transfer (
index_topic_1
address
from
,
index_topic_2
address
to
,
uint256
value
)
[topic 0]:0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef
[topic 1]:
0x076ed06a2063bbbcd605a61466eb616195a12426
[topic 2]:
0xa291acaf4a8fe16a5b1f15c6d6004fa3ab7f58ca
Hex
0x0000000000000000000000000000000000000000000000b96722e42e1dadd2ad
0x89f53...3890dc
18155963
464 days 11 hrs ago
Approval (
index_topic_1
address
owner
,
index_topic_2
address
spender
,
uint256
value
)
[topic 0]:0x8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925
[topic 1]:
0xa291acaf4a8fe16a5b1f15c6d6004fa3ab7f58ca
[topic 2]:
0x7a250d5630b4cf539739df2c5dacb4c659f2488d
Hex
0x0000000000000000000000000000000000000000000000000000000000000000
0x89f53...3890dc
18155963
464 days 11 hrs ago
Transfer (
index_topic_1
address
from
,
index_topic_2
address
to
,
uint256
value
)
[topic 0]:0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef
[topic 1]:
0xa291acaf4a8fe16a5b1f15c6d6004fa3ab7f58ca
[topic 2]:
0xcf04de43f727369b68acf4062e257005018a7608
Hex
0x0000000000000000000000000000000000000000000130ee8e71790444000000
0x89f53...3890dc
18155963
464 days 11 hrs ago
Approval (
index_topic_1
address
owner
,
index_topic_2
address
spender
,
uint256
value
)
[topic 0]:0x8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925
[topic 1]:
0xa291acaf4a8fe16a5b1f15c6d6004fa3ab7f58ca
[topic 2]:
0x7a250d5630b4cf539739df2c5dacb4c659f2488d
Hex
0x0000000000000000000000000000000000000000000130ee8e71790444000000
0x7c005...99dc69
18155955
464 days 11 hrs ago
Approval (
index_topic_1
address
owner
,
index_topic_2
address
spender
,
uint256
value
)
[topic 0]:0x8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925
[topic 1]:
0x9ab89cc9700fb2c0fe2358c8d44b442dea97f254
[topic 2]:
0x000000000022d473030f116ddee9f6b43ac78ba3
Hex
0x0000000000000000000000000000000000000000000000000000000000000000
0x7c005...99dc69
18155955
464 days 11 hrs ago
Transfer (
index_topic_1
address
from
,
index_topic_2
address
to
,
uint256
value
)
[topic 0]:0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef
[topic 1]:
0x9ab89cc9700fb2c0fe2358c8d44b442dea97f254
[topic 2]:
0xcf04de43f727369b68acf4062e257005018a7608
Hex
0x00000000000000000000000000000000000000000000403b032a61f65a09579c
0x7c005...99dc69
18155955
464 days 11 hrs ago
Transfer (
index_topic_1
address
from
,
index_topic_2
address
to
,
uint256
value
)
[topic 0]:0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef
[topic 1]:
0x9ab89cc9700fb2c0fe2358c8d44b442dea97f254
[topic 2]:
0xa291acaf4a8fe16a5b1f15c6d6004fa3ab7f58ca
Hex
0x0000000000000000000000000000000000000000000000a6174e00fd51123204
0x7c005...99dc69
18155955
464 days 11 hrs ago
Approval (
index_topic_1
address
owner
,
index_topic_2
address
spender
,
uint256
value
)
[topic 0]:0x8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925
[topic 1]:
0xa291acaf4a8fe16a5b1f15c6d6004fa3ab7f58ca
[topic 2]:
0x7a250d5630b4cf539739df2c5dacb4c659f2488d
Hex
0x0000000000000000000000000000000000000000000000000000000000000000
0x7c005...99dc69
18155955
464 days 11 hrs ago
Transfer (
index_topic_1
address
from
,
index_topic_2
address
to
,
uint256
value
)
[topic 0]:0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef
[topic 1]:
0xa291acaf4a8fe16a5b1f15c6d6004fa3ab7f58ca
[topic 2]:
0xcf04de43f727369b68acf4062e257005018a7608
Hex
0x0000000000000000000000000000000000000000000130ee8e71790444000000
0x7c005...99dc69
18155955
464 days 11 hrs ago
Approval (
index_topic_1
address
owner
,
index_topic_2
address
spender
,
uint256
value
)
[topic 0]:0x8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925
[topic 1]:
0xa291acaf4a8fe16a5b1f15c6d6004fa3ab7f58ca
[topic 2]:
0x7a250d5630b4cf539739df2c5dacb4c659f2488d
Hex
0x0000000000000000000000000000000000000000000130ee8e71790444000000
0x2462d...2b30a2
18155951
464 days 11 hrs ago
Approval (
index_topic_1
address
owner
,
index_topic_2
address
spender
,
uint256
value
)
[topic 0]:0x8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925
[topic 1]:
0xc5bab66181260e6e7b084718deac7dc321325de4
[topic 2]:
0x000000000022d473030f116ddee9f6b43ac78ba3
Hex
0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff
0x59a6e...edd081
18155942
464 days 11 hrs ago
Transfer (
index_topic_1
address
from
,
index_topic_2
address
to
,
uint256
value
)
[topic 0]:0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef
[topic 1]:
0xcf04de43f727369b68acf4062e257005018a7608
[topic 2]:
0xfbf4169db15af141b9002bfe262aaadccb0a06eb
Hex
0x000000000000000000000000000000000000000000003ef7ceb78963f689ec13
0x59a6e...edd081
18155942
464 days 11 hrs ago
Transfer (
index_topic_1
address
from
,
index_topic_2
address
to
,
uint256
value
)
[topic 0]:0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef
[topic 1]:
0xcf04de43f727369b68acf4062e257005018a7608
[topic 2]:
0xa291acaf4a8fe16a5b1f15c6d6004fa3ab7f58ca
Hex
0x0000000000000000000000000000000000000000000000a2d38ae787797095c7
0xf77dc...e6b3bc
18155940
464 days 11 hrs ago
Transfer (
index_topic_1
address
from
,
index_topic_2
address
to
,
uint256
value
)
[topic 0]:0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef
[topic 1]:
0xcf04de43f727369b68acf4062e257005018a7608
[topic 2]:
0xc5bab66181260e6e7b084718deac7dc321325de4
Hex
0x000000000000000000000000000000000000000000004653ae67ec096e86a810
0xf77dc...e6b3bc
18155940
464 days 11 hrs ago
Transfer (
index_topic_1
address
from
,
index_topic_2
address
to
,
uint256
value
)
[topic 0]:0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef
[topic 1]:
0xcf04de43f727369b68acf4062e257005018a7608
[topic 2]:
0xa291acaf4a8fe16a5b1f15c6d6004fa3ab7f58ca
Hex
0x0000000000000000000000000000000000000000000000b5daf94ac9cad03a96
0xdbf3f...141fc1
18155934
464 days 11 hrs ago
Transfer (
index_topic_1
address
from
,
index_topic_2
address
to
,
uint256
value
)
[topic 0]:0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef
[topic 1]:
0xcf04de43f727369b68acf4062e257005018a7608
[topic 2]:
0xa547cbad0e911b491052459ac0932f6b4cb51ac7
Hex
0x0000000000000000000000000000000000000000000040ebc2d25331cf61dd22
0xdbf3f...141fc1
18155934
464 days 11 hrs ago
Transfer (
index_topic_1
address
from
,
index_topic_2
address
to
,
uint256
value
)
[topic 0]:0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef
[topic 1]:
0xcf04de43f727369b68acf4062e257005018a7608
[topic 2]:
0xa291acaf4a8fe16a5b1f15c6d6004fa3ab7f58ca
Hex
0x0000000000000000000000000000000000000000000000a7e05a0b2f0c702e31
0xccc4c...0dd7de
18155931
464 days 11 hrs ago
Approval (
index_topic_1
address
owner
,
index_topic_2
address
spender
,
uint256
value
)
[topic 0]:0x8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925
[topic 1]:
0x9ab89cc9700fb2c0fe2358c8d44b442dea97f254
[topic 2]:
0x000000000022d473030f116ddee9f6b43ac78ba3
Hex
0x0000000000000000000000000000000000000000000040e11a7862f3ab1b89a0
0xa0849...97ac6a
18155930
464 days 11 hrs ago
Approval (
index_topic_1
address
owner
,
index_topic_2
address
spender
,
uint256
value
)
[topic 0]:0x8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925
[topic 1]:
0x9454d63ae61e2bca45d8e8b5b8724588ab1f1d07
[topic 2]:
0x5200a0e9b161bc59feecb165fe2592bef3e1847a
Hex
0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff
0xa123a...2bd229
18155929
464 days 11 hrs ago
Transfer (
index_topic_1
address
from
,
index_topic_2
address
to
,
uint256
value
)
[topic 0]:0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef
[topic 1]:
0xcf04de43f727369b68acf4062e257005018a7608
[topic 2]:
0x9454d63ae61e2bca45d8e8b5b8724588ab1f1d07
Hex
0x000000000000000000000000000000000000000000004b787b931fdf22c00000
0xa123a...2bd229
18155929
464 days 11 hrs ago
Transfer (
index_topic_1
address
from
,
index_topic_2
address
to
,
uint256
value
)
[topic 0]:0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef
[topic 1]:
0xcf04de43f727369b68acf4062e257005018a7608
[topic 2]:
0xa291acaf4a8fe16a5b1f15c6d6004fa3ab7f58ca
Hex
0x0000000000000000000000000000000000000000000000c328093e61ee400000
0x020cd...ba2e4c
18155925
464 days 11 hrs ago
Approval (
index_topic_1
address
owner
,
index_topic_2
address
spender
,
uint256
value
)
[topic 0]:0x8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925
[topic 1]:
0x076ed06a2063bbbcd605a61466eb616195a12426
[topic 2]:
0x5200a0e9b161bc59feecb165fe2592bef3e1847a
Hex
0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff
0x0111f...19522b
18155921
464 days 11 hrs ago
Transfer (
index_topic_1
address
from
,
index_topic_2
address
to
,
uint256
value
)
[topic 0]:0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef
[topic 1]:
0xcf04de43f727369b68acf4062e257005018a7608
[topic 2]:
0x076ed06a2063bbbcd605a61466eb616195a12426
Hex
0x00000000000000000000000000000000000000000000486c49a1220397e64be9
0x0111f...19522b
18155921
464 days 11 hrs ago
Transfer (
index_topic_1
address
from
,
index_topic_2
address
to
,
uint256
value
)
[topic 0]:0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef
[topic 1]:
0xcf04de43f727369b68acf4062e257005018a7608
[topic 2]:
0xa291acaf4a8fe16a5b1f15c6d6004fa3ab7f58ca
Hex
0x0000000000000000000000000000000000000000000000bb468fd98e422e492b
0x5dda8...6814b7
18155920
464 days 11 hrs ago
Approval (
index_topic_1
address
owner
,
index_topic_2
address
spender
,
uint256
value
)
[topic 0]:0x8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925
[topic 1]:
0x0630a99b57ce5dc3210870e6581e0f17f0f29e1c
[topic 2]:
0x000000000022d473030f116ddee9f6b43ac78ba3
Hex
0x0000000000000000000000000000000000000000000049a9a8f77a31c3803dbb
0x821b1...a1c061
18155918
464 days 11 hrs ago
Approval (
index_topic_1
address
owner
,
index_topic_2
address
spender
,
uint256
value
)
[topic 0]:0x8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925
[topic 1]:
0x93fd9b24c8c482b7ca5e628095bb8df46c49cd7c
[topic 2]:
0x5200a0e9b161bc59feecb165fe2592bef3e1847a
Hex
0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff
0xd81c4...59b7c6
18155917
464 days 11 hrs ago
Transfer (
index_topic_1
address
from
,
index_topic_2
address
to
,
uint256
value
)
[topic 0]:0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef
[topic 1]:
0xcf04de43f727369b68acf4062e257005018a7608
[topic 2]:
0x93fd9b24c8c482b7ca5e628095bb8df46c49cd7c
Hex
0x000000000000000000000000000000000000000000004b787b931fdf22c00000
0xd81c4...59b7c6
18155917
464 days 11 hrs ago
Transfer (
index_topic_1
address
from
,
index_topic_2
address
to
,
uint256
value
)
[topic 0]:0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef
[topic 1]:
0xcf04de43f727369b68acf4062e257005018a7608
[topic 2]:
0xa291acaf4a8fe16a5b1f15c6d6004fa3ab7f58ca
Hex
0x0000000000000000000000000000000000000000000000c328093e61ee400000
0x63624...6c7183
18155913
464 days 11 hrs ago
Transfer (
index_topic_1
address
from
,
index_topic_2
address
to
,
uint256
value
)
[topic 0]:0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef
[topic 1]:
0xcf04de43f727369b68acf4062e257005018a7608
[topic 2]:
0x7b89513c3aa412d627fbea19706fc0aa8745588e
Hex
0x00000000000000000000000000000000000000000000453f64b4e7e46a48fdb7
0x63624...6c7183
18155913
464 days 11 hrs ago
Transfer (
index_topic_1
address
from
,
index_topic_2
address
to
,
uint256
value
)
[topic 0]:0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef
[topic 1]:
0xcf04de43f727369b68acf4062e257005018a7608
[topic 2]:
0xa291acaf4a8fe16a5b1f15c6d6004fa3ab7f58ca
Hex
0x0000000000000000000000000000000000000000000000b310884abf132cb266
0xfc975...f27548
18155912
464 days 11 hrs ago
Approval (
index_topic_1
address
owner
,
index_topic_2
address
spender
,
uint256
value
)
[topic 0]:0x8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925
[topic 1]:
0x68f501d2e3433410ef828535dc9851c30dbf955d
[topic 2]:
0x000000000022d473030f116ddee9f6b43ac78ba3
Hex
0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff
0x23e36...eb7291
18155910
464 days 11 hrs ago
Transfer (
index_topic_1
address
from
,
index_topic_2
address
to
,
uint256
value
)
[topic 0]:0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef
[topic 1]:
0xcf04de43f727369b68acf4062e257005018a7608
[topic 2]:
0x68f501d2e3433410ef828535dc9851c30dbf955d
Hex
0x00000000000000000000000000000000000000000000464ed2c54103c411635d
0x23e36...eb7291
18155910
464 days 11 hrs ago
Transfer (
index_topic_1
address
from
,
index_topic_2
address
to
,
uint256
value
)
[topic 0]:0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef
[topic 1]:
0xcf04de43f727369b68acf4062e257005018a7608
[topic 2]:
0xa291acaf4a8fe16a5b1f15c6d6004fa3ab7f58ca
Hex
0x0000000000000000000000000000000000000000000000b5ce696d4345367a89
0x938eb...d48e4d
18155910
464 days 11 hrs ago
Transfer (
index_topic_1
address
from
,
index_topic_2
address
to
,
uint256
value
)
[topic 0]:0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef
[topic 1]:
0xcf04de43f727369b68acf4062e257005018a7608
[topic 2]:
0x66942f06d88d699c623f4b0c748d3026df2e61bd
Hex
0x00000000000000000000000000000000000000000000018268df1a3cc8600000
0x938eb...d48e4d
18155910
464 days 11 hrs ago
Transfer (
index_topic_1
address
from
,
index_topic_2
address
to
,
uint256
value
)
[topic 0]:0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef
[topic 1]:
0xcf04de43f727369b68acf4062e257005018a7608
[topic 2]:
0xa291acaf4a8fe16a5b1f15c6d6004fa3ab7f58ca
Hex
0x000000000000000000000000000000000000000000000003e733628714200000
0xe628c...5af97d
18155910
464 days 11 hrs ago
Transfer (
index_topic_1
address
from
,
index_topic_2
address
to
,
uint256
value
)
[topic 0]:0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef
[topic 1]:
0xcf04de43f727369b68acf4062e257005018a7608
[topic 2]:
0x6d7092fd73ff21c83976104416513ed6e85b20f7
Hex
0x00000000000000000000000000000000000000000000018268df1a3cc8600000
0xe628c...5af97d
18155910
464 days 11 hrs ago
Transfer (
index_topic_1
address
from
,
index_topic_2
address
to
,
uint256
value
)
[topic 0]:0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef
[topic 1]:
0xcf04de43f727369b68acf4062e257005018a7608
[topic 2]:
0xa291acaf4a8fe16a5b1f15c6d6004fa3ab7f58ca
Hex
0x000000000000000000000000000000000000000000000003e733628714200000
0x50e26...cd4e68
18155910
464 days 11 hrs ago
Transfer (
index_topic_1
address
from
,
index_topic_2
address
to
,
uint256
value
)
[topic 0]:0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef
[topic 1]:
0xcf04de43f727369b68acf4062e257005018a7608
[topic 2]:
0xea2aa320f1c654938ba022558d2f1ae935530927
Hex
0x00000000000000000000000000000000000000000000018268df1a3cc8600000
0x50e26...cd4e68
18155910
464 days 11 hrs ago
Transfer (
index_topic_1
address
from
,
index_topic_2
address
to
,
uint256
value
)
[topic 0]:0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef
[topic 1]:
0xcf04de43f727369b68acf4062e257005018a7608
[topic 2]:
0xa291acaf4a8fe16a5b1f15c6d6004fa3ab7f58ca
Hex
0x000000000000000000000000000000000000000000000003e733628714200000
0xb6789...4c8039
18155908
464 days 11 hrs ago
Transfer (
index_topic_1
address
from
,
index_topic_2
address
to
,
uint256
value
)
[topic 0]:0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef
[topic 1]:
0xcf04de43f727369b68acf4062e257005018a7608
[topic 2]:
0xdbf69cc43e309fc425f5f263d7d8b8d188b8d279
Hex
0x0000000000000000000000000000000000000000000047767fa5e6e178b0244b
0xb6789...4c8039
18155908
464 days 11 hrs ago
Transfer (
index_topic_1
address
from
,
index_topic_2
address
to
,
uint256
value
)
[topic 0]:0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef
[topic 1]:
0xcf04de43f727369b68acf4062e257005018a7608
[topic 2]:
0xa291acaf4a8fe16a5b1f15c6d6004fa3ab7f58ca
Hex
0x0000000000000000000000000000000000000000000000b8cafc810a08fa0589
0xe0571...d3e70e
18155907
464 days 11 hrs ago
Transfer (
index_topic_1
address
from
,
index_topic_2
address
to
,
uint256
value
)
[topic 0]:0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef
[topic 1]:
0xcf04de43f727369b68acf4062e257005018a7608
[topic 2]:
0x9f12934e3268ff34022a2e70d9c928958911b89f
Hex
0x0000000000000000000000000000000000000000000048931d92970d009098c5
0xe0571...d3e70e
18155907
464 days 11 hrs ago
Transfer (
index_topic_1
address
from
,
index_topic_2
address
to
,
uint256
value
)
[topic 0]:0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef
[topic 1]:
0xcf04de43f727369b68acf4062e257005018a7608
[topic 2]:
0xa291acaf4a8fe16a5b1f15c6d6004fa3ab7f58ca
Hex
0x0000000000000000000000000000000000000000000000bbaaf723245556cb3d