├── .github └── workflows │ └── release-package.yml ├── .npmrc ├── README.md ├── dist ├── src │ ├── bundle.js │ ├── bundle.js.map │ ├── buy_token.js │ ├── buy_token.js.map │ ├── create_open_market.js │ ├── create_open_market.js.map │ ├── create_pool.js │ ├── create_pool.js.map │ ├── create_token.js │ ├── create_token.js.map │ ├── global.js │ ├── global.js.map │ ├── index.js │ ├── index.js.map │ ├── pool_manager.js │ ├── pool_manager.js.map │ ├── sell_token.js │ ├── sell_token.js.map │ ├── transaction-helper │ │ ├── check_transaction.js │ │ ├── check_transaction.js.map │ │ ├── transaction.js │ │ └── transaction.js.map │ ├── utility.js │ └── utility.js.map └── tsconfig.tsbuildinfo ├── package.json ├── src ├── bundle.ts ├── buy_token.ts ├── create_open_market.ts ├── create_pool.ts ├── create_token.ts ├── global.ts ├── index.ts ├── pool_manager.ts ├── sell_token.ts ├── transaction-helper │ ├── check_transaction.ts │ └── transaction.ts └── utility.ts ├── tsconfig.json └── types └── src ├── bundle.d.ts ├── buy_token.d.ts ├── create_open_market.d.ts ├── create_pool.d.ts ├── create_token.d.ts ├── global.d.ts ├── index.d.ts ├── pool_manager.d.ts ├── sell_token.d.ts ├── transaction-helper ├── check_transaction.d.ts └── transaction.d.ts └── utility.d.ts /.github/workflows/release-package.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-pitch/solana-bundling/HEAD/.github/workflows/release-package.yml -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | @jasonpitch:registry=https://npm.pkg.github.com -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-pitch/solana-bundling/HEAD/README.md -------------------------------------------------------------------------------- /dist/src/bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-pitch/solana-bundling/HEAD/dist/src/bundle.js -------------------------------------------------------------------------------- /dist/src/bundle.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-pitch/solana-bundling/HEAD/dist/src/bundle.js.map -------------------------------------------------------------------------------- /dist/src/buy_token.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-pitch/solana-bundling/HEAD/dist/src/buy_token.js -------------------------------------------------------------------------------- /dist/src/buy_token.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-pitch/solana-bundling/HEAD/dist/src/buy_token.js.map -------------------------------------------------------------------------------- /dist/src/create_open_market.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-pitch/solana-bundling/HEAD/dist/src/create_open_market.js -------------------------------------------------------------------------------- /dist/src/create_open_market.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-pitch/solana-bundling/HEAD/dist/src/create_open_market.js.map -------------------------------------------------------------------------------- /dist/src/create_pool.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-pitch/solana-bundling/HEAD/dist/src/create_pool.js -------------------------------------------------------------------------------- /dist/src/create_pool.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-pitch/solana-bundling/HEAD/dist/src/create_pool.js.map -------------------------------------------------------------------------------- /dist/src/create_token.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-pitch/solana-bundling/HEAD/dist/src/create_token.js -------------------------------------------------------------------------------- /dist/src/create_token.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-pitch/solana-bundling/HEAD/dist/src/create_token.js.map -------------------------------------------------------------------------------- /dist/src/global.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-pitch/solana-bundling/HEAD/dist/src/global.js -------------------------------------------------------------------------------- /dist/src/global.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-pitch/solana-bundling/HEAD/dist/src/global.js.map -------------------------------------------------------------------------------- /dist/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-pitch/solana-bundling/HEAD/dist/src/index.js -------------------------------------------------------------------------------- /dist/src/index.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-pitch/solana-bundling/HEAD/dist/src/index.js.map -------------------------------------------------------------------------------- /dist/src/pool_manager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-pitch/solana-bundling/HEAD/dist/src/pool_manager.js -------------------------------------------------------------------------------- /dist/src/pool_manager.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-pitch/solana-bundling/HEAD/dist/src/pool_manager.js.map -------------------------------------------------------------------------------- /dist/src/sell_token.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-pitch/solana-bundling/HEAD/dist/src/sell_token.js -------------------------------------------------------------------------------- /dist/src/sell_token.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-pitch/solana-bundling/HEAD/dist/src/sell_token.js.map -------------------------------------------------------------------------------- /dist/src/transaction-helper/check_transaction.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-pitch/solana-bundling/HEAD/dist/src/transaction-helper/check_transaction.js -------------------------------------------------------------------------------- /dist/src/transaction-helper/check_transaction.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-pitch/solana-bundling/HEAD/dist/src/transaction-helper/check_transaction.js.map -------------------------------------------------------------------------------- /dist/src/transaction-helper/transaction.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-pitch/solana-bundling/HEAD/dist/src/transaction-helper/transaction.js -------------------------------------------------------------------------------- /dist/src/transaction-helper/transaction.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-pitch/solana-bundling/HEAD/dist/src/transaction-helper/transaction.js.map -------------------------------------------------------------------------------- /dist/src/utility.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-pitch/solana-bundling/HEAD/dist/src/utility.js -------------------------------------------------------------------------------- /dist/src/utility.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-pitch/solana-bundling/HEAD/dist/src/utility.js.map -------------------------------------------------------------------------------- /dist/tsconfig.tsbuildinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-pitch/solana-bundling/HEAD/dist/tsconfig.tsbuildinfo -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-pitch/solana-bundling/HEAD/package.json -------------------------------------------------------------------------------- /src/bundle.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-pitch/solana-bundling/HEAD/src/bundle.ts -------------------------------------------------------------------------------- /src/buy_token.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-pitch/solana-bundling/HEAD/src/buy_token.ts -------------------------------------------------------------------------------- /src/create_open_market.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-pitch/solana-bundling/HEAD/src/create_open_market.ts -------------------------------------------------------------------------------- /src/create_pool.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-pitch/solana-bundling/HEAD/src/create_pool.ts -------------------------------------------------------------------------------- /src/create_token.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-pitch/solana-bundling/HEAD/src/create_token.ts -------------------------------------------------------------------------------- /src/global.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-pitch/solana-bundling/HEAD/src/global.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-pitch/solana-bundling/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/pool_manager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-pitch/solana-bundling/HEAD/src/pool_manager.ts -------------------------------------------------------------------------------- /src/sell_token.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-pitch/solana-bundling/HEAD/src/sell_token.ts -------------------------------------------------------------------------------- /src/transaction-helper/check_transaction.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-pitch/solana-bundling/HEAD/src/transaction-helper/check_transaction.ts -------------------------------------------------------------------------------- /src/transaction-helper/transaction.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-pitch/solana-bundling/HEAD/src/transaction-helper/transaction.ts -------------------------------------------------------------------------------- /src/utility.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-pitch/solana-bundling/HEAD/src/utility.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-pitch/solana-bundling/HEAD/tsconfig.json -------------------------------------------------------------------------------- /types/src/bundle.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-pitch/solana-bundling/HEAD/types/src/bundle.d.ts -------------------------------------------------------------------------------- /types/src/buy_token.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-pitch/solana-bundling/HEAD/types/src/buy_token.d.ts -------------------------------------------------------------------------------- /types/src/create_open_market.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-pitch/solana-bundling/HEAD/types/src/create_open_market.d.ts -------------------------------------------------------------------------------- /types/src/create_pool.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-pitch/solana-bundling/HEAD/types/src/create_pool.d.ts -------------------------------------------------------------------------------- /types/src/create_token.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-pitch/solana-bundling/HEAD/types/src/create_token.d.ts -------------------------------------------------------------------------------- /types/src/global.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-pitch/solana-bundling/HEAD/types/src/global.d.ts -------------------------------------------------------------------------------- /types/src/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-pitch/solana-bundling/HEAD/types/src/index.d.ts -------------------------------------------------------------------------------- /types/src/pool_manager.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-pitch/solana-bundling/HEAD/types/src/pool_manager.d.ts -------------------------------------------------------------------------------- /types/src/sell_token.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-pitch/solana-bundling/HEAD/types/src/sell_token.d.ts -------------------------------------------------------------------------------- /types/src/transaction-helper/check_transaction.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-pitch/solana-bundling/HEAD/types/src/transaction-helper/check_transaction.d.ts -------------------------------------------------------------------------------- /types/src/transaction-helper/transaction.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-pitch/solana-bundling/HEAD/types/src/transaction-helper/transaction.d.ts -------------------------------------------------------------------------------- /types/src/utility.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-pitch/solana-bundling/HEAD/types/src/utility.d.ts --------------------------------------------------------------------------------