New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@masa-finance/masa-sdk

Package Overview
Dependencies
Maintainers
5
Versions
375
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@masa-finance/masa-sdk - npm Package Compare versions

Comparing version 0.1.8 to 0.1.9

2

dist/package.json
{
"name": "@masa-finance/masa-sdk",
"version": "0.1.8",
"version": "0.1.9",
"description": "Brand new masa SDK",

@@ -5,0 +5,0 @@ "main": "dist/src/index.js",

@@ -34,3 +34,14 @@ import { MasaClient } from "./utils";

getRegistrationPrice: (soulName: string, duration: number, paymentMethod: import("./contracts").PaymentMethod) => Promise<string | import("ethers").BigNumber>;
list: (address?: string | undefined) => Promise<void>;
list: (address?: string | undefined) => Promise<{
index: string;
tokenUri: string;
tokenDetails: [string, import("ethers").BigNumber, import("ethers").BigNumber, import("ethers").BigNumber, boolean] & {
sbtName: string;
identityId: import("ethers").BigNumber;
tokenId: import("ethers").BigNumber;
expirationDate: import("ethers").BigNumber;
active: boolean;
};
metadata: import("./interface").ISoulName | undefined;
}[] | undefined>;
loadSoulNamesByIdentityId: (identityId: import("ethers").BigNumber) => Promise<{

@@ -37,0 +48,0 @@ index: string;

@@ -16,2 +16,13 @@ import Masa from "../masa";

}[]>;
export declare const listSoulnames: (masa: Masa, address?: string) => Promise<void>;
export declare const listSoulnames: (masa: Masa, address?: string) => Promise<{
index: string;
tokenUri: string;
tokenDetails: [string, BigNumber, BigNumber, BigNumber, boolean] & {
sbtName: string;
identityId: BigNumber;
tokenId: BigNumber;
expirationDate: BigNumber;
active: boolean;
};
metadata: ISoulName | undefined;
}[] | undefined>;

@@ -65,5 +65,7 @@ "use strict";

}
return soulNames;
}
else {
console.log("Not logged in please login first");
return [];
}

@@ -70,0 +72,0 @@ });

@@ -6,3 +6,14 @@ import { BigNumber } from "ethers";

getRegistrationPrice: (soulName: string, duration: number, paymentMethod: PaymentMethod) => Promise<string | BigNumber>;
list: (address?: string) => Promise<void>;
list: (address?: string) => Promise<{
index: string;
tokenUri: string;
tokenDetails: [string, BigNumber, BigNumber, BigNumber, boolean] & {
sbtName: string;
identityId: BigNumber;
tokenId: BigNumber;
expirationDate: BigNumber;
active: boolean;
};
metadata: import("..").ISoulName | undefined;
}[] | undefined>;
loadSoulNamesByIdentityId: (identityId: BigNumber) => Promise<{

@@ -9,0 +20,0 @@ index: string;

{
"name": "@masa-finance/masa-sdk",
"version": "0.1.8",
"version": "0.1.9",
"description": "Brand new masa SDK",

@@ -5,0 +5,0 @@ "main": "dist/src/index.js",

Sorry, the diff of this file is not supported yet

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