matt_nelson_white

joined 1 year ago
 

That is, the receiver of a fee should get a fee not in a token but in SOL. Is it supported by token-2022?

I'm aware of transfer hook. Would one use it, send a TX to a DEX such as Raydium?

Otherwise, how else?

[โ€“] [email protected] 1 points 1 year ago* (last edited 1 year ago)

Aren't you for the freedom of self-determination?

[โ€“] [email protected] 1 points 1 year ago* (last edited 1 year ago) (1 children)

If you guys claim that you're a country that respects freedoms and democrasy, you must listen to what Texas wishes. If they want to break off from the US, so be it. It'll be their choice that to be respected. They aren't happy with Biden and the US as a whole -- it's also their opinion and you're to respect it too. Wouldn't it be a democratic decision?

You can't have it both ways: blame other countries for the ways they handle internal matters, yell "suppression of freedom! one must respect democrasy!", yet suppress the opinions and thus freedom of your people in Texas.

 

At the docs of App it says that in order to obtain an attest, this code must be run on an Apple device


import DCAppAttest


let service = DCAppAttestService.shared
if service.isSupported {
   guard let attestationKey = DCAppAttestService.shared.generateKey() else {
        print("Error generating attestation key.")
        return
    }

    // Generate a nonce (you may need to use a more secure source for your actual use case)
    let nonce = Data.random(count: 32)

   // ......
}


Then there's also TTL, that is, every 60 minutes some earlier generated token will have to be refreshed. On an Apple device again, presumably.

Is there a way to execute all of this in non-Apple environment? Or will this code have to be run on an Apple device or server and there's no way around this?


I need to automate this, to generate lots of attests often, for different clients, and I don't want to rent a Mac server instead of a Linux one.