Skip to content
This repository was archived by the owner on Apr 22, 2026. It is now read-only.

Commit 7e84e34

Browse files
author
Iztok
committed
changed ownership of packages
1 parent c456ffc commit 7e84e34

73 files changed

Lines changed: 147 additions & 147 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2021 Flare Labs
3+
Copyright (c) 2021 Flare Foundation
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

packages/fasset-bots-api/LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2021 Flare Labs
3+
Copyright (c) 2021 Flare Foundation
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

packages/fasset-bots-api/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
{
2-
"name": "@flarelabs/fasset-bots-api",
2+
"name": "@flarenetwork/fasset-bots-api",
33
"version": "1.2.1",
44
"description": "FAsset bots web API",
5-
"author": "Flare Labs",
5+
"author": "Flare Foundation",
66
"homepage": "https://gitlab.com/flarenetwork/fasset-bots",
77
"repository": {
88
"type": "git",
@@ -26,7 +26,7 @@
2626
"start_agent_api_debug": "yarn nest start --debug --watch"
2727
},
2828
"dependencies": {
29-
"@flarelabs/fasset-bots-core": "workspace:*",
29+
"@flarenetwork/fasset-bots-core": "workspace:*",
3030
"@mikro-orm/cli": "5.8.4",
3131
"@mikro-orm/core": "5.8.4",
3232
"@mikro-orm/knex": "5.8.4",

packages/fasset-bots-api/src/bot-api/agent/agentServer.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ import { ValidationPipe } from "@nestjs/common";
55
import { DocumentBuilder, SwaggerModule } from "@nestjs/swagger";
66
import { WsAdapter } from "@nestjs/platform-ws";
77
import { initializeMikroORM } from "./mikro-orm.config";
8-
import { Secrets } from "@flarelabs/fasset-bots-core/config";
9-
import { requireEnv } from "@flarelabs/fasset-bots-core/utils";
8+
import { Secrets } from "@flarenetwork/fasset-bots-core/config";
9+
import { requireEnv } from "@flarenetwork/fasset-bots-core/utils";
1010

1111
export let cachedSecrets: Secrets;
1212
const FASSET_BOT_SECRETS: string = requireEnv("FASSET_BOT_SECRETS");

packages/fasset-bots-api/src/bot-api/agent/controllers/agent.controller.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import { AgentService } from "../services/agent.service";
44
import { ApiBearerAuth, ApiOkResponse, ApiOperation, ApiQuery, ApiSecurity, ApiTags } from "@nestjs/swagger";
55
import { ApiResponseWrapper, handleApiResponse } from "../../common/ApiResponse";
66
import { APIKey, AgentBalance, AgentCreateResponse, AgentData, AgentSettings, AgentVaultStatus, AllBalances, AllCollaterals, ExtendedAgentVaultInfo, RedemptionQueueData, UnderlyingAddress, VaultCollaterals } from "../../common/AgentResponse";
7-
import { AgentSettingsConfig } from "@flarelabs/fasset-bots-core/config";
7+
import { AgentSettingsConfig } from "@flarenetwork/fasset-bots-core/config";
88
import { AgentSettingsService } from "../services/agentSettings.service";
99
import { AgentSettingsConfigDTO } from "../../common/AgentSettingsConfigDTO";
1010
import { ErrorStatusInterceptor } from "../interceptors/error.status.interceptor";

packages/fasset-bots-api/src/bot-api/agent/services/agent.service.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
import { ActivityTimestampEntity, AgentBotCommands, AgentEntity, AgentInfoReader, AgentSettingName, AgentStatus, AgentUpdateSettingState, CollateralClass, InfoBotCommands, TokenPriceReader, generateSecrets } from "@flarelabs/fasset-bots-core";
2-
import { AgentSettingsConfig, Secrets, createBotOrm, loadAgentConfigFile, loadConfigFile } from "@flarelabs/fasset-bots-core/config";
3-
import { BN_ZERO, BNish, Currencies, MAX_BIPS, TokenBalances, artifacts, createSha256Hash, formatFixed, generateRandomHexString, requireEnv, resolveInFassetBotsCore, toBN, toBNExp, web3 } from "@flarelabs/fasset-bots-core/utils";
1+
import { ActivityTimestampEntity, AgentBotCommands, AgentEntity, AgentInfoReader, AgentSettingName, AgentStatus, AgentUpdateSettingState, CollateralClass, InfoBotCommands, TokenPriceReader, generateSecrets } from "@flarenetwork/fasset-bots-core";
2+
import { AgentSettingsConfig, Secrets, createBotOrm, loadAgentConfigFile, loadConfigFile } from "@flarenetwork/fasset-bots-core/config";
3+
import { BN_ZERO, BNish, Currencies, MAX_BIPS, TokenBalances, artifacts, createSha256Hash, formatFixed, generateRandomHexString, requireEnv, resolveInFassetBotsCore, toBN, toBNExp, web3 } from "@flarenetwork/fasset-bots-core/utils";
44
import { CACHE_MANAGER } from "@nestjs/cache-manager";
55
import { Inject, Injectable } from "@nestjs/common";
66
import { Cache } from "cache-manager";

packages/fasset-bots-api/src/bot-api/agent/services/agentSettings.service.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import { Injectable } from '@nestjs/common';
22
import { AgentSettingsConfigDTO } from '../../common/AgentSettingsConfigDTO';
3-
import { AgentSettingsConfig } from '@flarelabs/fasset-bots-core/config';
3+
import { AgentSettingsConfig } from '@flarenetwork/fasset-bots-core/config';
44

55
@Injectable()
66
export class AgentSettingsService {

packages/fasset-bots-api/src/bot-api/common/AgentResponse.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
import { AgentInfo } from "@flarelabs/fasset-bots-core";
2-
import type { BNish } from "@flarelabs/fasset-bots-core/utils";
1+
import { AgentInfo } from "@flarenetwork/fasset-bots-core";
2+
import type { BNish } from "@flarenetwork/fasset-bots-core/utils";
33

44
export interface AgentCreateResponse {
55
vaultAddress: string;

packages/fasset-bots-cli/LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2021 Flare Labs
3+
Copyright (c) 2021 Flare Foundation
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

packages/fasset-bots-cli/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
{
2-
"name": "@flarelabs/fasset-bots-cli",
2+
"name": "@flarenetwork/fasset-bots-cli",
33
"version": "1.2.1",
44
"description": "FAsset bots command line executables",
5-
"author": "Flare Labs",
5+
"author": "Flare Foundation",
66
"homepage": "https://gitlab.com/flarenetwork/fasset-bots",
77
"repository": {
88
"type": "git",
@@ -29,7 +29,7 @@
2929
"/src"
3030
],
3131
"dependencies": {
32-
"@flarelabs/fasset-bots-core": "workspace:*",
32+
"@flarenetwork/fasset-bots-core": "workspace:*",
3333
"@flarenetwork/state-connector-protocol": "1.0.0-beta.4",
3434
"@types/bn.js": "5.1.5",
3535
"bn.js": "5.2.1",

0 commit comments

Comments
 (0)