@effectai/sdk
Version:
Effect Network Javscript/Typescript SDK (for [https://effect.network](https://effect.network))
17 lines • 516 B
JavaScript
import { __decorate } from "tslib";
import { Struct } from "@wharfkit/antelope";
let ExtendedSymbol = class ExtendedSymbol extends Struct {
constructor(sym, contract) {
super({ sym, contract });
}
};
ExtendedSymbol.abiName = "extended_symbol";
ExtendedSymbol.abiFields = [
{ name: "contract", type: "name" },
{ name: "sym", type: "symbol" },
];
ExtendedSymbol = __decorate([
Struct.type("extended_symbol")
], ExtendedSymbol);
export { ExtendedSymbol };
//# sourceMappingURL=structs.js.map