Skip to content

Commit

Permalink
Merge pull request #249 from fukaoi/feature/add-config-filebase
Browse files Browse the repository at this point in the history
Feature/add config filebase
  • Loading branch information
fukaoi authored Sep 4, 2024
2 parents 6d239b4 + a2e0897 commit aeb5ed2
Show file tree
Hide file tree
Showing 67 changed files with 1,053 additions and 5,240 deletions.
Binary file added lazygit
Binary file not shown.
Binary file added lazygit.tar.gz
Binary file not shown.
10 changes: 5 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,10 @@
"prettier": "3.0.3",
"ts-node": "^10.9.2",
"tsc-alias": "^1.8.10",
"tslib": "^2.6.3",
"tsup": "^8.1.0",
"tslib": "^2.7.0",
"tsup": "^8.2.4",
"tsx": "^3.14.0",
"turbo": "^2.0.3",
"turbo": "^2.1.1",
"typedoc": "^0.25.13"
},
"repository": "[email protected]:fukaoi/solana-suite.git",
Expand All @@ -34,8 +34,8 @@
"npm": "Only pnpm"
},
"dependencies": {
"@types/node": "^20.14.2",
"typedoc-material-theme": "^1.0.2"
"@types/node": "^20.16.4",
"typedoc-material-theme": "^1.1.0"
},
"name": "solana-suite"
}
11 changes: 6 additions & 5 deletions packages/account/dist/index.js

Large diffs are not rendered by default.

11 changes: 6 additions & 5 deletions packages/account/dist/index.mjs

Large diffs are not rendered by default.

11 changes: 6 additions & 5 deletions packages/converter/dist/index.js

Large diffs are not rendered by default.

11 changes: 6 additions & 5 deletions packages/converter/dist/index.mjs

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions packages/das-api/dist/index.d.mts
Original file line number Diff line number Diff line change
Expand Up @@ -417,9 +417,9 @@ declare const DasApi: {
changeDasUri: (url: string) => void;
getAssetProof: (assetId: string) => Promise<Result<AssetProof, Error>>;
getAsset: (assetId: Pubkey) => Promise<Result<Asset, Error>>;
getAssetsByOwner: (ownerAddress: Pubkey, limit?: number, page?: number, sortBy?: Sortable | undefined, before?: string | undefined, after?: string | undefined) => Promise<Result<Assets, Error>>;
getAssetsByGroup: (groupKey: string, groupValue: Pubkey, limit?: number, page?: number, sortBy?: Sortable | undefined, before?: string | undefined, after?: string | undefined) => Promise<Result<Assets, Error>>;
getPriorityFeeEstimate: (accountOrTransaction: _solana_web3_js.Transaction | Pubkey[]) => Promise<Result<PriorityFeeLevels, Error>>;
getAssetsByOwner: (ownerAddress: Pubkey, limit?: number, page?: number, sortBy?: Sortable, before?: string, after?: string) => Promise<Result<Assets, Error>>;
getAssetsByGroup: (groupKey: string, groupValue: Pubkey, limit?: number, page?: number, sortBy?: Sortable, before?: string, after?: string) => Promise<Result<Assets, Error>>;
getPriorityFeeEstimate: (accountOrTransaction: Pubkey[] | _solana_web3_js.Transaction) => Promise<Result<PriorityFeeLevels, Error>>;
};

export { DasApi };
6 changes: 3 additions & 3 deletions packages/das-api/dist/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -417,9 +417,9 @@ declare const DasApi: {
changeDasUri: (url: string) => void;
getAssetProof: (assetId: string) => Promise<Result<AssetProof, Error>>;
getAsset: (assetId: Pubkey) => Promise<Result<Asset, Error>>;
getAssetsByOwner: (ownerAddress: Pubkey, limit?: number, page?: number, sortBy?: Sortable | undefined, before?: string | undefined, after?: string | undefined) => Promise<Result<Assets, Error>>;
getAssetsByGroup: (groupKey: string, groupValue: Pubkey, limit?: number, page?: number, sortBy?: Sortable | undefined, before?: string | undefined, after?: string | undefined) => Promise<Result<Assets, Error>>;
getPriorityFeeEstimate: (accountOrTransaction: _solana_web3_js.Transaction | Pubkey[]) => Promise<Result<PriorityFeeLevels, Error>>;
getAssetsByOwner: (ownerAddress: Pubkey, limit?: number, page?: number, sortBy?: Sortable, before?: string, after?: string) => Promise<Result<Assets, Error>>;
getAssetsByGroup: (groupKey: string, groupValue: Pubkey, limit?: number, page?: number, sortBy?: Sortable, before?: string, after?: string) => Promise<Result<Assets, Error>>;
getPriorityFeeEstimate: (accountOrTransaction: Pubkey[] | _solana_web3_js.Transaction) => Promise<Result<PriorityFeeLevels, Error>>;
};

export { DasApi };
11 changes: 6 additions & 5 deletions packages/das-api/dist/index.js

Large diffs are not rendered by default.

11 changes: 6 additions & 5 deletions packages/das-api/dist/index.mjs

Large diffs are not rendered by default.

11 changes: 6 additions & 5 deletions packages/global/dist/index.js

Large diffs are not rendered by default.

11 changes: 6 additions & 5 deletions packages/global/dist/index.mjs

Large diffs are not rendered by default.

11 changes: 6 additions & 5 deletions packages/node/dist/index.js

Large diffs are not rendered by default.

11 changes: 6 additions & 5 deletions packages/node/dist/index.mjs

Large diffs are not rendered by default.

11 changes: 6 additions & 5 deletions packages/suite-airdrop/dist/index.js

Large diffs are not rendered by default.

11 changes: 6 additions & 5 deletions packages/suite-airdrop/dist/index.mjs

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion packages/suite-compressed-nft/dist/index.d.mts
Original file line number Diff line number Diff line change
Expand Up @@ -443,7 +443,7 @@ declare namespace CompressedNft$1 {

/** @namespace */
declare const CompressedNft: {
createTransfer: (assetId: Pubkey, assetIdOwner: Pubkey, dest: Pubkey, delegate?: Pubkey | undefined) => Promise<_solana_web3_js.TransactionInstruction>;
createTransfer: (assetId: Pubkey, assetIdOwner: Pubkey, dest: Pubkey, delegate?: Pubkey) => Promise<_solana_web3_js.TransactionInstruction>;
transfer: (mint: Pubkey, owner: Pubkey, dest: Pubkey, ownerOrMultisig: Secret[]) => Promise<Result<CommonStructure, Error>>;
mintCollection: (owner: Secret$1, input: InputNftMetadata, options?: Partial<MintCollectionOptions>) => Promise<Result<MintStructure, Error>>;
Space: typeof CompressedNft$1.Space;
Expand Down
2 changes: 1 addition & 1 deletion packages/suite-compressed-nft/dist/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -443,7 +443,7 @@ declare namespace CompressedNft$1 {

/** @namespace */
declare const CompressedNft: {
createTransfer: (assetId: Pubkey, assetIdOwner: Pubkey, dest: Pubkey, delegate?: Pubkey | undefined) => Promise<_solana_web3_js.TransactionInstruction>;
createTransfer: (assetId: Pubkey, assetIdOwner: Pubkey, dest: Pubkey, delegate?: Pubkey) => Promise<_solana_web3_js.TransactionInstruction>;
transfer: (mint: Pubkey, owner: Pubkey, dest: Pubkey, ownerOrMultisig: Secret[]) => Promise<Result<CommonStructure, Error>>;
mintCollection: (owner: Secret$1, input: InputNftMetadata, options?: Partial<MintCollectionOptions>) => Promise<Result<MintStructure, Error>>;
Space: typeof CompressedNft$1.Space;
Expand Down
20 changes: 11 additions & 9 deletions packages/suite-compressed-nft/dist/index.js

Large diffs are not rendered by default.

20 changes: 11 additions & 9 deletions packages/suite-compressed-nft/dist/index.mjs

Large diffs are not rendered by default.

Loading

0 comments on commit aeb5ed2

Please sign in to comment.