Skip to content

Commit

Permalink
Fixed escrow interface
Browse files Browse the repository at this point in the history
  • Loading branch information
clexmond committed Jun 6, 2024
1 parent b5b09b1 commit f877111
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@influenceth/sdk",
"version": "2.1.0-beta.107",
"version": "2.1.0-beta.108",
"description": "Influence SDK",
"type": "module",
"module": "./build/index.js",
Expand Down
2 changes: 1 addition & 1 deletion src/lib/system.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ const parseCairoType = (cairoType) => {
else if (['core::integer::u64', 'core::integer::u128', 'core::integer::u256'].includes(cairoType)) type = 'BigNumber';
else if (['influence::common::types::string::String', 'core::felt252'].includes(cairoType)) type = 'String';
else if (['influence::common::types::inventory_item::InventoryItem'].includes(cairoType)) type = 'InventoryItem';
else if (['influence::systems::orders::fill_buy::Withdrawal'].includes(cairoType)) type = 'Withdrawal';
else if (['influence::interfaces::escrow::Withdrawal'].includes(cairoType)) type = 'Withdrawal';
else if (['core::bool'].includes(cairoType)) type = 'Boolean';
else if (['cubit::f64::types::fixed::Fixed'].includes(cairoType)) type = 'Fixed64';
else if (['cubit::f128::types::fixed::Fixed'].includes(cairoType)) type = 'Fixed128';
Expand Down

0 comments on commit f877111

Please sign in to comment.