Skip to content
This repository has been archived by the owner on Jan 24, 2024. It is now read-only.

fix(stargate): Remove Auction Locked position #3004

Merged
merged 1 commit into from
Oct 31, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
417 changes: 0 additions & 417 deletions src/apps/stargate/contracts/abis/stargate-aa.json

This file was deleted.

1,057 changes: 0 additions & 1,057 deletions src/apps/stargate/contracts/ethers/StargateAa.ts

This file was deleted.

919 changes: 0 additions & 919 deletions src/apps/stargate/contracts/ethers/factories/StargateAa__factory.ts

This file was deleted.

1 change: 0 additions & 1 deletion src/apps/stargate/contracts/ethers/factories/index.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
/* Autogenerated file. Do not edit manually. */
/* tslint:disable */
/* eslint-disable */
export { StargateAa__factory } from './StargateAa__factory';
export { StargateChef__factory } from './StargateChef__factory';
export { StargateChefBase__factory } from './StargateChefBase__factory';
export { StargateEth__factory } from './StargateEth__factory';
Expand Down
2 changes: 0 additions & 2 deletions src/apps/stargate/contracts/ethers/index.ts
Original file line number Diff line number Diff line change
@@ -1,15 +1,13 @@
/* Autogenerated file. Do not edit manually. */
/* tslint:disable */
/* eslint-disable */
export type { StargateAa } from './StargateAa';
export type { StargateChef } from './StargateChef';
export type { StargateChefBase } from './StargateChefBase';
export type { StargateEth } from './StargateEth';
export type { StargateFactory } from './StargateFactory';
export type { StargatePool } from './StargatePool';
export type { StargateVe } from './StargateVe';
export * as factories from './factories';
export { StargateAa__factory } from './factories/StargateAa__factory';
export { StargateChefBase__factory } from './factories/StargateChefBase__factory';
export { StargateChef__factory } from './factories/StargateChef__factory';
export { StargateEth__factory } from './factories/StargateEth__factory';
Expand Down
5 changes: 0 additions & 5 deletions src/apps/stargate/contracts/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ import { ContractFactory } from '~contract/contracts';
import { Network } from '~types/network.interface';

import {
StargateAa__factory,
StargateChef__factory,
StargateChefBase__factory,
StargateEth__factory,
Expand All @@ -23,9 +22,6 @@ export class StargateContractFactory extends ContractFactory {
super((network: Network) => appToolkit.getNetworkProvider(network));
}

stargateAa({ address, network }: ContractOpts) {
return StargateAa__factory.connect(address, this.appToolkit.getNetworkProvider(network));
}
stargateChef({ address, network }: ContractOpts) {
return StargateChef__factory.connect(address, this.appToolkit.getNetworkProvider(network));
}
Expand All @@ -46,7 +42,6 @@ export class StargateContractFactory extends ContractFactory {
}
}

export type { StargateAa } from './ethers';
export type { StargateChef } from './ethers';
export type { StargateChefBase } from './ethers';
export type { StargateEth } from './ethers';
Expand Down

This file was deleted.

2 changes: 0 additions & 2 deletions src/apps/stargate/stargate.module.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@ import { BinanceSmartChainStargateFarmContractPositionFetcher } from './binance-
import { BinanceSmartChainStargatePoolTokenFetcher } from './binance-smart-chain/stargate.pool.token-fetcher';
import { BinanceSmartChainStargateVotingEscrowContractPositionFetcher } from './binance-smart-chain/stargate.voting-escrow.contract-position-fetcher';
import { StargateContractFactory } from './contracts';
import { EthereumStargateAuctionLockedTokenFetcher } from './ethereum/stargate.auction-locked.token-fetcher';
import { EthereumStargateEthTokenFetcher } from './ethereum/stargate.eth.token-fetcher';
import { EthereumStargateFarmContractPositionFetcher } from './ethereum/stargate.farm.contract-position-fetcher';
import { EthereumStargatePoolTokenFetcher } from './ethereum/stargate.pool.token-fetcher';
Expand Down Expand Up @@ -57,7 +56,6 @@ import { PolygonStargateVotingEscrowContractPositionFetcher } from './polygon/st
EthereumStargateFarmContractPositionFetcher,
EthereumStargatePoolTokenFetcher,
EthereumStargateVotingEscrowContractPositionFetcher,
EthereumStargateAuctionLockedTokenFetcher,
// Fantom
FantomStargateFarmContractPositionFetcher,
FantomStargatePoolTokenFetcher,
Expand Down
Loading