MetaplexAuctionHouseSellRemainingAccountsLayout.fromBuffer constructor

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

Constructs the layout from raw bytes.

Implementation

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