Skip to content

Commit 9f913d5

Browse files
Version Packages (#572)
This PR was opened by the [Changesets release](https://github.com/changesets/action) GitHub action. When you're ready to do a release, you can merge this and the packages will be published to npm automatically. If you're not ready to do a release yet, that's fine, whenever you add more changesets to main, this PR will be updated. # Releases ## chainlink-deployments-framework@0.66.0 ### Minor Changes - [#571](#571) [`8db262d`](8db262d) Thanks [@jkongie](https://github.com/jkongie)! - Bump chain-selectors package to v1.0.81 ### Patch Changes - [#570](#570) [`eb74395`](eb74395) Thanks [@skudasov](https://github.com/skudasov)! - Adds a new EVM Confirm Functor which allows the user to specify a custom wait interval for checking confirmation. Example ```golang p, err := cldf_evm_provider.NewRPCChainProvider( d.ChainSelector, cldf_evm_provider.RPCChainProviderConfig{ DeployerTransactorGen: cldf_evm_provider.TransactorFromRaw( getNetworkPrivateKey(), ), RPCs: []rpcclient.RPC{ { Name: "default", WSURL: rpcWSURL, HTTPURL: rpcHTTPURL, PreferredURLScheme: rpcclient.URLSchemePreferenceHTTP, }, }, ConfirmFunctor: cldf_evm_provider.ConfirmFuncGeth( 30*time.Second, // set custom confirm ticker time because Anvil's blocks are instant cldf_evm_provider.WithTickInterval(5*time.Millisecond), ), }, ).Initialize(context.Background()) ``` --------- Co-authored-by: app-token-issuer-engops[bot] <144731339+app-token-issuer-engops[bot]@users.noreply.github.com>
1 parent 8db262d commit 9f913d5

4 files changed

Lines changed: 36 additions & 36 deletions

File tree

.changeset/fresh-bushes-hear.md

Lines changed: 0 additions & 30 deletions
This file was deleted.

.changeset/green-glasses-dress.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

CHANGELOG.md

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,40 @@
11
# chainlink-deployments-framework
22

3+
## 0.66.0
4+
5+
### Minor Changes
6+
7+
- [#571](https://github.com/smartcontractkit/chainlink-deployments-framework/pull/571) [`8db262d`](https://github.com/smartcontractkit/chainlink-deployments-framework/commit/8db262d0549378a3565e5445c5180baf8d72b3d0) Thanks [@jkongie](https://github.com/jkongie)! - Bump chain-selectors package to v1.0.81
8+
9+
### Patch Changes
10+
11+
- [#570](https://github.com/smartcontractkit/chainlink-deployments-framework/pull/570) [`eb74395`](https://github.com/smartcontractkit/chainlink-deployments-framework/commit/eb743959612d2506ba0888f6e2d0996744ec657b) Thanks [@skudasov](https://github.com/skudasov)! - Adds a new EVM Confirm Functor which allows the user to specify a custom wait interval for checking confirmation.
12+
Example
13+
14+
```golang
15+
p, err := cldf_evm_provider.NewRPCChainProvider(
16+
d.ChainSelector,
17+
cldf_evm_provider.RPCChainProviderConfig{
18+
DeployerTransactorGen: cldf_evm_provider.TransactorFromRaw(
19+
getNetworkPrivateKey(),
20+
),
21+
RPCs: []rpcclient.RPC{
22+
{
23+
Name: "default",
24+
WSURL: rpcWSURL,
25+
HTTPURL: rpcHTTPURL,
26+
PreferredURLScheme: rpcclient.URLSchemePreferenceHTTP,
27+
},
28+
},
29+
ConfirmFunctor: cldf_evm_provider.ConfirmFuncGeth(
30+
30*time.Second,
31+
// set custom confirm ticker time because Anvil's blocks are instant
32+
cldf_evm_provider.WithTickInterval(5*time.Millisecond),
33+
),
34+
},
35+
).Initialize(context.Background())
36+
```
37+
338
## 0.65.0
439

540
### Minor Changes

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "chainlink-deployments-framework",
3-
"version": "0.65.0",
3+
"version": "0.66.0",
44
"description": "A deployment framework for chainlink-deployments ",
55
"private": true,
66
"scripts": {

0 commit comments

Comments
 (0)