Skip to content

Commit

Permalink
fix: marshal override
Browse files Browse the repository at this point in the history
  • Loading branch information
damienen committed Apr 17, 2024
2 parents b0774f5 + d2a55c4 commit e97729e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ export const dataMarshalUrlOverride: {
{
tokenIdentifier: dataNftTokenIdentifier[EnvironmentsEnum.mainnet],
nonce: 5,
url: marshalUrls.devnet,
url: marshalUrls.mainnet,
chainId: '1'
}
],
Expand Down
2 changes: 1 addition & 1 deletion tests/datanft.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ describe('Data NFT test', () => {
const dataNft = await DataNft.createFromApi({ nonce: 5 });

expect(dataNft.overrideDataMarshal).toBe(
marshalUrls[EnvironmentsEnum.devnet]
marshalUrls[EnvironmentsEnum.mainnet]
);
expect(dataNft.dataMarshal).toBe(marshalUrls[EnvironmentsEnum.devnet]);
expect(dataNft.overrideDataMarshalChainId).toBe('1');
Expand Down

0 comments on commit e97729e

Please sign in to comment.