您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

1234567891011121314151617181920
  1. import {toUtf8String,parseUnits,ContractFactory, parseEther,JsonRpcProvider, ethers ,Contract, JsonRpcSigner, Wallet,ContractTransactionResponse, MaxInt256
  2. ,Transaction,formatEther
  3. } from 'ethers'
  4. // import * as dotevnv from "dotenv"
  5. // dotevnv.config();
  6. // if (!process.env.RPCURL) {
  7. // console.log(`No rpcur value specified...`)
  8. // }
  9. export class TokenObject {
  10. _abi;
  11. constructor() {
  12. this._abi = require('./SecurityToken.json');
  13. }
  14. }