TokenOfferTransactionParams

Type Alias: TokenOfferTransactionParams

Properties overview

  • amount: number;
  • price: number;
type TokenOfferTransactionParams = DeployedTokenTransactionBaseParams & {
  amount: number;
  offerAddress: string;
  offerPrivateKey: string;
  price: number;
  txType: "token:offer:create";
  whitelist: Whitelist;
};

Defined in: packages/api/src/client/types.gen.ts:482

Type declaration

amount

amount: number;

The amount to offer.

offerAddress?

optional offerAddress: string;

Optional. The address for offering.

offerPrivateKey?

optional offerPrivateKey: string;

Optional. The private key for offering.

price

price: number;

The price to offer.

txType?

optional txType: "token:offer:create";

Must be "token:offer:create"

whitelist?

optional whitelist: Whitelist;