Skip to content

Commit

Permalink
binary codec update
Browse files Browse the repository at this point in the history
  • Loading branch information
achowdhry-ripple committed Nov 15, 2024
1 parent 039a882 commit 76292d6
Showing 1 changed file with 86 additions and 1 deletion.
87 changes: 86 additions & 1 deletion packages/ripple-binary-codec/src/enums/definitions.json
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,7 @@
"AMM": 121,
"DID": 73,
"Oracle": 128,
"Credential": 129,
"Any": -3,
"Child": -2,
"Nickname": 110,
Expand Down Expand Up @@ -1070,6 +1071,26 @@
"type": "UInt64"
}
],
[
"IssuerNode",
{
"nth": 27,
"isVLEncoded": false,
"isSerialized": true,
"isSigningField": true,
"type": "UInt64"
}
],
[
"SubjectNode",
{
"nth": 28,
"isVLEncoded": false,
"isSerialized": true,
"isSigningField": true,
"type": "UInt64"
}
],
[
"EmailHash",
{
Expand Down Expand Up @@ -1980,6 +2001,16 @@
"type": "Blob"
}
],
[
"CredentialType",
{
"nth": 31,
"isVLEncoded": true,
"isSerialized": true,
"isSigningField": true,
"type": "Blob"
}
],
[
"Account",
{
Expand Down Expand Up @@ -2140,6 +2171,16 @@
"type": "AccountID"
}
],
[
"Subject",
{
"nth": 24,
"isVLEncoded": true,
"isSerialized": true,
"isSigningField": true,
"type": "AccountID"
}
],
[
"Indexes",
{
Expand Down Expand Up @@ -2180,6 +2221,16 @@
"type": "Vector256"
}
],
[
"CredentialIDs",
{
"nth": 5,
"isVLEncoded": true,
"isSerialized": true,
"isSigningField": true,
"type": "Vector256"
}
],
[
"Paths",
{
Expand Down Expand Up @@ -2550,6 +2601,16 @@
"type": "STObject"
}
],
[
"Credential",
{
"nth": 33,
"isVLEncoded": false,
"isSerialized": true,
"isSigningField": true,
"type": "STObject"
}
],
[
"Signers",
{
Expand Down Expand Up @@ -2739,6 +2800,26 @@
"isSigningField": true,
"type": "STArray"
}
],
[
"AuthorizeCredentials",
{
"nth": 26,
"isVLEncoded": false,
"isSerialized": true,
"isSigningField": true,
"type": "STArray"
}
],
[
"UnauthorizeCredentials",
{
"nth": 27,
"isVLEncoded": false,
"isSerialized": true,
"isSigningField": true,
"type": "STArray"
}
]
],
"TRANSACTION_RESULTS": {
Expand Down Expand Up @@ -2923,7 +3004,8 @@
"tecINVALID_UPDATE_TIME": 188,
"tecTOKEN_PAIR_NOT_FOUND": 189,
"tecARRAY_EMPTY": 190,
"tecARRAY_TOO_LARGE": 191
"tecARRAY_TOO_LARGE": 191,
"tecBAD_CREDENTIALS": 193
},
"TRANSACTION_TYPES": {
"Invalid": -1,
Expand Down Expand Up @@ -2974,6 +3056,9 @@
"DIDDelete": 50,
"OracleSet": 51,
"OracleDelete": 52,
"CredentialCreate": 58,
"CredentialAccept": 59,
"CredentialDelete": 60,
"EnableAmendment": 100,
"SetFee": 101,
"UNLModify": 102
Expand Down

0 comments on commit 76292d6

Please sign in to comment.