@revibase/core 0.5.0 → 0.5.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.cjs +2 -2
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +1 -2
- package/dist/index.d.ts +1 -2
- package/dist/index.js +2 -2
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -3814,12 +3814,11 @@ type TokenTransferIntentParams = {
|
|
|
3814
3814
|
signers: (TransactionSigner | SignedSecp256r1Key)[];
|
|
3815
3815
|
tokenProgram: Address;
|
|
3816
3816
|
payer: TransactionSigner;
|
|
3817
|
-
useDestinationSplAccount?: boolean;
|
|
3818
3817
|
splInterfacePdaArgs?: SplInterfacePdaArgsArgs;
|
|
3819
3818
|
compressed?: boolean;
|
|
3820
3819
|
cachedAccounts?: AccountCache;
|
|
3821
3820
|
};
|
|
3822
|
-
declare function tokenTransferIntent({ settings, settingsAddressTreeIndex, destination, mint, signers, cachedAccounts, amount, payer, tokenProgram, splInterfacePdaArgs, compressed,
|
|
3821
|
+
declare function tokenTransferIntent({ settings, settingsAddressTreeIndex, destination, mint, signers, cachedAccounts, amount, payer, tokenProgram, splInterfacePdaArgs, compressed, }: TokenTransferIntentParams): Promise<Instruction[]>;
|
|
3823
3822
|
|
|
3824
3823
|
interface MapData {
|
|
3825
3824
|
index: number;
|
package/dist/index.d.ts
CHANGED
|
@@ -3814,12 +3814,11 @@ type TokenTransferIntentParams = {
|
|
|
3814
3814
|
signers: (TransactionSigner | SignedSecp256r1Key)[];
|
|
3815
3815
|
tokenProgram: Address;
|
|
3816
3816
|
payer: TransactionSigner;
|
|
3817
|
-
useDestinationSplAccount?: boolean;
|
|
3818
3817
|
splInterfacePdaArgs?: SplInterfacePdaArgsArgs;
|
|
3819
3818
|
compressed?: boolean;
|
|
3820
3819
|
cachedAccounts?: AccountCache;
|
|
3821
3820
|
};
|
|
3822
|
-
declare function tokenTransferIntent({ settings, settingsAddressTreeIndex, destination, mint, signers, cachedAccounts, amount, payer, tokenProgram, splInterfacePdaArgs, compressed,
|
|
3821
|
+
declare function tokenTransferIntent({ settings, settingsAddressTreeIndex, destination, mint, signers, cachedAccounts, amount, payer, tokenProgram, splInterfacePdaArgs, compressed, }: TokenTransferIntentParams): Promise<Instruction[]>;
|
|
3823
3822
|
|
|
3824
3823
|
interface MapData {
|
|
3825
3824
|
index: number;
|