Skip to content

Commit cb164f7

Browse files
author
Arjan Zijderveld
committed
Merge remote-tracking branch 'origin/master'
2 parents 512ec72 + 438343d commit cb164f7

File tree

1 file changed

+71
-5
lines changed

1 file changed

+71
-5
lines changed

scalecodec/type_registry/default.json

+71-5
Original file line numberDiff line numberDiff line change
@@ -2380,12 +2380,16 @@
23802380
"type": "struct",
23812381
"type_mapping": [
23822382
[
2383-
"status",
2384-
"u8"
2383+
"flags",
2384+
"u32"
23852385
],
23862386
[
23872387
"data",
2388-
"Raw"
2388+
"Vec<u8>"
2389+
],
2390+
[
2391+
"gasConsumed",
2392+
"u64"
23892393
]
23902394
]
23912395
},
@@ -3119,7 +3123,7 @@
31193123
],
31203124
[
31213125
"reputation",
3122-
"u64"
3126+
"i32"
31233127
]
31243128
]
31253129
},
@@ -4108,6 +4112,68 @@
41084112
]
41094113
},
41104114
"PermissionLatest": "PermissionsV1",
4111-
"Approvals": "[bool; 4]"
4115+
"Approvals": "[bool; 4]",
4116+
"ContractExecResultSuccessTo255": {
4117+
"type": "struct",
4118+
"type_mapping": [
4119+
[
4120+
"status",
4121+
"u8"
4122+
],
4123+
[
4124+
"data",
4125+
"Raw"
4126+
]
4127+
]
4128+
},
4129+
"ContractExecResultTo255": {
4130+
"type": "enum",
4131+
"type_mapping": [
4132+
[
4133+
"Success",
4134+
"ContractExecResultSuccessTo255"
4135+
],
4136+
[
4137+
"Error",
4138+
"Null"
4139+
]
4140+
]
4141+
},
4142+
"AccountStatus": {
4143+
"type": "struct",
4144+
"type_mapping": [
4145+
[
4146+
"validity",
4147+
"AccountValidity"
4148+
],
4149+
[
4150+
"freeBalance",
4151+
"Balance"
4152+
],
4153+
[
4154+
"lockedBalance",
4155+
"Balance"
4156+
],
4157+
[
4158+
"signature",
4159+
"Vec<u8>"
4160+
],
4161+
[
4162+
"vat",
4163+
"Permill"
4164+
]
4165+
]
4166+
},
4167+
"AccountValidity": {
4168+
"type": "enum",
4169+
"value_list": [
4170+
"Invalid",
4171+
"Initiated",
4172+
"Pending",
4173+
"ValidLow",
4174+
"ValidHigh",
4175+
"Completed"
4176+
]
4177+
}
41124178
}
41134179
}

0 commit comments

Comments
 (0)