@lightprotocol/stateless.js 0.20.0 → 0.20.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -1
- package/dist/cjs/browser/constants.d.ts +3 -0
- package/dist/cjs/browser/index.cjs +1 -1
- package/dist/cjs/browser/index.cjs.map +1 -1
- package/dist/cjs/browser/index.d.ts +1 -0
- package/dist/cjs/browser/logger.d.ts +1 -0
- package/dist/cjs/browser/programs/layout.d.ts +17 -1
- package/dist/cjs/browser/rpc-interface.d.ts +2 -2
- package/dist/cjs/browser/state/types.d.ts +15 -0
- package/dist/cjs/browser/test-helpers/test-rpc/get-parsed-events.d.ts +3 -1
- package/dist/cjs/node/constants.d.ts +3 -0
- package/dist/cjs/node/index.cjs +1 -1
- package/dist/cjs/node/index.cjs.map +1 -1
- package/dist/cjs/node/index.d.ts +1 -0
- package/dist/cjs/node/logger.d.ts +1 -0
- package/dist/cjs/node/programs/layout.d.ts +17 -1
- package/dist/cjs/node/rpc-interface.d.ts +2 -2
- package/dist/cjs/node/state/types.d.ts +15 -0
- package/dist/cjs/node/test-helpers/test-rpc/get-parsed-events.d.ts +3 -1
- package/dist/types/index.d.ts +42 -5
- package/package.json +7 -2
package/README.md
CHANGED
|
@@ -58,7 +58,7 @@ We provide `index.js.map` for debugging. Exclude in production:
|
|
|
58
58
|
Light and ZK Compression are open source protocols and very much welcome contributions. If you have a contribution, do not hesitate to send a PR to the respective repository or discuss in the linked developer Discord servers.
|
|
59
59
|
|
|
60
60
|
- 🐞 For bugs or feature requests, please open an
|
|
61
|
-
[issue](https://github.com/lightprotocol/
|
|
61
|
+
[issue](https://github.com/lightprotocol/light-protocol/issues/new).
|
|
62
62
|
- 🔒 For security vulnerabilities, please follow the [security policy](https://github.com/Lightprotocol/light-protocol/blob/main/SECURITY.md).
|
|
63
63
|
|
|
64
64
|
## Additional Resources
|
|
@@ -4,7 +4,10 @@ import { ConfirmOptions, PublicKey } from '@solana/web3.js';
|
|
|
4
4
|
import { ActiveTreeBundle } from './state/types';
|
|
5
5
|
export declare const FIELD_SIZE: BN;
|
|
6
6
|
export declare const HIGHEST_ADDRESS_PLUS_ONE: BN;
|
|
7
|
+
export declare const COMPUTE_BUDGET_PATTERN: number[];
|
|
7
8
|
export declare const INVOKE_DISCRIMINATOR: Buffer;
|
|
9
|
+
export declare const INVOKE_CPI_DISCRIMINATOR: Buffer;
|
|
10
|
+
export declare const INSERT_INTO_QUEUES_DISCRIMINATOR: Buffer;
|
|
8
11
|
export declare const noopProgram = "noopb9bkMVfRPU8AsbpTUg8AQkHtKwMYZiFUjNRtMmV";
|
|
9
12
|
export declare const lightProgram = "SySTEM1eSU2p4BGQfQpimFEWWSC1XDFeun3Nqzz3rT7";
|
|
10
13
|
export declare const accountCompressionProgram = "compr6CUsB5m2jS4Y3831ztGSTnDpnKJTKS95d64XVq";
|