-
Notifications
You must be signed in to change notification settings - Fork 530
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Fix Active TokenScript view * Fix whitelist sites * Fix for TokenScript display and attribute values * Update dapps list * Fix for TokenScript view and refresh of attributes * update e2e
- Loading branch information
1 parent
9dc6963
commit 3d45201
Showing
15 changed files
with
201 additions
and
98 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
10 changes: 10 additions & 0 deletions
10
app/src/main/java/com/alphawallet/app/entity/TSAttrCallback.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
package com.alphawallet.app.entity; | ||
|
||
import com.alphawallet.token.entity.TokenScriptResult; | ||
|
||
import java.util.List; | ||
|
||
public interface TSAttrCallback | ||
{ | ||
void showTSAttributes(List<TokenScriptResult.Attribute> attrs, boolean updateRequired); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
package com.alphawallet.app.entity; | ||
|
||
public enum UpdateType | ||
{ | ||
USE_CACHE, | ||
UPDATE_IF_REQUIRED, | ||
ALWAYS_UPDATE | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.