@layerzerolabs/lz-solana-sdk-v2 2.1.24 → 2.1.26
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/CHANGELOG.md +9 -0
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.mts +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +5 -5
package/dist/index.d.mts
CHANGED
|
@@ -3484,7 +3484,7 @@ declare class Endpoint {
|
|
|
3484
3484
|
* @param composer. The composer is usually the PDA of the app's ID. It depends on the oapp's implementation.
|
|
3485
3485
|
*/
|
|
3486
3486
|
getClearComposedMessageIXAccountMetaForCPI(composer: PublicKey, packet: PacketV1Codec): Array<AccountMeta>;
|
|
3487
|
-
getSkipIxAccountMetaForCPI(receiver: PublicKey, sender: Uint8Array, srcEid: number, nonce: number): AccountMeta
|
|
3487
|
+
getSkipIxAccountMetaForCPI(receiver: PublicKey, sender: Uint8Array, srcEid: number, nonce: number): Array<AccountMeta>;
|
|
3488
3488
|
isDefaultSendLibrary(connection: Connection, messageLibProgram: PublicKey, dstEid: number, commitmentOrConfig?: Commitment | GetAccountInfoConfig): Promise<boolean>;
|
|
3489
3489
|
isDefaultReceiveLibrary(connection: Connection, messageLibProgram: PublicKey, srcEid: number, commitmentOrConfig?: Commitment | GetAccountInfoConfig): Promise<boolean>;
|
|
3490
3490
|
getSetting(connection: Connection, commitmentOrConfig?: Commitment | GetAccountInfoConfig): Promise<EndpointSettings | null>;
|
package/dist/index.d.ts
CHANGED
|
@@ -3484,7 +3484,7 @@ declare class Endpoint {
|
|
|
3484
3484
|
* @param composer. The composer is usually the PDA of the app's ID. It depends on the oapp's implementation.
|
|
3485
3485
|
*/
|
|
3486
3486
|
getClearComposedMessageIXAccountMetaForCPI(composer: PublicKey, packet: PacketV1Codec): Array<AccountMeta>;
|
|
3487
|
-
getSkipIxAccountMetaForCPI(receiver: PublicKey, sender: Uint8Array, srcEid: number, nonce: number): AccountMeta
|
|
3487
|
+
getSkipIxAccountMetaForCPI(receiver: PublicKey, sender: Uint8Array, srcEid: number, nonce: number): Array<AccountMeta>;
|
|
3488
3488
|
isDefaultSendLibrary(connection: Connection, messageLibProgram: PublicKey, dstEid: number, commitmentOrConfig?: Commitment | GetAccountInfoConfig): Promise<boolean>;
|
|
3489
3489
|
isDefaultReceiveLibrary(connection: Connection, messageLibProgram: PublicKey, srcEid: number, commitmentOrConfig?: Commitment | GetAccountInfoConfig): Promise<boolean>;
|
|
3490
3490
|
getSetting(connection: Connection, commitmentOrConfig?: Commitment | GetAccountInfoConfig): Promise<EndpointSettings | null>;
|