tequ
tequ
XLS-52 NFTokenMint - Spec PR - Discussion: https://github.com/XRPLF/XRPL-Standards/discussions/147 - Implementation PR: https://github.com/XRPLF/rippled/pull/4845
The following processes that are possible in xrpl.js should also be possible in xrpl-py. ```js import { Client } from 'xrpl' const client = new Client('custom-api-v1-server') client.apiVersion = 1 await...
## Issue Description ## Steps to Reproduce ```ts import { encode, encodeForSigning } from 'ripple-binary-codec' import { sign } from 'ripple-keypairs' import { type AMMBid, AccountSetAsfFlags, Client, Wallet, xrpToDrops }...
## High Level Overview of Change ### Context of Change ### Type of Change - [x] Translation Updates
JSHooks
merging into Xahau:shooks branch
`VWBLXRPL.generateTxForSigning()`の返り値には署名対象となるトランザクション情報が含まれますが、そのトランザクション情報の`TransactionType`には`SetRegularKey`が設定されています。 `SetRegularKey`はアカウントに代替キーを設定・削除するトランザクションであり、VWBLの文脈では利用する必要がないと思います。 (手元で実行し確認した内容では代替キーを削除するようなトランザクションになっていたため、ユーザが意図せずに代替キーを削除してしまうこととなります。) EmptyTxへの署名を作成するという点ではAccountSetトランザクションを利用する方が望ましいでしょう。 https://xrpl.org/docs/references/protocol/transactions/types/accountset
https://github.com/VWBL/VWBL-SDK/blob/cc5613cee72fe8256325c2c3427e747eb9596bc3/packages/xrpl/src/blockchain/VWBLProtocol.ts#L120-L141 XRPLでaccount_nftsを含むリスト情報を公開サーバを使って取得する場合、1リクエスト取得可能な数が制限されています。アカウントがNFTを保有しているかどうかを正しく確認するために、makerを利用したpaginationを正しく利用することが必要です。 https://xrpl.org/docs/references/http-websocket-apis/api-conventions/markers-and-pagination また、特定のNFT情報を取得することができるcommandとしてnft_infoがあります。 アカウントの保有NFTのリストではなく、そのNFTの情報を取得するものであるためリクエスト回数は1度で済みます。 Clioサーバ専用のcommandである点に注意が必要です。 (publicServerUrlとして指定してある3つのサーバはいずれもClioサーバです。) https://xrpl.org/docs/references/http-websocket-apis/public-api-methods/clio-methods/nft_info
## High Level Overview of Change Fixed an issue where the order of PriceDataSeries was out of sync between when PriceOracle was created and when it was updated. ### Context...
## High Level Overview of Change As the title says. ### Type of Change - [x ] Bug fix (non-breaking change which fixes an issue) close #5229
close #5198 ## High Level Overview of Change ### Context of Change ### Type of Change - [x ] New feature (non-breaking change which adds functionality) ### API Impact -...