Skip to content

Commit

Permalink
Merge pull request #474 from zkLinkProtocol/dev
Browse files Browse the repository at this point in the history
replace base network rpc
  • Loading branch information
xsteadybcgo authored Nov 10, 2024
2 parents f4c2b87 + 7a367cc commit 94a0ade
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
1 change: 1 addition & 0 deletions libs/agx/src/agx.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ export class AgxService extends ActionDto<FieldTypes> {

async getMetadata(): Promise<ActionMetadata<FieldTypes>> {
return {
whiteList: ['0x78854850E7Afed5D0Bda68A56FAC24FF9347B7bD'],
title: 'AGX - One-Click Perpetual Trading',
description:
'<div>This action allows you to create a magicLink to receive donations</div>',
Expand Down
2 changes: 1 addition & 1 deletion src/config/chain.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ export const chainConfig: Array<{
{
chainId: Chains.Base,
name: 'Base',
rpc: ['https://base.llamarpc.com'],
rpc: ['https://base-mainnet.infura.io/v3/f6c9c3549f6d44db9a13160669776a0d'],
explorer: 'https://basescan.org',
},
{
Expand Down
4 changes: 2 additions & 2 deletions src/modules/action/action.controller.ts
Original file line number Diff line number Diff line change
Expand Up @@ -63,8 +63,8 @@ export class ActionController extends BaseController {
const actions = await this.actionService.getAllActionMetadata(
creator.address,
);

return this.success(actions);
const filteredActions = actions.filter((i) => i.id !== 'novaswap');
return this.success(filteredActions);
}

@Get(':id')
Expand Down

0 comments on commit 94a0ade

Please sign in to comment.