Skip to content

Commit

Permalink
[gas] introduce new mechanism to charge storage fees based on fixed A…
Browse files Browse the repository at this point in the history
…PT prices & per-category gas/fee limits (#6683)
  • Loading branch information
vgao1996 authored Feb 24, 2023
1 parent d5d348b commit 0a2aba9
Show file tree
Hide file tree
Showing 38 changed files with 559 additions and 172 deletions.
76 changes: 38 additions & 38 deletions Cargo.lock

Large diffs are not rendered by default.

56 changes: 28 additions & 28 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -486,34 +486,34 @@ x25519-dalek = "1.2.0"

# Note: the BEGIN and END comments below are required for external tooling. Do not remove.
# BEGIN MOVE DEPENDENCIES
move-abigen = { git = "https://github.com/move-language/move", rev = "bd25b900ccb4da6d1ece214595cb992e5be7c471" }
move-binary-format = { git = "https://github.com/move-language/move", rev = "bd25b900ccb4da6d1ece214595cb992e5be7c471" }
move-bytecode-verifier = { git = "https://github.com/move-language/move", rev = "bd25b900ccb4da6d1ece214595cb992e5be7c471" }
move-bytecode-utils = { git = "https://github.com/move-language/move", rev = "bd25b900ccb4da6d1ece214595cb992e5be7c471" }
move-cli = { git = "https://github.com/move-language/move", rev = "bd25b900ccb4da6d1ece214595cb992e5be7c471" }
move-command-line-common = { git = "https://github.com/move-language/move", rev = "bd25b900ccb4da6d1ece214595cb992e5be7c471" }
move-compiler ={ git = "https://github.com/move-language/move", rev = "bd25b900ccb4da6d1ece214595cb992e5be7c471" }
move-core-types = { git = "https://github.com/move-language/move", rev = "bd25b900ccb4da6d1ece214595cb992e5be7c471", features = ["address32"] }
move-docgen = { git = "https://github.com/move-language/move", rev = "bd25b900ccb4da6d1ece214595cb992e5be7c471" }
move-ir-compiler = { git = "https://github.com/move-language/move", rev = "bd25b900ccb4da6d1ece214595cb992e5be7c471" }
move-model = { git = "https://github.com/move-language/move", rev = "bd25b900ccb4da6d1ece214595cb992e5be7c471" }
move-package = { git = "https://github.com/move-language/move", rev = "bd25b900ccb4da6d1ece214595cb992e5be7c471" }
move-prover = { git = "https://github.com/move-language/move", rev = "bd25b900ccb4da6d1ece214595cb992e5be7c471" }
move-prover-boogie-backend = { git = "https://github.com/move-language/move", rev = "bd25b900ccb4da6d1ece214595cb992e5be7c471" }
move-stackless-bytecode = { git = "https://github.com/move-language/move", rev = "bd25b900ccb4da6d1ece214595cb992e5be7c471" }
move-prover-test-utils = { git = "https://github.com/move-language/move", rev = "bd25b900ccb4da6d1ece214595cb992e5be7c471" }
move-resource-viewer = { git = "https://github.com/move-language/move", rev = "bd25b900ccb4da6d1ece214595cb992e5be7c471" }
move-stackless-bytecode-interpreter = { git = "https://github.com/move-language/move", rev = "bd25b900ccb4da6d1ece214595cb992e5be7c471" }
move-stdlib = { git = "https://github.com/move-language/move", rev = "bd25b900ccb4da6d1ece214595cb992e5be7c471" }
move-symbol-pool = { git = "https://github.com/move-language/move", rev = "bd25b900ccb4da6d1ece214595cb992e5be7c471" }
move-table-extension = { git = "https://github.com/move-language/move", rev = "bd25b900ccb4da6d1ece214595cb992e5be7c471" }
move-transactional-test-runner = { git = "https://github.com/move-language/move", rev = "bd25b900ccb4da6d1ece214595cb992e5be7c471" }
move-unit-test = { git = "https://github.com/move-language/move", rev = "bd25b900ccb4da6d1ece214595cb992e5be7c471", features = ["table-extension"] }
move-vm-runtime = { git = "https://github.com/move-language/move", rev = "bd25b900ccb4da6d1ece214595cb992e5be7c471", features = ["lazy_natives"] }
move-vm-test-utils = { git = "https://github.com/move-language/move", rev = "bd25b900ccb4da6d1ece214595cb992e5be7c471", features = ["table-extension"] }
move-vm-types = { git = "https://github.com/move-language/move", rev = "bd25b900ccb4da6d1ece214595cb992e5be7c471" }
read-write-set = { git = "https://github.com/move-language/move", rev = "bd25b900ccb4da6d1ece214595cb992e5be7c471" }
read-write-set-dynamic = { git = "https://github.com/move-language/move", rev = "bd25b900ccb4da6d1ece214595cb992e5be7c471" }
move-abigen = { git = "https://github.com/move-language/move", rev = "5fcfb4e7030553b5c865a06a21d651ba010383ea" }
move-binary-format = { git = "https://github.com/move-language/move", rev = "5fcfb4e7030553b5c865a06a21d651ba010383ea" }
move-bytecode-verifier = { git = "https://github.com/move-language/move", rev = "5fcfb4e7030553b5c865a06a21d651ba010383ea" }
move-bytecode-utils = { git = "https://github.com/move-language/move", rev = "5fcfb4e7030553b5c865a06a21d651ba010383ea" }
move-cli = { git = "https://github.com/move-language/move", rev = "5fcfb4e7030553b5c865a06a21d651ba010383ea" }
move-command-line-common = { git = "https://github.com/move-language/move", rev = "5fcfb4e7030553b5c865a06a21d651ba010383ea" }
move-compiler ={ git = "https://github.com/move-language/move", rev = "5fcfb4e7030553b5c865a06a21d651ba010383ea" }
move-core-types = { git = "https://github.com/move-language/move", rev = "5fcfb4e7030553b5c865a06a21d651ba010383ea", features = ["address32"] }
move-docgen = { git = "https://github.com/move-language/move", rev = "5fcfb4e7030553b5c865a06a21d651ba010383ea" }
move-ir-compiler = { git = "https://github.com/move-language/move", rev = "5fcfb4e7030553b5c865a06a21d651ba010383ea" }
move-model = { git = "https://github.com/move-language/move", rev = "5fcfb4e7030553b5c865a06a21d651ba010383ea" }
move-package = { git = "https://github.com/move-language/move", rev = "5fcfb4e7030553b5c865a06a21d651ba010383ea" }
move-prover = { git = "https://github.com/move-language/move", rev = "5fcfb4e7030553b5c865a06a21d651ba010383ea" }
move-prover-boogie-backend = { git = "https://github.com/move-language/move", rev = "5fcfb4e7030553b5c865a06a21d651ba010383ea" }
move-stackless-bytecode = { git = "https://github.com/move-language/move", rev = "5fcfb4e7030553b5c865a06a21d651ba010383ea" }
move-prover-test-utils = { git = "https://github.com/move-language/move", rev = "5fcfb4e7030553b5c865a06a21d651ba010383ea" }
move-resource-viewer = { git = "https://github.com/move-language/move", rev = "5fcfb4e7030553b5c865a06a21d651ba010383ea" }
move-stackless-bytecode-interpreter = { git = "https://github.com/move-language/move", rev = "5fcfb4e7030553b5c865a06a21d651ba010383ea" }
move-stdlib = { git = "https://github.com/move-language/move", rev = "5fcfb4e7030553b5c865a06a21d651ba010383ea" }
move-symbol-pool = { git = "https://github.com/move-language/move", rev = "5fcfb4e7030553b5c865a06a21d651ba010383ea" }
move-table-extension = { git = "https://github.com/move-language/move", rev = "5fcfb4e7030553b5c865a06a21d651ba010383ea" }
move-transactional-test-runner = { git = "https://github.com/move-language/move", rev = "5fcfb4e7030553b5c865a06a21d651ba010383ea" }
move-unit-test = { git = "https://github.com/move-language/move", rev = "5fcfb4e7030553b5c865a06a21d651ba010383ea", features = ["table-extension"] }
move-vm-runtime = { git = "https://github.com/move-language/move", rev = "5fcfb4e7030553b5c865a06a21d651ba010383ea", features = ["lazy_natives"] }
move-vm-test-utils = { git = "https://github.com/move-language/move", rev = "5fcfb4e7030553b5c865a06a21d651ba010383ea", features = ["table-extension"] }
move-vm-types = { git = "https://github.com/move-language/move", rev = "5fcfb4e7030553b5c865a06a21d651ba010383ea" }
read-write-set = { git = "https://github.com/move-language/move", rev = "5fcfb4e7030553b5c865a06a21d651ba010383ea" }
read-write-set-dynamic = { git = "https://github.com/move-language/move", rev = "5fcfb4e7030553b5c865a06a21d651ba010383ea" }
# END MOVE DEPENDENCIES

[profile.release]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@
"state_change_hash": "",
"event_root_hash": "",
"state_checkpoint_hash": null,
"gas_used": "1536",
"gas_used": "1516",
"success": true,
"vm_status": "Executed successfully",
"accumulator_root_hash": "",
Expand Down Expand Up @@ -236,7 +236,7 @@
],
"sender": "0xa550c18",
"sequence_number": "0",
"max_gas_amount": "1000000",
"max_gas_amount": "100000000",
"gas_unit_price": "0",
"expiration_timestamp_secs": "18446744073709551615",
"payload": {
Expand All @@ -249,7 +249,7 @@
},
"signature": {
"public_key": "0x14418f867a0bd6d42abb2daa50cd68a5a869ce208282481f57504f630510d0d3",
"signature": "0x066c59a294193ab4fcde6fc80aab99b95422881f2f82cbcab5d67e06816fbd1d70890c4f4098aff38cf3317a249313a73b9db410ccaa73915beb4e99617fd208",
"signature": "0x95915d42cd822b6195581e9be3c164b70afeb9228ebb68c2e3f14240e3f43a164caabae8096163c6a341fc3830b36618b4619b7d5f2edcd603690e91a62fdb05",
"type": "ed25519_signature"
},
"events": [
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@
"state_change_hash": "",
"event_root_hash": "",
"state_checkpoint_hash": null,
"gas_used": "1536",
"gas_used": "1516",
"success": true,
"vm_status": "Executed successfully",
"accumulator_root_hash": "",
Expand Down Expand Up @@ -241,7 +241,7 @@
],
"sender": "0xa550c18",
"sequence_number": "12",
"max_gas_amount": "1000000",
"max_gas_amount": "100000000",
"gas_unit_price": "0",
"expiration_timestamp_secs": "18446744073709551615",
"payload": {
Expand All @@ -254,7 +254,7 @@
},
"signature": {
"public_key": "0x14418f867a0bd6d42abb2daa50cd68a5a869ce208282481f57504f630510d0d3",
"signature": "0x6cfe245ec2ce64bb2ebed2f6366ac7e50f8e95da94cd5dad458e3969f288d9525ea4c1312c8d3e086abda14357d65142a771b6ac9ec47246f0e2fa024c90180e",
"signature": "0xb30ffdbedfdee10b517ea68e45f0b1818bee51711e67be37f781873e42880e7676f340dc5f4efb3251a04b4579223102781f62613f6195b912ff0e86ee4fae04",
"type": "ed25519_signature"
},
"events": [
Expand Down Expand Up @@ -397,7 +397,7 @@
"state_change_hash": "",
"event_root_hash": "",
"state_checkpoint_hash": null,
"gas_used": "1536",
"gas_used": "1516",
"success": true,
"vm_status": "Executed successfully",
"accumulator_root_hash": "",
Expand Down Expand Up @@ -519,7 +519,7 @@
],
"sender": "0xa550c18",
"sequence_number": "13",
"max_gas_amount": "1000000",
"max_gas_amount": "100000000",
"gas_unit_price": "0",
"expiration_timestamp_secs": "18446744073709551615",
"payload": {
Expand All @@ -532,7 +532,7 @@
},
"signature": {
"public_key": "0x14418f867a0bd6d42abb2daa50cd68a5a869ce208282481f57504f630510d0d3",
"signature": "0x8fa482fe30aabf5200d8891a5f037dc91e0f84a44c843ae7cdc7937f6e96d69a44c043412e7008a48a006bebfbeb8a1a35f8ded6b8351b52aa38bb34bbc0b00e",
"signature": "0x8586d3ba1d54c630418b039a45414e672f5c24345d902ecce6972e461c4f668018916956d25214202958cf708152d35319522396626d2badecc22a7613861b0c",
"type": "ed25519_signature"
},
"events": [
Expand Down Expand Up @@ -675,7 +675,7 @@
"state_change_hash": "",
"event_root_hash": "",
"state_checkpoint_hash": null,
"gas_used": "1536",
"gas_used": "1516",
"success": true,
"vm_status": "Executed successfully",
"accumulator_root_hash": "",
Expand Down Expand Up @@ -797,7 +797,7 @@
],
"sender": "0xa550c18",
"sequence_number": "14",
"max_gas_amount": "1000000",
"max_gas_amount": "100000000",
"gas_unit_price": "0",
"expiration_timestamp_secs": "18446744073709551615",
"payload": {
Expand All @@ -810,7 +810,7 @@
},
"signature": {
"public_key": "0x14418f867a0bd6d42abb2daa50cd68a5a869ce208282481f57504f630510d0d3",
"signature": "0x3094b54716c4cf7900ca976dc1582271471591df907366622a39fc62d17b87c02fa88b2f5454615ce3b019310477fbeee5ba808d8465c3f318ffa5786f65dc09",
"signature": "0xf50c815eeb949b00002a33446a1b7247967a3957f928555b4cfae68022e5a1c76b0f7be98458300c98b5268d1df86e5b80d49ab7cbdb1207617427f580d1f405",
"type": "ed25519_signature"
},
"events": [
Expand Down Expand Up @@ -953,7 +953,7 @@
"state_change_hash": "",
"event_root_hash": "",
"state_checkpoint_hash": null,
"gas_used": "1536",
"gas_used": "1516",
"success": true,
"vm_status": "Executed successfully",
"accumulator_root_hash": "",
Expand Down Expand Up @@ -1075,7 +1075,7 @@
],
"sender": "0xa550c18",
"sequence_number": "15",
"max_gas_amount": "1000000",
"max_gas_amount": "100000000",
"gas_unit_price": "0",
"expiration_timestamp_secs": "18446744073709551615",
"payload": {
Expand All @@ -1088,7 +1088,7 @@
},
"signature": {
"public_key": "0x14418f867a0bd6d42abb2daa50cd68a5a869ce208282481f57504f630510d0d3",
"signature": "0xd26e938d26da477f656d9edda518892cbeede12e8ad3da1ccb5fe889be047c2584f578cac231df5184a68f405f3f12cd0db41c77cf6e5d42a9e0a11bca59b500",
"signature": "0xbb3b9d47694bcd53e6ede0450d9f601703cd4a1a5fc6481f93ed866e398d895f97903d0f61a9c84d20e7f3d0ea84d2974694f3441f936474014bc050dbc69506",
"type": "ed25519_signature"
},
"events": [
Expand Down Expand Up @@ -1231,7 +1231,7 @@
"state_change_hash": "",
"event_root_hash": "",
"state_checkpoint_hash": null,
"gas_used": "1536",
"gas_used": "1516",
"success": true,
"vm_status": "Executed successfully",
"accumulator_root_hash": "",
Expand Down Expand Up @@ -1353,7 +1353,7 @@
],
"sender": "0xa550c18",
"sequence_number": "16",
"max_gas_amount": "1000000",
"max_gas_amount": "100000000",
"gas_unit_price": "0",
"expiration_timestamp_secs": "18446744073709551615",
"payload": {
Expand All @@ -1366,7 +1366,7 @@
},
"signature": {
"public_key": "0x14418f867a0bd6d42abb2daa50cd68a5a869ce208282481f57504f630510d0d3",
"signature": "0x3da636b94ee39d41c3bd26f60a05cfc7210ba2be448c3d0aa2f23ca5301ebc9f63e190a97bcdf1558824005c738627919a19a24ab0f9a5edb48a1052b697d708",
"signature": "0xe68c4ac0f33d1fb117a69706fb8c50a5422e83b5b1807431f0b8773f4c3fe9c33182f8cdc8baca1a11a64eafd40bbcaa42ee49c7043cb3d8860bdb3338ee790a",
"type": "ed25519_signature"
},
"events": [
Expand Down Expand Up @@ -1509,7 +1509,7 @@
"state_change_hash": "",
"event_root_hash": "",
"state_checkpoint_hash": null,
"gas_used": "1536",
"gas_used": "1516",
"success": true,
"vm_status": "Executed successfully",
"accumulator_root_hash": "",
Expand Down Expand Up @@ -1631,7 +1631,7 @@
],
"sender": "0xa550c18",
"sequence_number": "17",
"max_gas_amount": "1000000",
"max_gas_amount": "100000000",
"gas_unit_price": "0",
"expiration_timestamp_secs": "18446744073709551615",
"payload": {
Expand All @@ -1644,7 +1644,7 @@
},
"signature": {
"public_key": "0x14418f867a0bd6d42abb2daa50cd68a5a869ce208282481f57504f630510d0d3",
"signature": "0x18fb3b0dfcbef70fb66cb6d8fc6f6b73fb5c2f8643892f59dfd07ea47fc7c3d472c3f6b1eaacd0d3935e29532732621bf6873abb4e5ff608622922b032d9a606",
"signature": "0x008d33c2cb967f335b0487d09ed2fee498e87b106072027cd01233e8a35a9c74dbe27251e244b64904a6e2f00b9deefb9dcc0dd890313c834f2a6437baf49a03",
"type": "ed25519_signature"
},
"events": [
Expand Down Expand Up @@ -1787,7 +1787,7 @@
"state_change_hash": "",
"event_root_hash": "",
"state_checkpoint_hash": null,
"gas_used": "1536",
"gas_used": "1516",
"success": true,
"vm_status": "Executed successfully",
"accumulator_root_hash": "",
Expand Down Expand Up @@ -1909,7 +1909,7 @@
],
"sender": "0xa550c18",
"sequence_number": "18",
"max_gas_amount": "1000000",
"max_gas_amount": "100000000",
"gas_unit_price": "0",
"expiration_timestamp_secs": "18446744073709551615",
"payload": {
Expand All @@ -1922,7 +1922,7 @@
},
"signature": {
"public_key": "0x14418f867a0bd6d42abb2daa50cd68a5a869ce208282481f57504f630510d0d3",
"signature": "0xca705ca68bb833c25d4a13ee1de8ef4bf8895fb2be5cab8846f310880b3f022d87a4b721d64323225ebc817028c167810b1bd5b0f1c61d66104bcc1fff003a0e",
"signature": "0xcfd0d47f1932e231f48ef37538494b0360bee0c3ada183b1bc6f3e1e88c5d20ddb9c569a62a857efde687d908e32490f652676e1e3c87e035378bbb5ffe34e09",
"type": "ed25519_signature"
},
"events": [
Expand Down Expand Up @@ -2065,7 +2065,7 @@
"state_change_hash": "",
"event_root_hash": "",
"state_checkpoint_hash": null,
"gas_used": "1536",
"gas_used": "1516",
"success": true,
"vm_status": "Executed successfully",
"accumulator_root_hash": "",
Expand Down Expand Up @@ -2187,7 +2187,7 @@
],
"sender": "0xa550c18",
"sequence_number": "19",
"max_gas_amount": "1000000",
"max_gas_amount": "100000000",
"gas_unit_price": "0",
"expiration_timestamp_secs": "18446744073709551615",
"payload": {
Expand All @@ -2200,7 +2200,7 @@
},
"signature": {
"public_key": "0x14418f867a0bd6d42abb2daa50cd68a5a869ce208282481f57504f630510d0d3",
"signature": "0x4db4a6430260cce5ea5c708393e71b25805db3e7eff251ecb7f986fcf4c4d66c04abfff78a2edb200ecebc0ea4b0bcc1484f5fef834d838b2f13784189a08004",
"signature": "0xc531868a2a5691f5abe36a969e7657581fee8c99688627fffe26093aea423801c8a72178c47bc9f6ab2b7bd49a5fccbcb3c8d058d59bcf315b4197b5a52d3306",
"type": "ed25519_signature"
},
"events": [
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@
],
"sender": "0x34bf7e2d17674feb234371a7ea58efd715f0e56ba20ebf13789480d9d643afaf",
"sequence_number": "0",
"max_gas_amount": "1000000",
"max_gas_amount": "100000000",
"gas_unit_price": "0",
"expiration_timestamp_secs": "18446744073709551615",
"payload": {
Expand All @@ -69,7 +69,7 @@
},
"signature": {
"public_key": "0xd5a781494d2bf1a174ddffde1e02cb8881cff6dab70e61cbdef393deac0ce639",
"signature": "0x926363e32e791eaffce0f232429ccd39f2c15e4cb58103a23aa798d374eda9ae7fe21a81ddd0a4c8438584c80ef7b5e033051f6bd86cfc5f2807e40f9156f509",
"signature": "0x72e5b26a971d06d000f7e4a805b46623428d610f66d8425baa81e60522da00ab5c8e874377b2619dae1ddbf9141f41f71a97aed927b8eee2e6683e6b19e4ae00",
"type": "ed25519_signature"
},
"events": [],
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@
],
"sender": "0xa550c18",
"sequence_number": "0",
"max_gas_amount": "1000000",
"max_gas_amount": "100000000",
"gas_unit_price": "0",
"expiration_timestamp_secs": "18446744073709551615",
"payload": {
Expand All @@ -69,7 +69,7 @@
},
"signature": {
"public_key": "0x14418f867a0bd6d42abb2daa50cd68a5a869ce208282481f57504f630510d0d3",
"signature": "0xd6723f1204e18e159e76aa4555bb85c778b5242ef4ba187448e26bc1038404dabb0227616d67aa068c5f0319f5a810b0424719f591756246e4cd1ebea8144906",
"signature": "0xf2193dc55d63b63b5e45cee43d38e5a77dc127fc57f4bea7aff6ee09806332850eaa321f2fb7cf6662568c9dd65654642a240b3272d9ad06b2700cb2ff246004",
"type": "ed25519_signature"
},
"events": [],
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@
],
"sender": "0xa550c18",
"sequence_number": "0",
"max_gas_amount": "1000000",
"max_gas_amount": "100000000",
"gas_unit_price": "0",
"expiration_timestamp_secs": "18446744073709551615",
"payload": {
Expand All @@ -69,7 +69,7 @@
},
"signature": {
"public_key": "0x14418f867a0bd6d42abb2daa50cd68a5a869ce208282481f57504f630510d0d3",
"signature": "0x2fc339b9747ffe6c758739675f8a544a86f88f9f5bea1ca51f58102199618206c9b522ce833c94d3168b17e03882abc3336a7e971a25533a3c19a090553ec60b",
"signature": "0x20e1f74f12aa955275a9d1a63190065d77e1903cc53b0116b704b3ace98fd7a57d303738799840523688cdaaad74ee0c73b6bee53517e4dcd6e7589296711108",
"type": "ed25519_signature"
},
"events": [],
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@
],
"sender": "0xa550c18",
"sequence_number": "0",
"max_gas_amount": "1000000",
"max_gas_amount": "100000000",
"gas_unit_price": "0",
"expiration_timestamp_secs": "18446744073709551615",
"payload": {
Expand All @@ -69,7 +69,7 @@
},
"signature": {
"public_key": "0x14418f867a0bd6d42abb2daa50cd68a5a869ce208282481f57504f630510d0d3",
"signature": "0x2f19553764e64df8131ec63aaa1638de779287cf4e32e657593b23caa0e8e12744a8d0633329c931aaf5790204d1d2b921ee46d78c61f48f8a5b2bd36c5b6203",
"signature": "0xb194e9398f2af5e20642ff606d0f456b449333966533965b55551498551058dff8c23f9b92033e6536c5b37e9b41d8ce2619dfd5d9c05cd9159849172bc77e09",
"type": "ed25519_signature"
},
"events": [],
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@
],
"sender": "0xa550c18",
"sequence_number": "0",
"max_gas_amount": "1000000",
"max_gas_amount": "100000000",
"gas_unit_price": "0",
"expiration_timestamp_secs": "18446744073709551615",
"payload": {
Expand All @@ -69,7 +69,7 @@
},
"signature": {
"public_key": "0x14418f867a0bd6d42abb2daa50cd68a5a869ce208282481f57504f630510d0d3",
"signature": "0x8cb329fa0625c715699f157ec91aff0ecce120ba62b9c16fcabbbc6d8d95fc7ca51c11ccefca3f20e1923eccb7062884007171a2f41220793ebc3c64ab7af40c",
"signature": "0xd6b761a82e7f6d3e79a7e27873ef1c07ba8c1a0abbd577f1829b164c9be1844672da3ed41880815ce00068d0f7dccf685b97ff4dc12bbb5548f4cd91d1354c0b",
"type": "ed25519_signature"
},
"events": [],
Expand Down
Loading

0 comments on commit 0a2aba9

Please sign in to comment.