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

@metaplex-foundation/mpl-core

Package Overview
Dependencies
Maintainers
5
Versions
32
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@metaplex-foundation/mpl-core - npm Package Compare versions

Comparing version 1.0.0-alpha.4 to 1.0.0-alpha.5

7

dist/src/instructions/collection/addCollectionPlugin.d.ts

@@ -5,7 +5,8 @@ import { Context } from '@metaplex-foundation/umi';

import { ExternalPluginAdapterInitInfoArgs } from '../../plugins/externalPluginAdapters';
export type AddCollectionPluginArgsPlugin = Exclude<CollectionAddablePluginAuthorityPairArgsV2, {
type: 'Edition ';
}> | ExternalPluginAdapterInitInfoArgs;
export type AddCollectionPluginArgs = Omit<Parameters<typeof addCollectionPluginV1>[1], 'plugin' | 'initAuthority'> & {
plugin: Exclude<CollectionAddablePluginAuthorityPairArgsV2, {
type: 'Edition ';
}> | ExternalPluginAdapterInitInfoArgs;
plugin: AddCollectionPluginArgsPlugin;
};
export declare const addCollectionPlugin: (context: Pick<Context, 'payer' | 'programs' | 'eddsa' | 'identity'>, { plugin, ...args }: AddCollectionPluginArgs) => import("@metaplex-foundation/umi").TransactionBuilder;

@@ -5,5 +5,6 @@ import { Context } from '@metaplex-foundation/umi';

import { ExternalPluginAdapterInitInfoArgs } from '../../plugins/externalPluginAdapters';
export type CreateCollectionArgsPlugin = CollectionPluginAuthorityPairArgsV2 | ExternalPluginAdapterInitInfoArgs;
export type CreateCollectionArgs = Omit<Parameters<typeof createCollectionV2>[1], 'plugins' | 'externalPluginAdapters'> & {
plugins?: (CollectionPluginAuthorityPairArgsV2 | ExternalPluginAdapterInitInfoArgs)[];
plugins?: CreateCollectionArgsPlugin[];
};
export declare const createCollection: (context: Pick<Context, 'payer' | 'programs' | 'eddsa' | 'identity'>, { plugins, ...args }: CreateCollectionArgs) => import("@metaplex-foundation/umi").TransactionBuilder;
import { Context } from '@metaplex-foundation/umi';
import { PluginType, removeCollectionPluginV1 } from '../../generated';
import { ExternalPluginAdapterKey } from '../../plugins';
export type RemoveCollectionPluginArgsPlugin = {
type: Exclude<keyof typeof PluginType, 'Edition'>;
} | ExternalPluginAdapterKey;
export type RemoveCollectionPluginArgs = Omit<Parameters<typeof removeCollectionPluginV1>[1], 'plugin' | 'pluginType'> & {
plugin: {
type: Exclude<keyof typeof PluginType, 'Edition'>;
} | ExternalPluginAdapterKey;
plugin: RemoveCollectionPluginArgsPlugin;
};
export declare const removeCollectionPlugin: (context: Pick<Context, 'payer' | 'programs' | 'eddsa' | 'identity'>, { plugin, ...args }: RemoveCollectionPluginArgs) => import("@metaplex-foundation/umi").TransactionBuilder;

@@ -5,5 +5,6 @@ import { Context } from '@metaplex-foundation/umi';

import { ExternalPluginAdapterUpdateInfoArgs } from '../../plugins/externalPluginAdapters';
export type UpdateCollectionPluginArgsPlugin = CollectionAllPluginArgsV2 | ExternalPluginAdapterUpdateInfoArgs;
export type UpdateCollectionPluginArgs = Omit<Parameters<typeof updateCollectionPluginV1>[1], 'plugin'> & {
plugin: CollectionAllPluginArgsV2 | ExternalPluginAdapterUpdateInfoArgs;
plugin: UpdateCollectionPluginArgsPlugin;
};
export declare const updateCollectionPlugin: (context: Pick<Context, 'payer' | 'programs' | 'identity'>, { plugin, ...args }: UpdateCollectionPluginArgs) => import("@metaplex-foundation/umi").TransactionBuilder;
{
"name": "@metaplex-foundation/mpl-core",
"version": "1.0.0-alpha.4",
"version": "1.0.0-alpha.5",
"description": "Digital Assets",

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

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

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