PHP WebShell

Текущая директория: /usr/lib/node_modules/bitgo/node_modules/@bitgo-forks/avalanchejs/src/serializable/pvm

Просмотр файла: createChainTx.ts

import { concatBytes } from '@noble/hashes/utils';
import { packList, toListStruct } from '../../utils/serializeList';
import { pack, unpack } from '../../utils/struct';
import { BaseTx } from '../avax/baseTx';
import { Codec } from '../codec/codec';
import type { Serializable } from '../common/types';
import { serializable } from '../common/types';
import { Id } from '../fxs/common';
import { Bytes, Stringpr } from '../primitives';
import { AbstractSubnetTx } from './abstractSubnetTx';
import { TypeSymbols } from '../constants';

/**
 * @see
 */
@serializable()
export class CreateChainTx extends AbstractSubnetTx {
  _type = TypeSymbols.CreateChainTx;

  constructor(
    public readonly baseTx: BaseTx,
    public readonly subnetID: Id,
    public readonly chainName: Stringpr,
    public readonly vmID: Id,
    public readonly fxIds: Id[],
    public readonly genesisData: Bytes,
    public readonly subnetAuth: Serializable,
  ) {
    super();
  }

  getSubnetID() {
    return this.subnetID;
  }

  static fromBytes(
    bytes: Uint8Array,
    codec: Codec,
  ): [CreateChainTx, Uint8Array] {
    const [
      baseTx,
      subnetID,
      chainName,
      vmID,
      fxIds,
      genesisData,
      subnetAuth,
      rest,
    ] = unpack(
      bytes,
      [BaseTx, Id, Stringpr, Id, toListStruct(Id), Bytes, Codec],
      codec,
    );
    return [
      new CreateChainTx(
        baseTx,
        subnetID,
        chainName,
        vmID,
        fxIds,
        genesisData,
        subnetAuth,
      ),
      rest,
    ];
  }

  toBytes(codec: Codec) {
    return concatBytes(
      pack([this.baseTx, this.subnetID, this.chainName, this.vmID], codec),
      packList(this.fxIds, codec),
      this.genesisData.toBytes(),
      codec.PackPrefix(this.subnetAuth),
    );
  }
}

Выполнить команду


Для локальной разработки. Не используйте в интернете!