Skip to content

Commit

Permalink
fix: remove decimals from solana deploy config to satisfy checker (#5231
Browse files Browse the repository at this point in the history
)

### Description

<!--
What's included in this PR?
-->

### Drive-by changes

<!--
Are there any minor or drive-by changes also included?
-->

### Related issues

<!--
- Fixes #[issue number here]
-->

### Backward compatibility

<!--
Are these changes backward compatible? Are there any infrastructure
implications, e.g. changes that would prohibit deploying older commits
using this infra tooling?

Yes/No
-->

### Testing

<!--
What kind of testing have these changes undergone?

None/Manual/Unit Tests
-->
  • Loading branch information
nambrot authored Jan 21, 2025
1 parent b98902f commit 09e1d5b
Showing 1 changed file with 12 additions and 14 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@ export const getTrumpchainTRUMPWarpConfig = async (
type: TokenType.collateral,
name,
symbol,
decimals: 6,
totalSupply,
token: '6p6xgHyF7AeE6TZkSmFsko444wqoP15icUSqi2jfGiPN',
owner: DEPLOYER,
Expand Down Expand Up @@ -65,7 +64,6 @@ export const getTRUMPWarpConfig = async (
type: TokenType.collateral,
name,
symbol,
decimals: 6,
totalSupply,
token: '6p6xgHyF7AeE6TZkSmFsko444wqoP15icUSqi2jfGiPN',
owner: DEPLOYER,
Expand All @@ -86,59 +84,59 @@ export const getTRUMPWarpConfig = async (
...routerConfig.arbitrum,
...syntheticToken,
type: TokenType.synthetic,
owner: DEPLOYER,
owner: abacusWorksEnvOwnerConfig.arbitrum.owner,
proxyAdmin: {
owner: DEPLOYER,
owner: abacusWorksEnvOwnerConfig.arbitrum.owner,
address: '0x2350389Ea8649Da5dD4Fdd09c414dD8463C2695c',
},
},
avalanche: {
...routerConfig.avalanche,
...syntheticToken,
type: TokenType.synthetic,
owner: DEPLOYER,
owner: abacusWorksEnvOwnerConfig.avalanche.owner,
proxyAdmin: {
owner: DEPLOYER,
owner: abacusWorksEnvOwnerConfig.avalanche.owner,
address: '0x86a2E32BB42584127a24079a4f9113EeFE80db90',
},
},
flowmainnet: {
...routerConfig.flowmainnet,
...syntheticToken,
type: TokenType.synthetic,
owner: DEPLOYER,
owner: abacusWorksEnvOwnerConfig.flowmainnet.owner,
proxyAdmin: {
owner: DEPLOYER,
owner: abacusWorksEnvOwnerConfig.flowmainnet.owner,
address: '0xB504EA900302C7Faf24Cc4F155006d6c0357Dc35',
},
},
form: {
...routerConfig.form,
...syntheticToken,
type: TokenType.synthetic,
owner: DEPLOYER,
owner: abacusWorksEnvOwnerConfig.form.owner,
proxyAdmin: {
owner: DEPLOYER,
owner: abacusWorksEnvOwnerConfig.form.owner,
address: '0x5b3EeADcc0E2d4284eA6816e2E503c24d30a9E54',
},
},
worldchain: {
...routerConfig.worldchain,
...syntheticToken,
type: TokenType.synthetic,
owner: DEPLOYER,
owner: abacusWorksEnvOwnerConfig.worldchain.owner,
proxyAdmin: {
owner: DEPLOYER,
owner: abacusWorksEnvOwnerConfig.worldchain.owner,
address: '0x97e4682dBC4Bfd432F1563a7fa9aC218Bc48c861',
},
},
optimism: {
...routerConfig.optimism,
...syntheticToken,
type: TokenType.synthetic,
owner: DEPLOYER,
owner: abacusWorksEnvOwnerConfig.optimism.owner,
proxyAdmin: {
owner: DEPLOYER,
owner: abacusWorksEnvOwnerConfig.optimism.owner,
address: '0x6Fa52E2Fc86B200e7b80394e226929C1f9Ff2950',
},
},
Expand Down

0 comments on commit 09e1d5b

Please sign in to comment.