MetaplexAuctionHouseExecuteSaleRemainingAccountsLayout.fromBuffer constructor

MetaplexAuctionHouseExecuteSaleRemainingAccountsLayout.fromBuffer(
  1. List<int> data
)

Constructs the layout from raw bytes.

Implementation

factory MetaplexAuctionHouseExecuteSaleRemainingAccountsLayout.fromBuffer(
    List<int> data) {
  MetaplexAuctionHouseProgramLayout.decodeAndValidateStruct(
      layout: _layout,
      bytes: data,
      instruction: MetaplexAuctionHouseProgramInstruction
          .executeSaleRemainingAccounts.insturction);
  return const MetaplexAuctionHouseExecuteSaleRemainingAccountsLayout();
}