Skip to content

Commit

Permalink
feat: add Solana as a destination bridge out chain with fees support
Browse files Browse the repository at this point in the history
  • Loading branch information
sentientforest committed Feb 12, 2025
1 parent c18d7b7 commit 833c6a0
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions chain-api/src/types/ChainId.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,8 @@
*/
export enum ChainId {
Ethereum = 2,
TON = 1001
TON = 1001,
Solana = 1002
}

/**
Expand All @@ -40,4 +41,4 @@ export enum ChainId {
* and the `requestTokenBridgeOutFeeGate` implementation in the
* `gala-chain/chaincode` package.
*/
export const ChainsWithBridgeFeeSupport: ChainId[] = [ChainId.Ethereum, ChainId.TON];
export const ChainsWithBridgeFeeSupport: ChainId[] = [ChainId.Ethereum, ChainId.TON, ChainId.Solana];

0 comments on commit 833c6a0

Please sign in to comment.