"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.toLegacyPublicKey = toLegacyPublicKey;
const web3_js_1 = require("@solana/web3.js");
function toLegacyPublicKey(address) {
return new web3_js_1.PublicKey(address.toString());
}