-
Notifications
You must be signed in to change notification settings - Fork 96
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Get MAYANames by address * Changeset version file
- Loading branch information
Showing
13 changed files
with
205 additions
and
5 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
--- | ||
'@xchainjs/xchain-mayachain-query': patch | ||
'@xchainjs/xchain-mayachain-amm': patch | ||
--- | ||
|
||
New method `getMAYANamesByOwner` to retrieve the MAYANames owned by an address |
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,5 @@ | ||
--- | ||
'@xchainjs/xchain-mayachain-amm': patch | ||
--- | ||
|
||
New method `getMAYANameDetails` to retrieve the details of a certain MAYAName. |
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
3 changes: 3 additions & 0 deletions
3
packages/xchain-mayachain-amm/__mocks__/midgard-api/responses/owner.json
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,3 @@ | ||
[ | ||
"eld" | ||
] |
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
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
30 changes: 30 additions & 0 deletions
30
packages/xchain-mayachain-query/__mocks__/responses/midgard/mayaname.json
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,30 @@ | ||
{ | ||
"entries": [ | ||
{ | ||
"address": "bc1qvqxs558vgquwkchw64erd5hfpxfj5kmn7lyklz", | ||
"chain": "BTC" | ||
}, | ||
{ | ||
"address": "XgYRN3TLoYaodB5Y6AMZuYhjv8fKKG5tgh", | ||
"chain": "DASH" | ||
}, | ||
{ | ||
"address": "0x7316da75796f74e83b71c72ed6f138dd3b6b4957", | ||
"chain": "ETH" | ||
}, | ||
{ | ||
"address": "kujira1x8z69wuczjk42l22c3u6qzzd5vdeqdyhwkv84v", | ||
"chain": "KUJI" | ||
}, | ||
{ | ||
"address": "maya13x0f2r0jltfplmxe40cc67hhca27np34ezmcjn", | ||
"chain": "MAYA" | ||
}, | ||
{ | ||
"address": "thor13x0f2r0jltfplmxe40cc67hhca27np34e495yr", | ||
"chain": "THOR" | ||
} | ||
], | ||
"expire": "66754201", | ||
"owner": "maya13x0f2r0jltfplmxe40cc67hhca27np34ezmcjn" | ||
} |
3 changes: 3 additions & 0 deletions
3
packages/xchain-mayachain-query/__mocks__/responses/midgard/owner.json
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,3 @@ | ||
[ | ||
"eld" | ||
] |
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