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

@mintbase-js/sdk

Package Overview
Dependencies
Maintainers
2
Versions
1314
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@mintbase-js/sdk - npm Package Compare versions

Comparing version 0.0.4-transfer-contract-ownership.1 to 0.0.4-use-owned-nfts-by-stores.0

lib/batchChangeMinters/batchChangeMinters.d.ts

4

lib/constants.d.ts

@@ -37,2 +37,6 @@ export declare const GAS = "200000000000000";

};
export declare const MINTBASE_API_KEY_HEADER = "mb-api-key";
export declare const MINTBASE_API_ANON_USER = "anon";
export declare const MINTBASE_API_KEY: string;
export declare const ANON_USER_WARNING = "Warning: you are using the anonymous mintbase api key. You may want to specify yours.";
export declare const NEAR_NETWORK: string;

@@ -39,0 +43,0 @@ export declare const MB_MAINNET_TOKEN_FACTORY_ADDRESS = "mintbase1.near";

12

lib/constants.js
"use strict";
var _a;
var _a, _b;
Object.defineProperty(exports, "__esModule", { value: true });
exports.DEFAULT_MB_LOGO = exports.MB_TOKEN_FACTORY_ADDRESS = exports.MB_TESTNET_TOKEN_FACTORY_ADDRESS = exports.MB_MAINNET_TOKEN_FACTORY_ADDRESS = exports.NEAR_NETWORK = exports.Network = exports.DEPOSIT_CONSTANTS = exports.GAS_CONSTANTS = exports.MARKET_METHOD_NAMES = exports.TOKEN_METHOD_NAMES = exports.CONTRACT_DEPOSIT = exports.TOKEN_CONTRACT_SPEC = exports.ONE_YOCTO = exports.MAX_GAS = exports.GAS = void 0;
exports.DEFAULT_MB_LOGO = exports.MB_TOKEN_FACTORY_ADDRESS = exports.MB_TESTNET_TOKEN_FACTORY_ADDRESS = exports.MB_MAINNET_TOKEN_FACTORY_ADDRESS = exports.NEAR_NETWORK = exports.ANON_USER_WARNING = exports.MINTBASE_API_KEY = exports.MINTBASE_API_ANON_USER = exports.MINTBASE_API_KEY_HEADER = exports.Network = exports.DEPOSIT_CONSTANTS = exports.GAS_CONSTANTS = exports.MARKET_METHOD_NAMES = exports.TOKEN_METHOD_NAMES = exports.CONTRACT_DEPOSIT = exports.TOKEN_CONTRACT_SPEC = exports.ONE_YOCTO = exports.MAX_GAS = exports.GAS = void 0;
exports.GAS = '200000000000000';

@@ -41,3 +41,9 @@ exports.MAX_GAS = '300000000000000';

};
exports.NEAR_NETWORK = process.env.NEAR_NETWORK || ((_a = globalThis === null || globalThis === void 0 ? void 0 : globalThis.localStorage) === null || _a === void 0 ? void 0 : _a.getItem('NEAR_NETWORK')) || exports.Network.MAINNET;
exports.MINTBASE_API_KEY_HEADER = 'mb-api-key';
exports.MINTBASE_API_ANON_USER = 'anon';
exports.MINTBASE_API_KEY = process.env.MINTBASE_API_KEY ||
((_a = globalThis === null || globalThis === void 0 ? void 0 : globalThis.localStorage) === null || _a === void 0 ? void 0 : _a.getItem('MINTBASE_API_KEY')) ||
exports.MINTBASE_API_ANON_USER;
exports.ANON_USER_WARNING = 'Warning: you are using the anonymous mintbase api key. You may want to specify yours.';
exports.NEAR_NETWORK = process.env.NEAR_NETWORK || ((_b = globalThis === null || globalThis === void 0 ? void 0 : globalThis.localStorage) === null || _b === void 0 ? void 0 : _b.getItem('NEAR_NETWORK')) || exports.Network.MAINNET;
exports.MB_MAINNET_TOKEN_FACTORY_ADDRESS = 'mintbase1.near';

@@ -44,0 +50,0 @@ exports.MB_TESTNET_TOKEN_FACTORY_ADDRESS = 'mintspace2.testnet';

@@ -7,2 +7,3 @@ export * from './execute';

export * from './transfer/transfer';
export * from './batchChangeMinters/batchChangeMinters';
export * from './v1/token';

@@ -9,0 +10,0 @@ export * from './v1/token.types';

@@ -24,2 +24,3 @@ "use strict";

__exportStar(require("./transfer/transfer"), exports);
__exportStar(require("./batchChangeMinters/batchChangeMinters"), exports);
__exportStar(require("./v1/token"), exports);

@@ -26,0 +27,0 @@ __exportStar(require("./v1/token.types"), exports);

import { TransactionArgs, TransactionAttachments } from '../execute';
import { DeployTokenContractArgs, TransferTokenContractOwnership, MintArgs, BatchChangeMinters, RevokeAccountArgs } from './token.types';
export declare const deployContract: (args: DeployTokenContractArgs) => TransactionArgs & TransactionAttachments;
export declare const transferContractOwnership: (args: TransferTokenContractOwnership) => TransactionArgs & TransactionAttachments;
import { MintArgs, RevokeAccountArgs } from './token.types';
export declare const mint: (args: MintArgs) => TransactionArgs & TransactionAttachments;
export declare const mintMore: () => void;
export declare const batchChangeMinters: (args: BatchChangeMinters) => TransactionArgs & TransactionAttachments;
export declare const revoke: (args: RevokeAccountArgs) => TransactionArgs & TransactionAttachments;
"use strict";
// Mintbase token contract JS implementation
Object.defineProperty(exports, "__esModule", { value: true });
exports.revoke = exports.batchChangeMinters = exports.mintMore = exports.mint = exports.transferContractOwnership = exports.deployContract = void 0;
exports.revoke = exports.mintMore = exports.mint = void 0;
const constants_1 = require("../constants");
const deployContract = (args) => {
const { name, factoryContractId = constants_1.Network.TESTNET, ownerId, metadata } = args;
const { symbol, icon, baseUri, reference, referenceHash } = metadata;
const data = {
// eslint-disable-next-line @typescript-eslint/camelcase
owner_id: ownerId,
metadata: {
spec: 'nft-1.0.0',
name: name.replace(/[^a-z0-9]+/gim, '').toLowerCase(),
symbol: symbol.replace(/[^a-z0-9]+/gim, '').toLowerCase(),
icon: icon !== null && icon !== void 0 ? icon : constants_1.DEFAULT_MB_LOGO,
// eslint-disable-next-line @typescript-eslint/camelcase
base_uri: baseUri !== null && baseUri !== void 0 ? baseUri : null,
reference: reference !== null && reference !== void 0 ? reference : null,
// eslint-disable-next-line @typescript-eslint/camelcase
reference_hash: referenceHash !== null && referenceHash !== void 0 ? referenceHash : null,
},
};
return {
contractAddress: factoryContractId || constants_1.MB_TOKEN_FACTORY_ADDRESS,
methodName: constants_1.TOKEN_METHOD_NAMES.DEPLOY_TOKEN_CONTRACT,
args: data,
gas: constants_1.GAS_CONSTANTS.DEFAULT_GAS,
deposit: '6500000000000000000000000',
};
};
exports.deployContract = deployContract;
const transferContractOwnership = (args) => {
const { nftContractId, nextOwner, options } = args;
const { keepMinters = true } = options;
return {
contractAddress: nftContractId,
args: {
// eslint-disable-next-line @typescript-eslint/camelcase
new_owner: nextOwner,
// eslint-disable-next-line @typescript-eslint/camelcase
keep_old_minters: keepMinters,
},
methodName: constants_1.TOKEN_METHOD_NAMES.TRANSFER_TOKEN_CONTRACT_OWNERSHIP,
gas: constants_1.GAS_CONSTANTS.DEFAULT_GAS,
deposit: constants_1.DEPOSIT_CONSTANTS.ONE_YOCTO,
};
};
exports.transferContractOwnership = transferContractOwnership;
const mint = (args) => {

@@ -66,16 +22,2 @@ const { nftContractId } = args;

exports.mintMore = mintMore;
const batchChangeMinters = (args) => {
const { addMinters, removeMinters, nftContractId } = args;
return {
contractAddress: nftContractId,
args: {
grant: addMinters.length > 0 ? addMinters : undefined,
revoke: removeMinters.length > 0 ? removeMinters : undefined,
},
methodName: constants_1.TOKEN_METHOD_NAMES.BATCH_CHANGE_MINTERS,
gas: constants_1.GAS_CONSTANTS.DEFAULT_GAS,
deposit: constants_1.DEPOSIT_CONSTANTS.ONE_YOCTO,
};
};
exports.batchChangeMinters = batchChangeMinters;
const revoke = (args) => {

@@ -82,0 +24,0 @@ const { nftContractId, tokenId, accountToRevokeId } = args;

@@ -6,21 +6,2 @@ export declare type AccountId = string;

};
export declare type DeployTokenContractArgs = TokenArgs & {
name: string;
factoryContractId?: AccountId;
ownerId: AccountId;
metadata: {
symbol: string;
icon?: string;
baseUri?: string;
reference?: string;
referenceHash?: string;
};
};
export declare type TransferTokenContractOwnership = TokenArgs & {
nftContractId: AccountId;
nextOwner: AccountId;
options?: {
keepMinters: boolean;
};
};
export declare type Splits = Record<AccountId, number>;

@@ -42,11 +23,2 @@ export declare type MintArgs = TokenArgs & {

};
export declare type AddRemoveMinterArgs = TokenArgs & {
minterId: AccountId;
nftContractId: AccountId;
};
export declare type BatchChangeMinters = TokenArgs & {
addMinters: AccountId[];
removeMinters: AccountId[];
nftContractId: AccountId;
};
export declare type RevokeAccountArgs = TokenArgs & {

@@ -53,0 +25,0 @@ nftContractId: AccountId;

{
"name": "@mintbase-js/sdk",
"version": "0.0.4-transfer-contract-ownership.1",
"version": "0.0.4-use-owned-nfts-by-stores.0",
"description": "Core functions for Mintbase JS SDK",

@@ -25,3 +25,3 @@ "main": "lib/index.js",

},
"gitHead": "96fde73cbda267cf32f7deb6d4bb3eb6e7523847"
"gitHead": "5c8bf309ed325787465d95372b81bc0c27556aae"
}

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

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