Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(protocol): Add computation_cost_burned field to GasCostSummary #3944

Merged
merged 28 commits into from
Nov 11, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
493d019
Add computation_cost_burned field to GasCostSummary
cyberphysic4l Nov 7, 2024
43c1d01
Update to iota-rust-sdk PR commit
DaughterOfMars Nov 7, 2024
8b49742
add missing fields
cyberphysic4l Nov 7, 2024
3910a01
refactor(iota-types): update specs
miker83z Nov 7, 2024
421be01
fix(iota-graphql-e2e-tests): update baselines
miker83z Nov 7, 2024
cead30c
fix fmt
miker83z Nov 7, 2024
acfe5d1
Merge branch 'develop' into feat/gascostsummaryburned
miker83z Nov 7, 2024
f339bf9
fix(iota-graphql-e2e-tests): update baselines after merge
miker83z Nov 7, 2024
c2025a7
fix clippy
miker83z Nov 7, 2024
5bbed20
fix(iota-adapter-transactional-tests): update baselines
miker83z Nov 7, 2024
594e415
fix(iota-verifier-transactional-tests): update baselines
miker83z Nov 7, 2024
a561b52
review comments
cyberphysic4l Nov 7, 2024
bde641d
remove doc comment
cyberphysic4l Nov 7, 2024
1e6b7dc
fix iota-core format
miker83z Nov 7, 2024
05540bc
fix iota-cost test snapshot
miker83z Nov 7, 2024
da54d62
fix openapi
miker83z Nov 7, 2024
b394e5e
update iota-light-client checkpoints
miker83z Nov 7, 2024
f169075
update hash
DaughterOfMars Nov 8, 2024
e6ae59b
Merge branch 'develop' of github.com:iotaledger/iota into feat/gascos…
muXxer Nov 8, 2024
0e5aca9
fix(tests): update test baselines
muXxer Nov 8, 2024
8e46236
fix(light-client): update test snapshot
muXxer Nov 8, 2024
715bbf5
Merge branch 'develop' into feat/gascostsummaryburned
lzpap Nov 9, 2024
cb1ffdd
fix(e2e-tests): update `snapshit_tests__body_fn.snap`
muXxer Nov 9, 2024
1f15ece
fix(sdk): add missing field `computationCostBurned` to bcs effects
muXxer Nov 10, 2024
afe08dc
feat(analytics-indexer): add field `computation_cost_burned`
muXxer Nov 11, 2024
42c4fde
fix(iota-graphql): update schema with gas_cost_burned field
lzpap Nov 11, 2024
f1044aa
feat(ts-sdk): Sync TS SDK
msarcev Nov 11, 2024
2bb867e
feat(ts-sdk): Fix pnpm-workspace.yaml + script
msarcev Nov 11, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -417,7 +417,7 @@ iota-rosetta = { path = "crates/iota-rosetta" }
iota-rpc-loadgen = { path = "crates/iota-rpc-loadgen" }
iota-sdk = { path = "crates/iota-sdk" }
# core-types with json format for REST API
iota-sdk2 = { package = "iota-rust-sdk", git = "ssh://[email protected]/iotaledger/iota-rust-sdk.git", rev = "8c849ded4f23b557cf8bccd86e71cf05c888faaf", features = ["hash", "serde", "schemars"] }
iota-sdk2 = { package = "iota-rust-sdk", git = "ssh://[email protected]/iotaledger/iota-rust-sdk.git", rev = "d605da95029e74376f0f39a95526bb1a5c0ebd7a", features = ["hash", "serde", "schemars"] }
iota-simulator = { path = "crates/iota-simulator" }
iota-snapshot = { path = "crates/iota-snapshot" }
iota-source-validation = { path = "crates/iota-source-validation" }
Expand Down
2 changes: 2 additions & 0 deletions apps/explorer/.prettierignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
test-results/

Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,13 @@ task 1, lines 7-26:
//# publish
created: object(1,0)
mutated: object(0,0)
gas summary: computation_cost: 1000000, storage_cost: 5563200, storage_rebate: 0, non_refundable_storage_fee: 0
gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 5563200, storage_rebate: 0, non_refundable_storage_fee: 0

task 2, line 28:
//# run Test::M1::create --args 0 @A
created: object(2,0)
mutated: object(0,0)
gas summary: computation_cost: 1000000, storage_cost: 2287600, storage_rebate: 980400, non_refundable_storage_fee: 0
gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2287600, storage_rebate: 980400, non_refundable_storage_fee: 0

task 3, line 30:
//# view-object 2,0
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,13 @@ task 1, lines 10-52:
//# publish
created: object(1,0)
mutated: object(0,2)
gas summary: computation_cost: 1000000, storage_cost: 7508800, storage_rebate: 0, non_refundable_storage_fee: 0
gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 7508800, storage_rebate: 0, non_refundable_storage_fee: 0

task 2, line 54:
//# run test::m::mint --sender A
created: object(2,0)
mutated: object(0,0)
gas summary: computation_cost: 1000000, storage_cost: 2181200, storage_rebate: 0, non_refundable_storage_fee: 0
gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2181200, storage_rebate: 0, non_refundable_storage_fee: 0

task 3, line 56:
//# view-object 2,0
Expand All @@ -31,13 +31,13 @@ task 4, line 58:
//# run test::m::add --sender A --args object(2,0) 1
created: object(4,0), object(4,1)
mutated: object(0,0), object(2,0)
gas summary: computation_cost: 1000000, storage_cost: 5829200, storage_rebate: 2181200, non_refundable_storage_fee: 0
gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 5829200, storage_rebate: 2181200, non_refundable_storage_fee: 0

task 5, line 60:
//# run test::m::remove --sender A --args object(2,0) 1
mutated: object(0,0), object(2,0)
deleted: object(4,0), object(4,1)
gas summary: computation_cost: 1000000, storage_cost: 2181200, storage_rebate: 5829200, non_refundable_storage_fee: 0
gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2181200, storage_rebate: 5829200, non_refundable_storage_fee: 0

task 6, lines 62-66:
//# view-object 2,0
Expand All @@ -55,7 +55,7 @@ task 7, line 68:
//# run test::m::mint --sender A
created: object(7,0)
mutated: object(0,0)
gas summary: computation_cost: 1000000, storage_cost: 2181200, storage_rebate: 980400, non_refundable_storage_fee: 0
gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2181200, storage_rebate: 980400, non_refundable_storage_fee: 0

task 8, line 70:
//# view-object 7,0
Expand All @@ -73,12 +73,12 @@ task 9, line 72:
//# run test::m::add --sender A --args object(7,0) 1
created: object(9,0), object(9,1)
mutated: object(0,0), object(7,0)
gas summary: computation_cost: 1000000, storage_cost: 5829200, storage_rebate: 2181200, non_refundable_storage_fee: 0
gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 5829200, storage_rebate: 2181200, non_refundable_storage_fee: 0

task 10, line 74:
//# run test::m::remove_and_add --sender A --args object(7,0) 1
mutated: object(0,0), object(7,0), object(9,0), object(9,1)
gas summary: computation_cost: 1000000, storage_cost: 5829200, storage_rebate: 5829200, non_refundable_storage_fee: 0
gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 5829200, storage_rebate: 5829200, non_refundable_storage_fee: 0

task 11, lines 76-80:
//# view-object 7,0
Expand All @@ -96,7 +96,7 @@ task 12, line 82:
//# run test::m::mint --sender A
created: object(12,0)
mutated: object(0,0)
gas summary: computation_cost: 1000000, storage_cost: 2181200, storage_rebate: 980400, non_refundable_storage_fee: 0
gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2181200, storage_rebate: 980400, non_refundable_storage_fee: 0

task 13, line 84:
//# view-object 12,0
Expand All @@ -114,14 +114,14 @@ task 14, line 86:
//# run test::m::add --sender A --args object(12,0) 1
created: object(14,0), object(14,1)
mutated: object(0,0), object(12,0)
gas summary: computation_cost: 1000000, storage_cost: 5829200, storage_rebate: 2181200, non_refundable_storage_fee: 0
gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 5829200, storage_rebate: 2181200, non_refundable_storage_fee: 0

task 15, line 88:
//# run test::m::remove_and_wrap --sender A --args object(12,0) 1
created: object(15,0)
mutated: object(0,0), object(12,0), object(14,0)
wrapped: object(14,1)
gas summary: computation_cost: 1000000, storage_cost: 6072400, storage_rebate: 5829200, non_refundable_storage_fee: 0
gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 6072400, storage_rebate: 5829200, non_refundable_storage_fee: 0

task 16, line 90:
//# view-object 12,0
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,19 +7,19 @@ task 1, lines 10-38:
//# publish
created: object(1,0)
mutated: object(0,2)
gas summary: computation_cost: 1000000, storage_cost: 6505600, storage_rebate: 0, non_refundable_storage_fee: 0
gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 6505600, storage_rebate: 0, non_refundable_storage_fee: 0

task 2, line 40:
//# run test::m::mint --sender A
created: object(2,0)
mutated: object(0,0)
gas summary: computation_cost: 1000000, storage_cost: 2181200, storage_rebate: 0, non_refundable_storage_fee: 0
gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2181200, storage_rebate: 0, non_refundable_storage_fee: 0

task 3, line 42:
//# run test::m::add --sender A --args object(2,0) 0
created: object(3,0), object(3,1)
mutated: object(0,0), object(2,0)
gas summary: computation_cost: 1000000, storage_cost: 5829200, storage_rebate: 2181200, non_refundable_storage_fee: 0
gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 5829200, storage_rebate: 2181200, non_refundable_storage_fee: 0

task 4, line 44:
//# view-object 2,0
Expand All @@ -38,4 +38,4 @@ task 5, line 46:
created: object(5,0)
mutated: object(0,0)
wrapped: object(2,0)
gas summary: computation_cost: 1000000, storage_cost: 2424400, storage_rebate: 2181200, non_refundable_storage_fee: 0
gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2424400, storage_rebate: 2181200, non_refundable_storage_fee: 0
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@ task 1, lines 10-32:
//# publish
created: object(1,0)
mutated: object(0,2)
gas summary: computation_cost: 1000000, storage_cost: 6095200, storage_rebate: 0, non_refundable_storage_fee: 0
gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 6095200, storage_rebate: 0, non_refundable_storage_fee: 0

task 2, line 34:
//# run test::m::test_wrap --sender A
created: object(2,0), object(2,1), object(2,2)
mutated: object(0,0)
gas summary: computation_cost: 1000000, storage_cost: 6072400, storage_rebate: 0, non_refundable_storage_fee: 0
gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 6072400, storage_rebate: 0, non_refundable_storage_fee: 0
Original file line number Diff line number Diff line change
Expand Up @@ -7,19 +7,19 @@ task 1, lines 10-33:
//# publish
created: object(1,0)
mutated: object(0,2)
gas summary: computation_cost: 1000000, storage_cost: 6019200, storage_rebate: 0, non_refundable_storage_fee: 0
gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 6019200, storage_rebate: 0, non_refundable_storage_fee: 0

task 2, line 35:
//# run test::m::mint --sender A
created: object(2,0)
mutated: object(0,0)
gas summary: computation_cost: 1000000, storage_cost: 2181200, storage_rebate: 0, non_refundable_storage_fee: 0
gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2181200, storage_rebate: 0, non_refundable_storage_fee: 0

task 3, line 37:
//# run test::m::add --sender A --args object(2,0) 0
created: object(3,0), object(3,1)
mutated: object(0,0), object(2,0)
gas summary: computation_cost: 1000000, storage_cost: 5829200, storage_rebate: 2181200, non_refundable_storage_fee: 0
gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 5829200, storage_rebate: 2181200, non_refundable_storage_fee: 0

task 4, line 39:
//# view-object 2,0
Expand All @@ -37,4 +37,4 @@ task 5, line 41:
//# run test::m::delete --sender A --args object(2,0)
mutated: object(0,0)
deleted: object(2,0)
gas summary: computation_cost: 1000000, storage_cost: 980400, storage_rebate: 2181200, non_refundable_storage_fee: 0
gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 980400, storage_rebate: 2181200, non_refundable_storage_fee: 0
Original file line number Diff line number Diff line change
Expand Up @@ -7,19 +7,19 @@ task 1, lines 10-58:
//# publish
created: object(1,0)
mutated: object(0,2)
gas summary: computation_cost: 1000000, storage_cost: 7980000, storage_rebate: 0, non_refundable_storage_fee: 0
gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 7980000, storage_rebate: 0, non_refundable_storage_fee: 0

task 2, line 59:
//# run test::m::mint --sender A
created: object(2,0)
mutated: object(0,0)
gas summary: computation_cost: 1000000, storage_cost: 2181200, storage_rebate: 0, non_refundable_storage_fee: 0
gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2181200, storage_rebate: 0, non_refundable_storage_fee: 0

task 3, line 61:
//# run test::m::add --sender A --args object(2,0) 0
created: object(3,0), object(3,1)
mutated: object(0,0), object(2,0)
gas summary: computation_cost: 1000000, storage_cost: 5829200, storage_rebate: 2181200, non_refundable_storage_fee: 0
gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 5829200, storage_rebate: 2181200, non_refundable_storage_fee: 0

task 4, line 63:
//# view-object 2,0
Expand All @@ -37,10 +37,10 @@ task 5, line 65:
//# run test::m::remove --sender A --args object(2,0) 0
mutated: object(0,0), object(2,0)
deleted: object(3,0), object(3,1)
gas summary: computation_cost: 1000000, storage_cost: 2181200, storage_rebate: 5829200, non_refundable_storage_fee: 0
gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2181200, storage_rebate: 5829200, non_refundable_storage_fee: 0

task 6, line 67:
//# run test::m::delete --sender A --args object(2,0)
mutated: object(0,0)
deleted: object(2,0)
gas summary: computation_cost: 1000000, storage_cost: 980400, storage_rebate: 2181200, non_refundable_storage_fee: 0
gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 980400, storage_rebate: 2181200, non_refundable_storage_fee: 0
Original file line number Diff line number Diff line change
Expand Up @@ -7,19 +7,19 @@ task 1, lines 11-70:
//# publish
created: object(1,0)
mutated: object(0,2)
gas summary: computation_cost: 1000000, storage_cost: 8375200, storage_rebate: 0, non_refundable_storage_fee: 0
gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 8375200, storage_rebate: 0, non_refundable_storage_fee: 0

task 2, line 72:
//# run test::m::mint --sender A
created: object(2,0)
mutated: object(0,0)
gas summary: computation_cost: 1000000, storage_cost: 2181200, storage_rebate: 0, non_refundable_storage_fee: 0
gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2181200, storage_rebate: 0, non_refundable_storage_fee: 0

task 3, line 74:
//# run test::m::add --sender A --args object(2,0) 0
created: object(3,0), object(3,1)
mutated: object(0,0), object(2,0)
gas summary: computation_cost: 1000000, storage_cost: 5829200, storage_rebate: 2181200, non_refundable_storage_fee: 0
gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 5829200, storage_rebate: 2181200, non_refundable_storage_fee: 0

task 4, line 76:
//# view-object 2,0
Expand All @@ -37,4 +37,4 @@ task 5, line 78:
//# run test::m::remove_and_delete --sender A --args object(2,0) 0
mutated: object(0,0)
deleted: object(2,0), object(3,0), object(3,1)
gas summary: computation_cost: 1000000, storage_cost: 980400, storage_rebate: 5829200, non_refundable_storage_fee: 0
gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 980400, storage_rebate: 5829200, non_refundable_storage_fee: 0
Original file line number Diff line number Diff line change
Expand Up @@ -7,19 +7,19 @@ task 1, lines 10-62:
//# publish
created: object(1,0)
mutated: object(0,2)
gas summary: computation_cost: 1000000, storage_cost: 8451200, storage_rebate: 0, non_refundable_storage_fee: 0
gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 8451200, storage_rebate: 0, non_refundable_storage_fee: 0

task 2, line 64:
//# run test::m::mint --sender A
created: object(2,0)
mutated: object(0,0)
gas summary: computation_cost: 1000000, storage_cost: 2181200, storage_rebate: 0, non_refundable_storage_fee: 0
gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2181200, storage_rebate: 0, non_refundable_storage_fee: 0

task 3, line 66:
//# run test::m::add --sender A --args object(2,0) 0
created: object(3,0), object(3,1)
mutated: object(0,0), object(2,0)
gas summary: computation_cost: 1000000, storage_cost: 5829200, storage_rebate: 2181200, non_refundable_storage_fee: 0
gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 5829200, storage_rebate: 2181200, non_refundable_storage_fee: 0

task 4, line 68:
//# view-object 2,0
Expand All @@ -36,4 +36,4 @@ Contents: test::m::S {
task 5, line 70:
//# run test::m::freeze_object --sender A --args object(2,0)
mutated: object(0,0), object(2,0)
gas summary: computation_cost: 1000000, storage_cost: 2181200, storage_rebate: 2181200, non_refundable_storage_fee: 0
gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2181200, storage_rebate: 2181200, non_refundable_storage_fee: 0
Original file line number Diff line number Diff line change
Expand Up @@ -7,19 +7,19 @@ task 1, lines 10-62:
//# publish
created: object(1,0)
mutated: object(0,2)
gas summary: computation_cost: 1000000, storage_cost: 8451200, storage_rebate: 0, non_refundable_storage_fee: 0
gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 8451200, storage_rebate: 0, non_refundable_storage_fee: 0

task 2, line 64:
//# run test::m::mint --sender A
created: object(2,0)
mutated: object(0,0)
gas summary: computation_cost: 1000000, storage_cost: 2181200, storage_rebate: 0, non_refundable_storage_fee: 0
gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2181200, storage_rebate: 0, non_refundable_storage_fee: 0

task 3, line 66:
//# run test::m::add --sender A --args object(2,0) 0
created: object(3,0), object(3,1)
mutated: object(0,0), object(2,0)
gas summary: computation_cost: 1000000, storage_cost: 5829200, storage_rebate: 2181200, non_refundable_storage_fee: 0
gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 5829200, storage_rebate: 2181200, non_refundable_storage_fee: 0

task 4, line 68:
//# view-object 2,0
Expand All @@ -37,9 +37,9 @@ task 5, line 70:
//# run test::m::remove --sender A --args object(2,0) 0
mutated: object(0,0), object(2,0)
deleted: object(3,0), object(3,1)
gas summary: computation_cost: 1000000, storage_cost: 2181200, storage_rebate: 5829200, non_refundable_storage_fee: 0
gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2181200, storage_rebate: 5829200, non_refundable_storage_fee: 0

task 6, line 72:
//# run test::m::freeze_object --sender A --args object(2,0)
mutated: object(0,0), object(2,0)
gas summary: computation_cost: 1000000, storage_cost: 2181200, storage_rebate: 2181200, non_refundable_storage_fee: 0
gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2181200, storage_rebate: 2181200, non_refundable_storage_fee: 0
Original file line number Diff line number Diff line change
Expand Up @@ -7,19 +7,19 @@ task 1, lines 11-65:
//# publish
created: object(1,0)
mutated: object(0,2)
gas summary: computation_cost: 1000000, storage_cost: 8603200, storage_rebate: 0, non_refundable_storage_fee: 0
gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 8603200, storage_rebate: 0, non_refundable_storage_fee: 0

task 2, line 67:
//# run test::m::mint --sender A
created: object(2,0)
mutated: object(0,0)
gas summary: computation_cost: 1000000, storage_cost: 2181200, storage_rebate: 0, non_refundable_storage_fee: 0
gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2181200, storage_rebate: 0, non_refundable_storage_fee: 0

task 3, line 69:
//# run test::m::add --sender A --args object(2,0) 0
created: object(3,0), object(3,1)
mutated: object(0,0), object(2,0)
gas summary: computation_cost: 1000000, storage_cost: 5829200, storage_rebate: 2181200, non_refundable_storage_fee: 0
gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 5829200, storage_rebate: 2181200, non_refundable_storage_fee: 0

task 4, line 71:
//# view-object 2,0
Expand All @@ -37,4 +37,4 @@ task 5, line 73:
//# run test::m::remove_and_freeze --sender A --args object(2,0) 0
mutated: object(0,0), object(2,0)
deleted: object(3,0), object(3,1)
gas summary: computation_cost: 1000000, storage_cost: 2181200, storage_rebate: 5829200, non_refundable_storage_fee: 0
gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2181200, storage_rebate: 5829200, non_refundable_storage_fee: 0
Loading
Loading