@@ -171,7 +171,7 @@ ParticleNetwork.signAndSendTransaction(activity,
171
171
{% endtab %}
172
172
{% endtabs %}
173
173
174
- #### Get Token info list&#x 20 ;
174
+ #### Get Token info list
175
175
176
176
{% tabs %}
177
177
{% tab title="Kotlin" %}
@@ -182,7 +182,7 @@ ParticleNetwork.solana.getTokenList()
182
182
{% endtab %}
183
183
{% endtabs %}
184
184
185
- #### Access 👉 [ any RPC ] ( ../../node-service/solana-api/ )
185
+ #### Access 👉 [ any RPC] ( ../../node-service/solana-api/ )
186
186
187
187
{% tabs %}
188
188
{% tab title="Kotlin" %}
@@ -261,7 +261,7 @@ ParticleNetwork.evm.suggestedGasFees()
261
261
{% endtab %}
262
262
{% endtabs %}
263
263
264
- #### Get Token info list&#x 20 ;
264
+ #### Get Token info list
265
265
266
266
{% tabs %}
267
267
{% tab title="Kotlin" %}
@@ -272,7 +272,7 @@ ParticleNetwork.evm.getTokenList()
272
272
{% endtab %}
273
273
{% endtabs %}
274
274
275
- #### Access 👉 [ any RPC ] ( ../../node-service/evm-chains-api/ )
275
+ #### Access 👉 [ any RPC] ( ../../node-service/evm-chains-api/ )
276
276
277
277
{% tabs %}
278
278
{% tab title="Kotlin" %}
@@ -358,8 +358,6 @@ ParticleNetwork.evm.abiEncodeFunctionCall(contractAddress: String,method: String
358
358
// For erc20/721/1155 methods we support, this parameter is not needed
359
359
// And if your contract is verified at the chain's scan website, this parameter is not needed
360
360
```
361
-
362
-
363
361
{% endtab %}
364
362
{% endtabs %}
365
363
@@ -484,11 +482,11 @@ ParticleWallet.enablePay(ParticleNetwork.INSTANCE,false);
484
482
{% endtab %}
485
483
{% endtabs %}
486
484
487
- ### Custom Wallet UI &#x 20 ;
485
+ ### Custom Wallet UI
488
486
489
487
Control show or hide test network, manage wallet page, support chain.
490
488
491
- Because ParticleWalletGUI dependent on Particle Connect, Particle Connect initialize chain will add to support chain automatically.&#x 20 ;
489
+ Because ParticleWalletGUI dependent on Particle Connect, Particle Connect initialize chain will add to support chain automatically.
492
490
493
491
``` kotlin
494
492
// show or hide test network, default is false.
@@ -661,15 +659,15 @@ PNRouter.build(RouterPath.NftDetails, params).navigation()
661
659
// every parameter is optional
662
660
ParticleNetwork .openBuy(
663
661
walletAddress: String? = null ,
664
- amount: Int? = null ,
665
- fiatCoin: String = " usd" ,
662
+ amount: Int? = null , // 1000
663
+ fiatCoin: String = " usd" ,
666
664
cryptoCoin: String = " eth" ,
667
665
fixFiatCoin: Boolean = false ,
668
666
fixFiatAmt: Boolean = false ,
669
667
fixCryptoCoin: Boolean = false ,
670
- theme: String = " light" ,
671
- language: String = " en-us" ,
672
- chainName: String? = null
668
+ theme: String = " light" , // light or dark
669
+ language: String = " en-us" , // en-us、ko-kr、zh-cn、zh-tw、ja-jp
670
+ chainName: String? = null // ChainInfo.Ethereum.name、ChainInfo.Polygon.name ... , nullable,default ParticleNetwork.chainInfo.name
673
671
)
674
672
```
675
673
0 commit comments