@zilliqa-js/proto
Advanced tools
Comparing version 0.4.0 to 0.4.1
@@ -104,27 +104,27 @@ import * as $protobuf from "protobufjs"; | ||
/** ProtoTransactionCoreInfo version */ | ||
version: number; | ||
version?: (number|null); | ||
/** ProtoTransactionCoreInfo nonce */ | ||
nonce: (number|Long); | ||
nonce?: (number|Long|null); | ||
/** ProtoTransactionCoreInfo toaddr */ | ||
toaddr: Uint8Array; | ||
toaddr?: (Uint8Array|null); | ||
/** ProtoTransactionCoreInfo senderpubkey */ | ||
senderpubkey: ZilliqaMessage.IByteArray; | ||
senderpubkey?: (ZilliqaMessage.IByteArray|null); | ||
/** ProtoTransactionCoreInfo amount */ | ||
amount: ZilliqaMessage.IByteArray; | ||
amount?: (ZilliqaMessage.IByteArray|null); | ||
/** ProtoTransactionCoreInfo gasprice */ | ||
gasprice: ZilliqaMessage.IByteArray; | ||
gasprice?: (ZilliqaMessage.IByteArray|null); | ||
/** ProtoTransactionCoreInfo gaslimit */ | ||
gaslimit: (number|Long); | ||
gaslimit?: (number|Long|null); | ||
/** ProtoTransactionCoreInfo code */ | ||
code: Uint8Array; | ||
code?: (Uint8Array|null); | ||
/** ProtoTransactionCoreInfo data */ | ||
data: Uint8Array; | ||
data?: (Uint8Array|null); | ||
} | ||
@@ -151,9 +151,9 @@ | ||
/** ProtoTransactionCoreInfo senderpubkey. */ | ||
public senderpubkey: ZilliqaMessage.IByteArray; | ||
public senderpubkey?: (ZilliqaMessage.IByteArray|null); | ||
/** ProtoTransactionCoreInfo amount. */ | ||
public amount: ZilliqaMessage.IByteArray; | ||
public amount?: (ZilliqaMessage.IByteArray|null); | ||
/** ProtoTransactionCoreInfo gasprice. */ | ||
public gasprice: ZilliqaMessage.IByteArray; | ||
public gasprice?: (ZilliqaMessage.IByteArray|null); | ||
@@ -244,9 +244,9 @@ /** ProtoTransactionCoreInfo gaslimit. */ | ||
/** ProtoTransaction tranid */ | ||
tranid: Uint8Array; | ||
tranid?: (Uint8Array|null); | ||
/** ProtoTransaction info */ | ||
info: ZilliqaMessage.IProtoTransactionCoreInfo; | ||
info?: (ZilliqaMessage.IProtoTransactionCoreInfo|null); | ||
/** ProtoTransaction signature */ | ||
signature: ZilliqaMessage.IByteArray; | ||
signature?: (ZilliqaMessage.IByteArray|null); | ||
} | ||
@@ -267,6 +267,6 @@ | ||
/** ProtoTransaction info. */ | ||
public info: ZilliqaMessage.IProtoTransactionCoreInfo; | ||
public info?: (ZilliqaMessage.IProtoTransactionCoreInfo|null); | ||
/** ProtoTransaction signature. */ | ||
public signature: ZilliqaMessage.IByteArray; | ||
public signature?: (ZilliqaMessage.IByteArray|null); | ||
@@ -348,6 +348,6 @@ /** | ||
/** ProtoTransactionReceipt receipt */ | ||
receipt: Uint8Array; | ||
receipt?: (Uint8Array|null); | ||
/** ProtoTransactionReceipt cumgas */ | ||
cumgas: (number|Long); | ||
cumgas?: (number|Long|null); | ||
} | ||
@@ -445,6 +445,6 @@ | ||
/** ProtoTransactionWithReceipt transaction */ | ||
transaction: ZilliqaMessage.IProtoTransaction; | ||
transaction?: (ZilliqaMessage.IProtoTransaction|null); | ||
/** ProtoTransactionWithReceipt receipt */ | ||
receipt: ZilliqaMessage.IProtoTransactionReceipt; | ||
receipt?: (ZilliqaMessage.IProtoTransactionReceipt|null); | ||
} | ||
@@ -462,6 +462,6 @@ | ||
/** ProtoTransactionWithReceipt transaction. */ | ||
public transaction: ZilliqaMessage.IProtoTransaction; | ||
public transaction?: (ZilliqaMessage.IProtoTransaction|null); | ||
/** ProtoTransactionWithReceipt receipt. */ | ||
public receipt: ZilliqaMessage.IProtoTransactionReceipt; | ||
public receipt?: (ZilliqaMessage.IProtoTransactionReceipt|null); | ||
@@ -468,0 +468,0 @@ /** |
{ | ||
"name": "@zilliqa-js/proto", | ||
"version": "0.4.0", | ||
"version": "0.4.1", | ||
"description": "Protobuf dependencies for message serialization", | ||
@@ -26,3 +26,3 @@ "main": "dist/index.js", | ||
}, | ||
"gitHead": "932c378f22ff89a2fe701c8e83017a2b301be83c" | ||
"gitHead": "5ad08902a0f8ba364e4f1d9aa3cf7c2a9c65b1fb" | ||
} |
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
543454
1704