Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@keepkey/device-protocol

Package Overview
Dependencies
Maintainers
6
Versions
36
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@keepkey/device-protocol - npm Package Compare versions

Comparing version 7.13.1 to 7.13.2-alpha.0

6

lib/messages-mayachain_pb.d.ts

@@ -198,2 +198,7 @@ // package:

hasDenom(): boolean;
clearDenom(): void;
getDenom(): string | undefined;
setDenom(value: string): void;
serializeBinary(): Uint8Array;

@@ -215,2 +220,3 @@ toObject(includeInstance?: boolean): MayachainMsgSend.AsObject;

addressType?: types_pb.OutputAddressTypeMap[keyof types_pb.OutputAddressTypeMap],
denom?: string,
}

@@ -217,0 +223,0 @@ }

50

lib/messages-mayachain_pb.js

@@ -1478,3 +1478,4 @@ // source: messages-mayachain.proto

amount: (f = jspb.Message.getField(msg, 8)) == null ? undefined : f,
addressType: (f = jspb.Message.getField(msg, 9)) == null ? undefined : f
addressType: (f = jspb.Message.getField(msg, 9)) == null ? undefined : f,
denom: (f = jspb.Message.getField(msg, 11)) == null ? undefined : f
};

@@ -1532,2 +1533,6 @@

break;
case 11:
var value = /** @type {string} */ (reader.readString());
msg.setDenom(value);
break;
default:

@@ -1590,2 +1595,9 @@ reader.skipField();

}
f = /** @type {string} */ (jspb.Message.getField(message, 11));
if (f != null) {
writer.writeString(
11,
f
);
}
};

@@ -1738,5 +1750,41 @@

/**
* optional string denom = 11;
* @return {string}
*/
proto.MayachainMsgSend.prototype.getDenom = function() {
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 11, ""));
};
/**
* @param {string} value
* @return {!proto.MayachainMsgSend} returns this
*/
proto.MayachainMsgSend.prototype.setDenom = function(value) {
return jspb.Message.setField(this, 11, value);
};
/**
* Clears the field making it undefined.
* @return {!proto.MayachainMsgSend} returns this
*/
proto.MayachainMsgSend.prototype.clearDenom = function() {
return jspb.Message.setField(this, 11, undefined);
};
/**
* Returns whether this field is set.
* @return {boolean}
*/
proto.MayachainMsgSend.prototype.hasDenom = function() {
return jspb.Message.getField(this, 11) != null;
};
if (jspb.Message.GENERATE_TO_OBJECT) {

@@ -1743,0 +1791,0 @@ /**

2

package.json
{
"name": "@keepkey/device-protocol",
"version": "7.13.1",
"version": "7.13.2-alpha.0",
"publishConfig": {

@@ -5,0 +5,0 @@ "access": "public"

Sorry, the diff of this file is too big to display

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc