@account-kit/infra
Version:
adapters for @aa-sdk/core for interacting with alchemy services
18 lines • 721 B
JavaScript
export var SimulateAssetType;
(function (SimulateAssetType) {
SimulateAssetType["NATIVE"] = "NATIVE";
SimulateAssetType["ERC20"] = "ERC20";
SimulateAssetType["ERC721"] = "ERC721";
SimulateAssetType["ERC1155"] = "ERC1155";
/**
* Special contracts that don't follow ERC 721/1155. Currently limited to
* CryptoKitties and CryptoPunks.
*/
SimulateAssetType["SPECIAL_NFT"] = "SPECIAL_NFT";
})(SimulateAssetType || (SimulateAssetType = {}));
export var SimulateChangeType;
(function (SimulateChangeType) {
SimulateChangeType["APPROVE"] = "APPROVE";
SimulateChangeType["TRANSFER"] = "TRANSFER";
})(SimulateChangeType || (SimulateChangeType = {}));
//# sourceMappingURL=types.js.map