PHP WebShell

Текущая директория: /opt/BitGoJS/modules/sdk-coin-celo/src

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

/**
 * @prettier
 */
import { Celo } from './celo';
import { BitGoBase, CoinConstructor, NamedCoinConstructor } from '@bitgo/sdk-core';
import { CeloTokenConfig, coins, tokens } from '@bitgo/statics';

export { CeloTokenConfig };

export class CeloToken extends Celo {
  public readonly tokenConfig: CeloTokenConfig;

  constructor(bitgo: BitGoBase, tokenConfig: CeloTokenConfig) {
    const staticsCoin = tokenConfig.network === 'Mainnet' ? coins.get('celo') : coins.get('tcelo');
    super(bitgo, staticsCoin);
    this.tokenConfig = tokenConfig;
  }

  static createTokenConstructor(config: CeloTokenConfig): CoinConstructor {
    return (bitgo: BitGoBase) => new CeloToken(bitgo, config);
  }

  static createTokenConstructors(
    tokenConfigs: CeloTokenConfig[] = [...tokens.bitcoin.celo.tokens, ...tokens.testnet.celo.tokens]
  ): NamedCoinConstructor[] {
    const tokensCtors: NamedCoinConstructor[] = [];
    for (const token of tokenConfigs) {
      const tokenConstructor = CeloToken.createTokenConstructor(token);
      tokensCtors.push({ name: token.type, coinConstructor: tokenConstructor });
      tokensCtors.push({ name: token.tokenContractAddress, coinConstructor: tokenConstructor });
    }
    return tokensCtors;
  }

  get type() {
    return this.tokenConfig.type;
  }

  get name() {
    return this.tokenConfig.name;
  }

  get coin() {
    return this.tokenConfig.coin;
  }

  get network() {
    return this.tokenConfig.network;
  }

  get tokenContractAddress() {
    return this.tokenConfig.tokenContractAddress;
  }

  get decimalPlaces() {
    return this.tokenConfig.decimalPlaces;
  }

  getChain() {
    return this.tokenConfig.type;
  }

  getBaseChain() {
    return this.coin;
  }

  getFullName() {
    return 'Celo Token';
  }

  getBaseFactor() {
    return Math.pow(10, this.tokenConfig.decimalPlaces);
  }

  /**
   * Flag for sending value of 0
   * @returns {boolean} True if okay to send 0 value, false otherwise
   */
  valuelessTransferAllowed() {
    return false;
  }

  /**
   * Flag for sending data along with transactions
   * @returns {boolean} True if okay to send tx data (CELO), false otherwise
   */
  transactionDataAllowed() {
    return false;
  }
}

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


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