Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
28 changes: 25 additions & 3 deletions lib/alkanes/alkanes.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -118,14 +118,15 @@ export declare const deployCommit: ({ payload, utxos, account, provider, feeRate
protostone: Buffer;
}) => Promise<{
script: string;
commitPsbt: string;
txId: string;
rawTx: string;
size: any;
weight: any;
fee: number;
satsPerVByte: string;
}>;
export declare const deployReveal: ({ payload, alkanesUtxos, utxos, protostone, commitTxId, script, account, provider, feeRate, signer, }: {
export declare const deployReveal: ({ payload, alkanesUtxos, utxos, protostone, commitTxId, script, account, provider, feeRate, signer, commitPsbt, }: {
payload: AlkanesPayload;
alkanesUtxos?: FormattedUtxo[];
utxos: FormattedUtxo[];
Expand All @@ -136,6 +137,7 @@ export declare const deployReveal: ({ payload, alkanesUtxos, utxos, protostone,
provider: Provider;
feeRate?: number;
signer: Signer;
commitPsbt?: bitcoin.Psbt;
}) => Promise<{
txId: string;
rawTx: string;
Expand All @@ -144,13 +146,14 @@ export declare const deployReveal: ({ payload, alkanesUtxos, utxos, protostone,
fee: number;
satsPerVByte: string;
}>;
export declare const actualTransactRevealFee: ({ payload, alkanesUtxos, utxos, protostone, tweakedPublicKey, commitTxId, receiverAddress, script, provider, feeRate, account, }: {
export declare const actualTransactRevealFee: ({ payload, alkanesUtxos, utxos, protostone, tweakedPublicKey, commitTxId, commitPsbt, receiverAddress, script, provider, feeRate, account, }: {
payload: AlkanesPayload;
alkanesUtxos?: FormattedUtxo[];
utxos: FormattedUtxo[];
protostone: Buffer;
tweakedPublicKey: string;
commitTxId: string;
commitPsbt: bitcoin.Psbt;
receiverAddress: string;
script: Buffer;
provider: Provider;
Expand Down Expand Up @@ -252,7 +255,7 @@ export declare const wrapBtc: ({ alkanesUtxos, utxos, account, protostone, provi
fee: number;
satsPerVByte: string;
}>;
export declare const createTransactReveal: ({ payload, alkanesUtxos, utxos, protostone, receiverAddress, script, feeRate, tweakedPublicKey, provider, fee, commitTxId, account, }: {
export declare const createTransactReveal: ({ payload, alkanesUtxos, utxos, protostone, receiverAddress, script, feeRate, tweakedPublicKey, provider, fee, commitTxId, commitPsbt, account, }: {
payload: AlkanesPayload;
alkanesUtxos?: FormattedUtxo[];
utxos: FormattedUtxo[];
Expand All @@ -264,6 +267,7 @@ export declare const createTransactReveal: ({ payload, alkanesUtxos, utxos, prot
provider: Provider;
fee?: number;
commitTxId: string;
commitPsbt: bitcoin.Psbt;
account: Account;
}) => Promise<{
psbt: string;
Expand All @@ -278,3 +282,21 @@ export declare const toAlkaneId: (item: string) => {
amount: number;
};
export { p2tr_ord_reveal };
export declare const inscribePayloadBulk: ({ alkanesUtxos, payload, utxos, account, protostone, provider, feeRate, signer, }: {
alkanesUtxos?: FormattedUtxo[];
payload: AlkanesPayload;
utxos: FormattedUtxo[];
account: Account;
protostone: Buffer;
provider: Provider;
feeRate?: number;
signer: Signer;
}) => Promise<{
commitTx: string;
txId: string;
rawTx: string;
size: any;
weight: any;
fee: number;
satsPerVByte: string;
}>;
124 changes: 111 additions & 13 deletions lib/alkanes/alkanes.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion lib/alkanes/alkanes.js.map

Large diffs are not rendered by default.

5 changes: 4 additions & 1 deletion lib/alkanes/token.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading