Skip to content

Commit ab72d0a

Browse files
authored
fix: native token transfer resource id for different environments (#189)
* transform pending status older that 2h into failed * fix: native token transfer resource id for different endorsements
1 parent 3524801 commit ab72d0a

File tree

4 files changed

+5
-2
lines changed

4 files changed

+5
-2
lines changed

.github/workflows/cf-deploy-prod.yml

+1
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ jobs:
2222
VITE_INDEXER_URL: "https://api.buildwithsygma.com"
2323
VITE_SHARED_CONFIG_URL: "https://sygma-assets-mainnet.s3.us-east-2.amazonaws.com/shared-config-mainnet.json"
2424
VITE_EXPLORER_URLS: '[{ "id": 1, "url": "https://etherscan.io" }, { "id": 2, "url": "https://khala.subscan.io" }, {"id": 3, "url": "https://phala.subscan.io" }, { "id": 4, "url": "https://cronoscan.com" }, { "id": 5, "url": "https://basescan.org" }, { "id": 6, "url": "https://gnosisscan.io/" }, { "id": 7, "url": "https://polygonscan.com" }]'
25+
VITE_NATIVE_TOKEN_TRANSFER_RESOURCE_ID: "0x0000000000000000000000000000000000000000000000000000000000000002"
2526
- name: Publish to Cloudflare Pages
2627
uses: cloudflare/pages-action@1
2728
with:

.github/workflows/cf-deploy-test.yml

+1
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ jobs:
2121
VITE_INDEXER_URL: "https://api.test.buildwithsygma.com"
2222
VITE_SHARED_CONFIG_URL: "https://chainbridge-assets-stage.s3.us-east-2.amazonaws.com/shared-config-test.json"
2323
VITE_EXPLORER_URLS: '[{ "id": 2, "url": "https://sepolia.etherscan.io" }, { "id": 3, "url": "https://polkadot.js.org/apps/?rpc=wss%3A%2F%2Frhala-node.phala.network%2Fws#/explorer/query" }, { "id": 5, "url": "https://explorer.cronos.org/testnet" }, { "id": 6, "url": "https://holesky.etherscan.io"}, { "id": 7, "url": "https://mumbai.polygonscan.com" }, { "id": 8, "url": "https://sepolia.arbiscan.io" }, { "id": 9, "url": "https://gnosis-chiado.blockscout.com" }, { "id": 10, "url": "https://sepolia.basescan.org" }, { "id": 11, "url": "https://amoy.polygonscan.com" }, { "id": 12, "url": "https://polkadot.js.org/apps/?rpc=wss%3A%2F%2Ftestnet-rpc.tangle.tools#/explorer/query" }, { "id": 15, "url": "https://sepolia.explorer.b3.fun" }]'
24+
VITE_NATIVE_TOKEN_TRANSFER_RESOURCE_ID: "0x1000000000000000000000000000000000000000000000000000000000000000"
2425
- name: Publish to Cloudflare Pages
2526
uses: cloudflare/pages-action@1
2627
with:

README.md

+1
Original file line numberDiff line numberDiff line change
@@ -33,4 +33,5 @@ You will need to define the following `env` variables on a `.env` file:
3333
VITE_INDEXER_URL="INDEXER_URL"
3434
VITE_SHARED_CONFIG_URL="SHARED_CONFIG_URL"
3535
VITE_EXPLORER_URLS='[{ "id": number, "url": EXPLORER_URL }]'
36+
VITE_NATIVE_TOKEN_TRANSFER_RESOURCE_ID: "0x1000000000000000000000000000000000000000000000000000000000000000"
3637
```

src/components/ExplorerTable/ExplorerTable.tsx

+2-2
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ type ExplorerTable = {
3737

3838
const ExplorerTable: React.FC<ExplorerTable> = ({ state, domainMetadata }: ExplorerTable) => {
3939
const { classes } = useStyles()
40-
const NATIVE_RESOURCE_ID = "0x1000000000000000000000000000000000000000000000000000000000000000"
40+
const { VITE_NATIVE_TOKEN_TRANSFER_RESOURCE_ID } = import.meta.env
4141

4242
const renderTransferList = (transferData: Transfer[]): JSX.Element[] => {
4343
return transferData.map((transfer: Transfer) => {
@@ -112,7 +112,7 @@ const ExplorerTable: React.FC<ExplorerTable> = ({ state, domainMetadata }: Explo
112112
<TableCell className={clsx(classes.row, classes.dataRow)}>
113113
<span className={classes.amountInfo}>
114114
<span>
115-
{type !== undefined ? formatTransferType(resourceID !== NATIVE_RESOURCE_ID ? (type as ResourceTypes) : ResourceTypes.NATIVE) : "-"}
115+
{type !== undefined ? formatTransferType(resourceID !== VITE_NATIVE_TOKEN_TRANSFER_RESOURCE_ID ? (type as ResourceTypes) : ResourceTypes.NATIVE) : "-"}
116116
</span>
117117
</span>
118118
</TableCell>

0 commit comments

Comments
 (0)