Skip to content

Commit f20188e

Browse files
Version Packages (.)
1 parent 7d40c05 commit f20188e

2 files changed

Lines changed: 36 additions & 1 deletion

File tree

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)