You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

TokenObject.ts 467B

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. }