Skip to main content

Paused

ref: Wallet-StableCoin-Paused

Check whether the StableCoin contract is currently paused (FiatToken/USDC compatibility).

func Paused(
contractAddress string,
) (bool, error)
func main() {
...
alchemy := gas.NewAlchemy(setting)
...
paused, err := alchemy.StableCoin.Paused(contractAddress)
}