ETH Price: $1,873.34 (-2.83%)

Transaction Decoder

Block:
19287672 at Feb-23-2024 03:39:47 AM +UTC
Transaction Fee:
0.001818127149997356 ETH $3.41
Gas Used:
53,493 Gas / 33.988132092 Gwei

Emitted Events:

210 MemoryPageFactRegistry.LogMemoryPageFactContinuous( factHash=E81646299242AD8436AA19FD553B35721B5A2AD85927DC17DE5E8D6E1FB1EC3C, memoryHash=33197661233764665994265684908176489640625239189648235389154356243335194937146, prod=1878278995947036475311533204098953080276487970650099473442270271443232430261 )

Account State Difference:

  Address   Before After State Difference Code
0x16D5783a...6B29589A4
(SHARP Blockchain Writer)
219.544506139048908836 Eth
Nonce: 1287282
219.54268801189891148 Eth
Nonce: 1287283
0.001818127149997356
(beaverbuild)
13.325402322617513922 Eth13.325407671917513922 Eth0.0000053493
0xFD14567e...1ca7fD1b4
(StarkEx: SHARP)

Execution Trace

MemoryPageFactRegistry.registerContinuousMemoryPage( startAddr=3322509, values=[1481293608960274138011386071933829511773117265090419032237831202978187904002, 1149707556806080693107888533309927888036169482077446405168263046681505243953, 571193, 2330564997979944482690792296315471555453024274532975502058311121600954555998, 2590421891839256512113614983194993186457498815986333310670788206383913888162, 0, 0], z=1626947648639588972837246956480853400416822282806453053901123106186657890696, alpha=2926828989159777200140062841476151843037951008203993865242983803728105335402, prime=3618502788666131213697322783095070105623107215331596699973092056135872020481 ) => ( factHash=E81646299242AD8436AA19FD553B35721B5A2AD85927DC17DE5E8D6E1FB1EC3C, memoryHash=33197661233764665994265684908176489640625239189648235389154356243335194937146, prod=1878278995947036475311533204098953080276487970650099473442270271443232430261 )
registerContinuousMemoryPage[MemoryPageFactRegistry (ln:233)]
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
/*
Copyright 2019-2022 StarkWare Industries Ltd.
Licensed under the Apache License, Version 2.0 (the "License").
You may not use this file except in compliance with the License.
You may obtain a copy of the License at
https://www.starkware.co/open-source-license/
Unless required by applicable law or agreed to in writing,
software distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions
and limitations under the License.
*/
// SPDX-License-Identifier: Apache-2.0.
pragma solidity ^0.6.12;
import "IQueryableFactRegistry.sol";
contract FactRegistry is IQueryableFactRegistry {
// Mapping: fact hash -> true.
mapping(bytes32 => bool) private verifiedFact;
// Indicates whether the Fact Registry has at least one fact registered.
bool anyFactRegistered = false;
/*
Checks if a fact has been verified.
*/
function isValid(bytes32 fact) external view override returns (bool) {
return _factCheck(fact);
}
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX