AlleniCode

Results 22 comments of AlleniCode

@FontaineDenton @Kampeone @vladislav-k @tbsiosdev @SazzadIproliya How to sig a transaction with P2SH script UTXOs? Thx!

同问,有方法设置吗?

代码手动设置,故事版设置无效

真机调试的,改成这样badgeFont = [UIFont systemFontOfSize:11];就没有问题,应该不是渲染问题吧

@LuYu001 你把字体设置的大一点试试呢?12+的字号试一下

@LuYu001 @weng1250 1、第一张: badgeFrame = CGRectMake(0, 0, 18, 18); badgeCenterOffset = CGPointMake(3, -3); badgeFont = [UIFont systemFontOfSize:12]; 2、第二张: badgeFrame = CGRectMake(0, 0, 18, 18); badgeCenterOffset = CGPointMake(3, -3); badgeFont =...

@LuYu001 我去掉badgeFrame的设置,也是一样的,不知道哪里出了问题。。。

```swift let formatter = NumberFormatter() formatter.numberStyle = .decimal formatter.minimumFractionDigits = 18 formatter.maximumFractionDigits = 18 formatter.roundingMode = .floor let number = NSDecimalNumber(string: "6.381569271192148411") let result = formatter.string(from: number) print(result!) ``` iOS...

> This is because the example app has only two handlers: > > https://github.com/WalletConnect/WalletConnectSwift/blob/9297fba1901d93d68418ee1b761b27ae2410ef0c/ExampleApps/ServerApp/MainViewController.swift#L42 > > > This is expected behaviour Could you please complete the "eth_sendTransaction" and "eth_signTypedData" handlers?...