| 1234567891011121314151617181920 |
- import {toUtf8String,parseUnits,ContractFactory, parseEther,JsonRpcProvider, ethers ,Contract, JsonRpcSigner, Wallet,ContractTransactionResponse, MaxInt256
- ,Transaction,formatEther
- } from 'ethers'
-
- // import * as dotevnv from "dotenv"
- // dotevnv.config();
- // if (!process.env.RPCURL) {
- // console.log(`No rpcur value specified...`)
- // }
-
-
- export class TokenObject {
-
- _abi;
-
- constructor() {
- this._abi = require('./SecurityToken.json');
- }
-
- }
|