declare function createSpore(props: {
data: SporeDataProps;
toLock: Script;
fromInfos: FromInfo[];
changeAddress?: Address;
updateOutput?: (cell: Cell) => Cell;
capacityMargin?: BIish | ((cell: Cell, margin: BI) => BIish);
cluster?: {
updateOutput?: (cell: Cell) => Cell;
capacityMargin?: BIish | ((cell: Cell, margin: BI) => BIish);
updateWitness?: HexString | ((witness: HexString) => HexString);
};
clusterAgentOutPoint?: OutPoint;
clusterAgent?: {
updateOutput?: (cell: Cell) => Cell;
capacityMargin?: BIish | ((cell: Cell, margin: BI) => BIish);
updateWitness?: HexString | ((witness: HexString) => HexString);
};
maxTransactionSize?: number | false;
config?: SporeConfig;
}): Promise<{
txSkeleton: helpers.TransactionSkeletonType;
outputIndex: number;
reference: {
referenceTarget: 'cluster' | 'clusterAgent' | 'none';
referenceType?: 'cell' | 'lockProxy';
cluster?: {
inputIndex: number;
outputIndex: number;
};
clusterAgent?: {
inputIndex: number;
outputIndex: number;
};
};
}>;
declare function transferSpore(props: {
outPoint: OutPoint;
toLock: Script;
fromInfos?: FromInfo[];
changeAddress?: Address;
useCapacityMarginAsFee?: boolean;
updateOutput?: (cell: Cell) => Cell;
capacityMargin?: BIish | ((cell: Cell, margin: BI) => BIish);
updateWitness?: HexString | ((witness: HexString) => HexString);
defaultWitness?: HexString;
since?: PackedSince;
config?: SporeConfig;
}): Promise<{
txSkeleton: helpers.TransactionSkeletonType;
inputIndex: number;
outputIndex: number;
}>;
declare function meltSpore(props: {
outPoint: OutPoint;
changeAddress?: Address;
updateWitness?: HexString | ((witness: HexString) => HexString);
defaultWitness?: HexString;
since?: PackedSince;
config?: SporeConfig;
}): Promise<{
txSkeleton: helpers.TransactionSkeletonType;
inputIndex: number;
}>;
declare function createCluster(props: {
data: ClusterDataProps;
toLock: Script;
fromInfos: FromInfo[];
changeAddress?: Address;
updateOutput?: (cell: Cell) => Cell;
capacityMargin?: BIish | ((cell: Cell, margin: BI) => BIish);
maxTransactionSize?: number | false;
config?: SporeConfig;
}): Promise<{
txSkeleton: helpers.TransactionSkeletonType;
outputIndex: number;
}>;
interface ClusterDataProps {
name: string;
description: string;
}
declare function transferCluster(props: {
outPoint: OutPoint;
toLock: Script;
fromInfos?: FromInfo[];
changeAddress?: Address;
useCapacityMarginAsFee?: boolean;
updateOutput?: (cell: Cell) => Cell;
capacityMargin?: BIish | ((cell: Cell, margin: BI) => BIish);
updateWitness?: HexString | ((witness: HexString) => HexString);
defaultWitness?: HexString;
since?: PackedSince;
config?: SporeConfig;
}): Promise<{
txSkeleton: helpers.TransactionSkeletonType;
inputIndex: number;
outputIndex: number;
}>;
declare function createClusterProxy(props: {
clusterOutPoint: OutPoint;
minPayment?: BIish;
toLock: Script;
fromInfos: FromInfo[];
changeAddress?: Address;
updateOutput?(cell: Cell): Cell;
capacityMargin?: BIish | ((cell: Cell, margin: BI) => BIish);
cluster?: {
updateOutput?(cell: Cell): Cell;
capacityMargin?: BIish | ((cell: Cell, margin: BI) => BIish);
updateWitness?: HexString | ((witness: HexString) => HexString);
};
config?: SporeConfig;
}): Promise<{
txSkeleton: helpers.TransactionSkeletonType;
outputIndex: number;
reference: {
referenceType: 'cell' | 'lockProxy';
cluster?: {
inputIndex: number;
outputIndex: number;
};
};
}>;
declare function transferClusterProxy(props: {
outPoint: OutPoint;
toLock: Script;
fromInfos?: FromInfo[];
changeAddress?: Address;
useCapacityMarginAsFee?: boolean;
updateOutput?: (cell: Cell) => Cell;
capacityMargin?: BIish | ((cell: Cell, margin: BI) => BIish);
updateWitness?: HexString | ((witness: HexString) => HexString);
defaultWitness?: HexString;
since?: PackedSince;
config?: SporeConfig;
}): Promise<{
txSkeleton: helpers.TransactionSkeletonType;
inputIndex: number;
outputIndex: number;
}>;
declare function meltClusterProxy(props: {
outPoint: OutPoint;
toLock: Script;
minPayment?: BIish;
fromInfos?: FromInfo[];
changeAddress?: Address;
useCapacityMarginAsFee?: boolean;
updateOutput?: (cell: Cell) => Cell;
capacityMargin?: BIish | ((cell: Cell, margin: BI) => BIish);
updateWitness?: HexString | ((witness: HexString) => HexString);
defaultWitness?: HexString;
since?: PackedSince;
config?: SporeConfig;
}): Promise<{
txSkeleton: helpers.TransactionSkeletonType;
inputIndex: number;
outputIndex: number;
}>;
declare function createClusterAgent(props: {
clusterProxyOutPoint: OutPoint;
referenceType: 'cell' | 'payment';
paymentAmount?: BIish | ((minPayment: BI) => BIish);
toLock: Script;
fromInfos: FromInfo[];
changeAddress?: Address;
updateOutput?: (cell: Cell) => Cell;
capacityMargin?: BIish | ((cell: Cell, margin: BI) => BIish);
clusterProxy?: {
updateOutput?: (cell: Cell) => Cell;
capacityMargin?: BIish | ((cell: Cell, margin: BI) => BIish);
updateWitness?: HexString | ((witness: HexString) => HexString);
};
config?: SporeConfig;
}): Promise<{
txSkeleton: helpers.TransactionSkeletonType;
outputIndex: number;
reference: {
referenceType: 'cell' | 'payment';
clusterProxy?: {
inputIndex: number;
outputIndex: number;
};
payment?: {
outputIndex: number;
};
};
}>;
declare function transferClusterAgent(props: {
outPoint: OutPoint;
toLock: Script;
fromInfos?: FromInfo[];
changeAddress?: Address;
useCapacityMarginAsFee?: boolean;
updateOutput?: (cell: Cell) => Cell;
capacityMargin?: BIish | ((cell: Cell, margin: BI) => BIish);
updateWitness?: HexString | ((witness: HexString) => HexString);
defaultWitness?: HexString;
since?: PackedSince;
config?: SporeConfig;
}): Promise<{
txSkeleton: helpers.TransactionSkeletonType;
inputIndex: number;
outputIndex: number;
}>;
declare function meltClusterAgent(props: {
outPoint: OutPoint;
changeAddress?: Address;
updateWitness?: HexString | ((witness: HexString) => HexString);
config?: SporeConfig;
}): Promise<{
txSkeleton: helpers.TransactionSkeletonType;
inputIndex: number;
}>;